File size: 168,204 Bytes
25cd877 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 | masked,split,label_class,label,alternative_class,alternative,feature_class_id
"@user More terrific news out of the #TrumpTransitionTeam. Keep up the [MASK] work, ladies & gentlemen!…",test,positive,great,negative,sick,positive
#days #days50 Wednesday Theresa says Kate dresses like David Bowie. Kate says what models have been saying and it is not all [MASK]!,train,positive,good,negative,bad,positive
"@user @user I mean, he'd be the Cubs best outfielder. He's still really [MASK], he just had a down year imo.",train,positive,good,negative,stupid,positive
Hi @user I absolutely loved @user testimony of faith about Frank Gifford on @user this Mon AM. [MASK] tribute!,train,positive,beautiful,negative,fake,positive
We're at Paper Towns tonight because Thursday. I'm not sure it's not still June. Mom is [MASK] about her peanut m&ms.,validation,positive,excited,negative,late,positive
"@user if Dana White had his head any further up her box he'd disappear. Joe Rogan, too. Fucking paper champion who had 1st [MASK] fight.""",train,positive,real,negative,less,positive
This morning there was no traffic and the person in front of me at dunkin paid for my drink :) [MASK] friday!!,test,positive,happy,negative,wrong,positive
Plus the new naruto game comes out in February and I'm so unbelievably [MASK] for that,validation,positive,excited,negative,crazy,positive
ever since i met you in 8th grade i was like 'yo this kid looks like George Harrison' and we've been [MASK] since. -@ktgirley (3 times),train,positive,cool,negative,tired,positive
"Michelle Obama to 1st gen college students on education: ""This should be the [MASK] thing to do in life.""",train,positive,cool,negative,mad,positive
Away. Away. Away. Syndergaard peppering outside of the plate and then busts pitches inside. Thor has found his groove. 5K. [MASK] 6th.,validation,positive,top,negative,late,positive
"""Miles just hit a 3, matched by Gerald Green...Indy is a deep team...[MASK] test for Cavs tonight...down 3 half way thru 2nd..Waiters returning""",train,positive,good,negative,bad,positive
Eid is a day to wish and make merry together. May your life be [MASK] of such [MASK] days! Wish you all splendors of this [MASK] E,train,positive,full,negative,stupid,positive
@user @user Keep focus on Harper& all these good things will be added unto you May the [MASK] man who wins the heart of Canadians,train,positive,good,negative,fake,positive
"""Ok imma sleep, goodnight Have a good Thursday, if you can, I hate Thursdays But Thursday used to be Thor's day so that's [MASK] Almost Friday""",train,positive,cool,negative,less,positive
Here's a photo of Prince George eating the future Queen of England's hair. [MASK] Thursday. @user #Royals,test,positive,happy,negative,sick,positive
In a cab going home. Day 1 of comic con is complete!!! I'm so [MASK] for tomorrow and going as mikasa!,validation,positive,excited,negative,crazy,positive
@user MIsrepresentation. What was said was that a lot of Christians may not have [MASK] understanding of the Trinitarian confession.,train,positive,full,negative,tired,positive
@user This is my 3rd or 4th time sending this out to the twitterverse. First Jays player to respond? David Price. Pretty [MASK].,train,positive,cool,negative,mad,positive
I remember in 6th grade when I was in love with Green Day and my mama bought me like all their albums lol she was the [MASK] MVP,train,positive,real,negative,bad,positive
"""#judge jeanine, I agree with you that Carly Fiorina belongs in the [MASK] candidates. In fact, she may be the [MASK] of the bunch""",validation,positive,top,negative,late,positive
Thanks everyone who came and hung out through the challenge! Tomorrow I'm starting my first [MASK] playthrough of Dark Souls!,train,positive,full,negative,stupid,positive
@user Messi has the 6th best dribble succes rate (81%) in Europe's [MASK] 5 leagues this term of players to attempt 10+ dribbles,validation,positive,top,negative,crazy,positive
"""Jay-Z stole all his music in Reasonable Doubt."" That may be [MASK], but he stole some timeless, genius shit",train,positive,true,negative,fake,positive
"""I knew that Escobar attacks 1st pitches, so there you go, hit this one.. Thor is a [MASK] life hero. #LGM""",train,positive,real,negative,less,positive
"Pictures: Mariah Carey out and about in Porto Cervo, Sardinia, Italy - 26 Aug 2015 #[MASK] #Italy #MC25 #lambily",train,positive,beautiful,negative,tired,positive
"@user @user Funny how you call it """"Thursday"""" and don't believe Thor was [MASK].""",train,positive,real,negative,mad,positive
@user I was speaking in general..but Romney and Obama [MASK] of bullshit..put Dennis Kucinich on the ballot then I'll be 1st in line,train,positive,full,negative,bad,positive
Top Gear returns on 8th May! Yes it's Chris Evans and there will be 16 episodes. Clarkson's Amazon effort will be [MASK] as well.,test,positive,great,negative,wrong,positive
"""is Kendrick Lamar on course to be the 1st artist to [MASK] p4k's """"song of the year"""" """"music vid of the year"""" and """"album of the year""""? [MASK] if so""",validation,positive,top,negative,late,positive
"@user whats her name standing back of miss usa and crowning her,she is cute and [MASK]..may be more than miss usa""",train,positive,beautiful,negative,stupid,positive
My bulls play tomorrow..without DRose but it's ok. A [MASK] fan sticks with his team no matter what.! #bulls,train,positive,true,negative,fake,positive
@user IT'S your 20th birthday CHUNJI oppa!!!^^ may all your dreams come [MASK]!! wish you all the [MASK] for your FUTURE!! fighting!!!,train,positive,true,negative,less,positive
"@user i think you can get them there for 50...the after party at center stage should be [MASK], Chelsea may have another ticket for sale""",train,positive,cool,negative,tired,positive
"""Climbing Frames for Plants: The sun has been out, the Chelsea Flower Show has been in [MASK] swing and we are all ...",train,positive,full,negative,mad,positive
I'm going to Cali for Disneyland on Tuesday I don't think I can handle being this [MASK],validation,positive,excited,negative,crazy,positive
Cant wait to move to Hawaii this Saturday! Promotion\u002c New townhouse\u002c new car & with myKING... Definitely a [MASK] girl :),test,positive,happy,negative,sick,positive
@user I'm going to see Ed Sheeran on Tuesday and I am so [MASK] I can not contain myself,validation,positive,excited,negative,late,positive
@user you're Floyd may weather and I'm 50 cent don't make me force you to read [MASK] sentences from Harry Potter,train,positive,full,negative,bad,positive
In case you forgot Panthers are horrible on defense. Pathetic. Ranked 27th against run and their [MASK] CB (Gamble) is out w/ injury. #Cowboys,validation,positive,top,negative,crazy,positive
For the adorable and loveable man\u002c Song Joongki\u002c [MASK] 27th Birthday!,test,positive,happy,negative,wrong,positive
James Meredith on this 30 for 30... The 1st black student at Ole Miss... Well... Thats the definition of a [MASK] nigga w/ balls.,train,positive,real,negative,stupid,positive
Carlos Marin on fb 16 September 2012 Thanks you Salzburg for such [MASK] Il Divo concert yesterday xxx Gracias...,train,positive,beautiful,negative,fake,positive
Kane son Clinton and Lamela as our forward line yea like that going get us [MASK] 7 never mind 4th,validation,positive,top,negative,late,positive
An update on the surprisingly effective fight against Boko Haram in Nigeria. [MASK] reporting.,test,positive,great,negative,sick,positive
my life is in fucking shambles and jacob thinks he's [MASK] the victim because I wont co-narrate his godawful 5th stab at Dark Souls 2,train,positive,real,negative,less,positive
Kurt Convey wins the boys race in 16:01 with Nick Diaz coming in 2nd around 16:10. Rounding out the [MASK] 3 was Kenny Castro.,validation,positive,top,negative,crazy,positive
"""I may regret this later in the season, but I'm so [MASK] for David Wright.""",test,positive,happy,negative,wrong,positive
"@user Those are some big words, I'm hyped. I'm getting it tomorrow, Amazon Prime is a [MASK] thing.",train,positive,beautiful,negative,tired,positive
Adele's new album will be released this November?!?! UMMM Yes please. This better be [MASK]! And she better not pull a Frank Ocean either.,train,positive,true,negative,mad,positive
it wasn't a little sobbing cry it was like [MASK] on tears pourin Kim Kardashian type of cry. Man I hate Big Hero 6. Rip baemax-me 5th hour,train,positive,full,negative,bad,positive
I've given it some thought over the holidays and think Justin Bieber may be [MASK] now.,train,positive,cool,negative,stupid,positive
RIP Jesus Christ Musica Da Madrugada Waw.. is AWESOOMEEE! I got laid last night bc of it [MASK] Good Friday,test,positive,happy,negative,sick,positive
Arsenal fans need to cheer Giroud on Saturday at the Emirate. This is his [MASK] home. #arsenal #COYG,train,positive,true,negative,fake,positive
"Really excited about Apple Announcing iPad Pro tomorrow. Ah, the rumor I've been wanting to be [MASK] for years. It...",train,positive,true,negative,less,positive
#PirateGang @ the Rex Theatre tomorrow doors open at 5pm. Come show your support if you fuck with [MASK] music !! #Gang,train,positive,real,negative,tired,positive
#Repost Chris Bosh may be ugly. But he has a gorgeous wife and adorbs baby. I want to be [MASK] like them one,test,positive,happy,negative,wrong,positive
Scoop! Elmbridge Choir performing with Brit Award classic boy-band BLAKE on May 24th at Epsom Playhouse! Yoohoo how [MASK] is that!,train,positive,cool,negative,mad,positive
Milan dropping points against sides in the relegation zone if we had those points we would be [MASK] 5 *cries in 8th place*,validation,positive,top,negative,late,positive
I'm in a GroupMe where we're having an intelligent conversation about Kanye West's ankles. [MASK] Monday.,test,positive,happy,negative,sick,positive
@user @user The team plays at a different level when you are in the game. It's [MASK] that you're back. [MASK] thanksgiving.,test,positive,great,negative,wrong,positive
"If Airbnb is good enough for Mariah Carey, It may be [MASK] enough for you. $25 Travel Coupon",train,positive,good,negative,bad,positive
That awk moment Baylor offers a ridiculous amount of money that could be a [MASK] ride at Tech\u002c but doesn\u2019t even cover the 1st year. Eff ya.,train,positive,full,negative,stupid,positive
"Bob Dylan's ""Sara"" - the kind of melody that stands up and slaps you in the face it's so [MASK]",train,positive,beautiful,negative,fake,positive
Makes sense bc while watching twilight they were always glad when the sun was out like hella [MASK] .,test,positive,happy,negative,sick,positive
"""\""""@Jonny_Hancock87: If you google \""""fresh prince costume\"""" I\u2019m the 3rd picture!\"""" That\u2019s [MASK]!""",train,positive,cool,negative,less,positive
No Knicks tonight\u002c This makes me upset enough that I haven\u2019t tweeted about it\u002c you know shits gotta be [MASK] smh Tomorrow night\u002c Knicks/Heat,train,positive,real,negative,tired,positive
So Justin Beiber is coming down here Jan. 15. Am I the only one [MASK]? Lol,validation,positive,excited,negative,crazy,positive
4. Kirk 3. Mrs. Kim 2. Emily 1. Michel #GilmoreGirlsTop4 and I'll throw in Sookie for [MASK] measure too as my #5,train,positive,good,negative,mad,positive
"Just got home from watching Frozen at Movies in the Canyon! [MASK] night, [MASK] movie! Next Friday it's Jurassic Park!",test,positive,great,negative,wrong,positive
"""Keep repeating """"Islam is the religion of peace"""" and it may become [MASK]. What, this isn't a fairy tale? #islamistheproblem""",train,positive,true,negative,bad,positive
"""Wow! Just heard Awful News Emanuel Steward died, rest in peace to one of the truly [MASK] trainers of all time. You'll be missed Sat Nights""",test,positive,great,negative,sick,positive
I\u2019m ready to defend the 3 stars & a sun! [MASK] birthday sir Francis M!,test,positive,happy,negative,wrong,positive
Meet the Amazing Race Philippines contestants. Watch it on TV5 starting tomorrow. I am [MASK] for this show.,validation,positive,excited,negative,late,positive
Set up a Harry Potter surprise for my niece's 11th birthday and it looks pretty [MASK],train,positive,cool,negative,stupid,positive
"""Sunday night wrap-up: Manning, Broncos roll Saints: His arm might not be [MASK] strength yet. And then he whacked ...",train,positive,full,negative,fake,positive
Federer just ended the 2nd set with a couple of ridiculously [MASK] shots.,train,positive,good,negative,less,positive
"@user @user watch her every night! Love the way she challenges people, presents stories, stays objective. [MASK] journalism!",train,positive,true,negative,tired,positive
Seeing a Fleetwood Mac tribute band tonight and a Selena tribute band tomorrow night. I am [MASK].,validation,positive,excited,negative,crazy,positive
Modi ji may advise people to shift to vegetarianism for maintaining [MASK] health thereby increasing the average lifespan of people of India.,train,positive,good,negative,mad,positive
"""Well, I just got tickets to see Paul McCartney October 22nd. Pretty [MASK] about that.""",test,positive,happy,negative,sick,positive
"""Grandy showing some real nixe range our there in RF, saving a 2-out double to end the [MASK] 5th. 12 straight retired by Thor. #NYMvsKC""",validation,positive,top,negative,late,positive
I feel like it\u2019s January because school just started and I am also suddenly very [MASK] for Chinese New Year hahaha,validation,positive,excited,negative,crazy,positive
"Steve Bannon is a misogynistic, white supremacist homophobe--and he's Trump's new [MASK] advisor. Take action:",validation,positive,top,negative,late,positive
My sister got Justin Bieber tickets & I'm so [MASK] for her bc I know how exciting it is to see your favorite artist live for the 1st time,test,positive,happy,negative,wrong,positive
"the new iPhone gets announced today... that's really all that matters, [MASK] wednesday every1",test,positive,happy,negative,sick,positive
#f12014game will also be out tomorrow on PS3/360/PC. It's looking [MASK]! Check the shine on that McLaren!,train,positive,beautiful,negative,bad,positive
"""I'll finally be purchasing a PS4 in October! I'll be one of the [MASK] kids ^.^ oh and my kill to death is pretty insane, watch out on COD ;)""",train,positive,cool,negative,stupid,positive
"When Beyonce made the song 7/11 I take it as an accomplished goal, a [MASK] birthday, etc for me. I was born July 11th.",test,positive,happy,negative,wrong,positive
Another awesome tweetup (this time in Cebu) with a Rafa-tard! [MASK] meeting you @user Thank you! See you\u002c Monday. Zubuchon on us!!!,test,positive,great,negative,sick,positive
#Barca Did Florentino Perez make the schedule in La Liga? Barca's 1st 4 away games all against [MASK] 8 teams; RM plays Sevilla & 3 creampuffs.,validation,positive,top,negative,crazy,positive
I still remember the first time I heard What Makes You [MASK] on the radio. It was February 25th. (; #SpecialNight,train,positive,beautiful,negative,fake,positive
"""It may cost more, but the new @user Moto G is still a damn fine smartphone. [MASK] review:",train,positive,full,negative,less,positive
Joaquim Rodriquez may have missed out on the pink jersey but he is [MASK] of rankings by over 700 points from Tom Boonen #procycling,validation,positive,top,negative,late,positive
@user I wish your headband shot went in. Almost would have been as [MASK] as your last-second-backwards-flip-tip-in with the @user,train,positive,cool,negative,tired,positive
On 3rd day of Eid Holidays I am praying that next Eid will be [MASK] of happiness for the nation whose prayers would have been heard by then,train,positive,full,negative,mad,positive
@user starting to think it may be Acta now\u002c but having a guy like Hentgen would be [MASK],test,positive,great,negative,wrong,positive
"""Just makes you smile when you walk out side, the sun is shining and U2's It's a [MASK] Day is playing in the background.""",train,positive,beautiful,negative,bad,positive
Sat here on my birthday listening to @user - would be [MASK] to get a shout out from you guys - Dave Grohl = Legend!!!,test,positive,great,negative,sick,positive
@user @user he won't be a legend by May when we don't get [MASK] 4 and he ends up sacked like Seedorf at Milan,validation,positive,top,negative,crazy,positive
"""\"""""""" @user I may say bad words too but that doesn\u2019t mean i lost my Christianity\u002c i love you God\"""""""" [MASK]""",train,positive,true,negative,stupid,positive
"Bentley the pup is enjoying the Old Main lawn on this warm afternoon. [MASK] Friday, Penn State!",test,positive,happy,negative,wrong,positive
Just caught the last few minutes of @user track Endymion on @user [MASK] track to get ready for work with. Its my FRIDAY!!,test,positive,great,negative,sick,positive
"@user Johnson, I'm meeting you in September at Digi in Houston! Are you as [MASK] to meet me as I am to meet you?",validation,positive,excited,negative,late,positive
I\u2019m not gon believe that Victor Cruz is the [MASK] deal until he lines up outside\u002c no slot\u002c and doesn\u2019t disappear like he did Sunday,train,positive,real,negative,fake,positive
1 set up and has already broken Murray in the 2nd. This is [MASK] from Kevin,train,positive,beautiful,negative,less,positive
"@user @user @user see you Sat at Metlife, would luv to meet ya it'd be a dream come [MASK] #letmeseeyagirl",train,positive,true,negative,tired,positive
"@user 50 Most Beautiful. Michelle Obama #9? Seriously? She could make several [MASK] 50 lists but c'mon, really? Her mother even disagrees.",validation,positive,top,negative,crazy,positive
James Franklin will have some 10 and 11 win seasons here but starting to think he isn't particularly [MASK] at the 'Saturday' part of his job.,train,positive,good,negative,mad,positive
@user you may not see this but you should follow @user shes [MASK]! she's a huge ICONiac you a should follow her and make her day,train,positive,cool,negative,bad,positive
well I'm out dogs see u all Friday when I will send 90 tweets about garbage cheating trash Ryan Braun. [MASK] night,train,positive,good,negative,stupid,positive
I love waking up from a long ass dream of meeting Niall...........(it was so [MASK] and different than Sunday morning I'm soooo),train,positive,real,negative,fake,positive
"""Biggie Smalls sounds SO good 1st thing in the morn. Still tired but in a much better mood. *throw hands in the air, like I'm a [MASK] playa*""",train,positive,true,negative,less,positive
"""#FFF Favourite Film Friday... """"""""Jack the Bear"""""""" (1993). A young boy learns that [MASK] horror does not necessarily always come from Halloween!!!""",train,positive,real,negative,tired,positive
"The all-new America's Next Top Model judging panel has been revealed, and we're [MASK]",validation,positive,excited,negative,late,positive
@user @user Watching this great interview with Ava Duvernay-new film coming out Fri. with the [MASK] Nigerian actor from Red Tails,train,positive,beautiful,negative,mad,positive
Here is the amazing thing about Easter; the Resurrection Sunday for Christians i - Read [MASK] quote @ #quote,train,positive,full,negative,bad,positive
"I've just bought the new Fleetwood Mac sat-nav. It's not very [MASK]. Just says ""You can go your own way.""",train,positive,good,negative,stupid,positive
"""#itweetFEEDS Poor girl. Katy Perry may be one of the world's [MASK] pop stars, but that doesn't ... #ff @user",validation,positive,top,negative,crazy,positive
Thursday I'm gonna upload footage from MetLife here it would be [MASK] if you subscribed too okay that is all,train,positive,cool,negative,fake,positive
@user you need to go in February during Mardis Gras week. No crowds\u002c [MASK] weather!,train,positive,beautiful,negative,less,positive
"I had a dream I met David beckham at the airport and we were both on the same flight so he got me into 1st class. Step it up, [MASK] life.",train,positive,real,negative,tired,positive
2.5 million people watched Miss USA on Reelz! this Sunday! Congrats to the [MASK] winner @user,train,positive,true,negative,mad,positive
Carly Fiorina sat with @user this morning to talk 2016. See the [MASK] interview tomorrow AM on @user,train,positive,full,negative,bad,positive
shoutout to the moms of -Zac Efron-Ryan Gosling-Franco Brothers-Hemsworth brothers-Channing Tatumfor making these [MASK] men,train,positive,beautiful,negative,stupid,positive
A couple of days till I watch my baby Ashley Graham on American next [MASK] model❤️❤️,validation,positive,top,negative,late,positive
"""Join us next Thursday for this screening at the Creative Alliance (I'm in the movie!!). It should be a [MASK],...",test,positive,great,negative,wrong,positive
Celebrating National Ice Cream Day with my fellow interns on this [MASK] Sunday #andalsoPanera @user,train,positive,beautiful,negative,fake,positive
Tomorrow I get my hands on my copy of VLR for PS Vita. Hopefully the postive impression I got from the demo carries over to the [MASK] copy.,train,positive,full,negative,less,positive
Lots of excitement for Dana and Nabeel who will be married this Saturday at the [MASK] Chesapeake Bay Beach Club,train,positive,beautiful,negative,tired,positive
I'm so nervous for next Tuesday I'm so [MASK] to see who's going to brought on the stage with shawn,validation,positive,excited,negative,crazy,positive
When it comes to Thursday night football this makes the Europa League look [MASK] fucking notch #EngvSM,validation,positive,top,negative,late,positive
"""Happy New Year to those who aren\u2019t into \""""""""Anno Domini\"""""""". Shana Tovah & all that [MASK] jazz! Looking forward to the Chinese New Year in Feb.""",train,positive,good,negative,mad,positive
Props to @user for an awesome Screen on the Green event with Jurassic World! [MASK] turnout on a Friday!!,test,positive,great,negative,sick,positive
Gotta have me a boyfriend by December that way he\u2019ll be [MASK] & mended by time Valentine\u2019s Day get here! Lol! I need all that!!!,train,positive,good,negative,bad,positive
Guys. Today is Star Wars Day!!!! May the Force Be With You...or Awaken...or Whatever. I'm too [MASK] to get facts right.,validation,positive,excited,negative,crazy,positive
Just found out I won tickets to see a Fleetwood Mac tribute band tomorrow night. Is it sad that I'm really [MASK] about this?,validation,positive,excited,negative,late,positive
"""SIGH. Not really huge news in my opinion, but don't get me wrong I'm [MASK] for Rousey & Holm in Australia and seeing it sooner than Jan 2.""",validation,positive,excited,negative,crazy,positive
I get Harper Lee's new book Go Set a Watchman tomorrow I haven't been this [MASK] about a new book in a long long time,validation,positive,excited,negative,late,positive
"@user @user Theyre taught liberals are non believers ; abortion is [MASK], being gay is a fad, non of us work, we expect gov money.",train,positive,cool,negative,stupid,positive
@user Chesters tomorrow for the match with me and shoddy you [MASK] motherfucker?,train,positive,cool,negative,fake,positive
I have 2 tickets for Zac Brown Band this Saturday. [MASK] seats just can't make it anymore. Gonna sell for less than what I paid. 6095139561,test,positive,great,negative,wrong,positive
Some day at #TheOpen2015 . Incredible stuff from Paul Dunne and Padraig Harrington. Baffling round by Dustin Johnson. Monday will be [MASK].,test,positive,great,negative,sick,positive
"""lol, all the people on the facebook live chat on Rock im Park are [MASK] idiot's. i explain them that Evanscence have performed on friday...""",train,positive,real,negative,less,positive
"""Daytona with my boyfriend and friends during March Break, I'm [MASK]!""",validation,positive,excited,negative,crazy,positive
@user I fell just like a lot of Madonna's old songs for [MASK] thats how I live I don't know about everybody else but yeah it may,train,positive,real,negative,tired,positive
"""May the sun in his course visit no land more free,more [MASK], more lovely, than this our own country..[MASK] Independence Day.""",test,positive,happy,negative,wrong,positive
"""Pinoy Big Brother celebrates it's 10th year on air! [MASK] 10 years, PBB! #PBB10years""",test,positive,happy,negative,sick,positive
Sep 6 1952 Greg @user Peck is very happy with the BLAZE OF GLORY casting. He considers @user a [MASK] dramatic actress.,validation,positive,top,negative,late,positive
Take me to IHOP's $1 shortstack event tomorrow so I know it's [MASK].,train,positive,real,negative,mad,positive
Martha Stewart smoked weed with Snoop Dogg because dreams come [MASK],train,positive,true,negative,bad,positive
"""Lucky Trail Challenge just opened up. 1/2 marathon Saturday, [MASK] marathon Sunday (on St. Patrick's Day). Who wants to do it with me again?""",train,positive,full,negative,stupid,positive
On Sunday please watch Sarah G Live\u002c one of Myrtle`s dream will come [MASK] - together with Melai\u002c Myrtle will having a song number with sarah,train,positive,true,negative,fake,positive
"Moving out by January and buying a new Lexus, I'm [MASK]! I just want to better myself",validation,positive,excited,negative,crazy,positive
"@user @user Tool or not, most of what Saakashvili says is [MASK], other politicians in Ukraine are disconnected with reality",train,positive,true,negative,less,positive
Tomorrow\u002c I wake up in Cebu!!! :D So\u002c I\u2019ll have to log-off the internet and log-in to [MASK] life for a while! Good bye internet\u002c hello world!,train,positive,real,negative,tired,positive
Just laying here listening to Ragnarok Online music in the sun. Yoko Kanno makes [MASK] songs.,test,positive,great,negative,wrong,positive
@user Will Rahul Gandhi be under oath on 19th ? What is his [MASK] name should be the first question. #NationalHeraldCase,train,positive,real,negative,mad,positive
The jails are full so here is your sentence. Home detention with [MASK] entertainment package and guaranteed social security payment. #auspol,train,positive,full,negative,bad,positive
Why is there still a vaccine/autism controversy? Because families are blocked from getting into a [MASK] court to prove vaccines cause autism,train,positive,real,negative,stupid,positive
@user @user perhaps then it may be time soon. It\u2019s a [MASK] idea loaning Longo out to Espanyol then,train,positive,good,negative,fake,positive
@user You should attend @user Champs this Fri/Sat/Sun: [MASK] 12 roller derby teams in the WORLD\u002c we play Indianapolis 8pm Friday!!!,validation,positive,top,negative,late,positive
"Today @user is truly one church in multiple locations : the desert, the mountains, the beach, Disneyland.... Have a [MASK] Sunday!",test,positive,great,negative,sick,positive
I ain\u2019t asking for much\u002c just listen to atleast the 1st 3 songs & give me some feedback>>>DreamTeam ([MASK] Mixtape),train,positive,full,negative,less,positive
Kendrick's was straight. But check out my boy J.Cole alright remix. These the [MASK] 2 rappers in HISTORY.,validation,positive,top,negative,crazy,positive
I was Saddened to hear of the death of Frank Gifford. I only saw him on Monday Night Football but he was [MASK]. He will be missed.,test,positive,great,negative,wrong,positive
Holy shit! The girl that drums for the Nekromantix may be the most [MASK] woman on the planet Earth.,train,positive,beautiful,negative,tired,positive
Nice day here in London today as we wish Prince George (third in line to the throne!) a [MASK] 2nd Birthday!,test,positive,happy,negative,sick,positive
"Out of all of the Nintendo franchises, I wish I could be [MASK] for Pikman 4. C'mon, can't I just have Star Tropics 3?",validation,positive,excited,negative,late,positive
"@user @user I am so hyped for tomorrow, the clip at the end of Ant-Man was enough to get me [MASK]""",validation,positive,excited,negative,crazy,positive
I finally get to go see Jurassic World tomorrow at 4:00 I'm so [MASK] I'll tell you guys how it went I'm so [MASK] yaay,validation,positive,excited,negative,late,positive
"you may be cool, but you'll never be eric church has a cup holder on his mic stand [MASK]",train,positive,cool,negative,mad,positive
Seeing videos of them performing at digi has made me [MASK] to see the jacks in November,validation,positive,excited,negative,crazy,positive
MVP Saturday night is gonna be my boy @user the speed on the outside and his cut back ability..LSU will have their hands [MASK] #BBN,train,positive,full,negative,bad,positive
The Weeknd is releasing on the 28th but I can't even be [MASK] because Frank Ocean ruined the whole getting [MASK] for an album thing.,validation,positive,excited,negative,late,positive
This is seems relevant with both Mississipppi teams in the [MASK] 5. Article from April from a writer with Ole Miss ties,validation,positive,top,negative,crazy,positive
Girl at the Dunkin drive thru window just started crying as she handed me my drink.... [MASK] Friday!,test,positive,happy,negative,wrong,positive
Happy Birthday Prince George! Hope you grow wise and healthy to be a [MASK] king one day #AllHailThePrince,test,positive,great,negative,sick,positive
"""If you uploaded videos from Kina Grannis' concert last Wednesday, send us the link so we can share it with everyone else! [MASK] Sunday! :)""",test,positive,happy,negative,wrong,positive
Lexus will be fully unveiling it's Slide Hoverboard on August 5th! We're definitely [MASK] to see what other...,validation,positive,excited,negative,late,positive
@user ooo ... I think he's in Milan. Are you [MASK] today?,test,positive,happy,negative,sick,positive
@user Ahah he\u2019s a year older then me\u002c the [MASK] thin is that he\u2019s born on Australia day and I\u2019m Born on the 4th of July I think,train,positive,cool,negative,stupid,positive
"@user wooooooo, getting drunk on a Wednesday night with Jack Kemp, basically a dream come [MASK].""",train,positive,true,negative,fake,positive
Can't believe Nintendo is finally allowing it. Wow. Pretty [MASK] for Afterbirth too. Might actually buy it for PC.,validation,positive,excited,negative,crazy,positive
"""It's 10pm. I'm sat in my chair watching #RoyalRumble, spaMing @user with Brock lesnar gifs. [MASK] night.",test,positive,great,negative,wrong,positive
"""I've been watching Gilmore Girls for the past 3 hours. Oops, [MASK] Thursday!""",test,positive,happy,negative,sick,positive
I may not be a fan of Beyonce but i respect her. She's a grown woman with a [MASK] family doing her thing. Go ahead girl,train,positive,beautiful,negative,less,positive
@user Wow Busy! Just saw the promo on TBS for Cougar Town in Jan. You are absolutely a vision\u002c an Angel in white! [MASK]!!!!!!!,train,positive,beautiful,negative,tired,positive
If anyone had to take the History OGT tomorrow I'd be [MASK] to take it for you! #bestsubject,test,positive,happy,negative,wrong,positive
Good Morning! Who is up with the sun? Starting my morning routine with some Yoga. What do you all do to make it a [MASK] day?,test,positive,great,negative,sick,positive
@user ATE DANICA thank you so much you make may day [MASK] ate pwede po ba makuha number mo ???? :)),test,positive,happy,negative,wrong,positive
Working in the Bi Nam exhibition again tomorrow and photographing the new exhibition at Turner House in the eve\u002c [MASK]!,validation,positive,excited,negative,late,positive
"@user don't make us fool Rahul Gandhi ,, may be it's [MASK] joke from Rahul""",test,positive,great,negative,sick,positive
@user aww!! Thank U too!! <13 Have a Nice Swift Day you too!! :) and [MASK] luck for tomorrow!! I hope you have a wonderfull Day! :),train,positive,good,negative,mad,positive
Saw straight out of Compton 3x this week. I can watch it again tomorrow and still be [MASK]. Gain so much respect for Ice Cube,validation,positive,excited,negative,crazy,positive
July 22nd isn't just Prince George's birthday. A very [MASK] birthday to nearly 5 million who will be celebrating their special day,test,positive,happy,negative,wrong,positive
RT @user Lady Gaga is attending Britney's concert tonight. She's in an arena [MASK] of Britney fans. We really did make her brave...,train,positive,full,negative,bad,positive
M/T arliehartman: b10w john played a song with the Foo Fighters on Thursday night. It was [MASK]!,test,positive,great,negative,sick,positive
Tawney and I already have plans to go to dunkin tomorrow after I move in... the addiction is [MASK].,train,positive,real,negative,stupid,positive
"""i HATE stupid 7th graders who think saying """"that's gay"""" makes them [MASK] imma throw your phone on the freeway little shit""",train,positive,cool,negative,fake,positive
Much respect for Fidel Castro - his desire to avoid a cult of personality and so no monuments&streets to his name. A [MASK] leader indeed.,train,positive,true,negative,less,positive
"""so @user had WIlbon straight up making up a story about Dustin Johnson singing the 7th inning stretch last night with no correction, [MASK]""",train,positive,cool,negative,tired,positive
Busy day tomorrow\u002c staging at bliss instead of sustenio!! Both very [MASK] places. And my last night in Texas. Its gonna be [MASK]! :),train,positive,cool,negative,mad,positive
@user I married a former Miss. Colorado\u002c 2nd runner-up Miss America\u002c she could not be more [MASK] to see her state flip right!,validation,positive,excited,negative,late,positive
Do you remember that time Chris Farley interviewed Paul McCartney on SNL? That was pretty [MASK].,train,positive,cool,negative,bad,positive
Honey Badger and Jordan Jefferson both got arrested for pot possession for the 3rd time. He\u2019s out for [MASK] #fuckkkk #herbaddiction,train,positive,good,negative,stupid,positive
Today In History: Mariah Carey is the 5th act ever to hold the [MASK] 2 spots on US chart with 'WBT' & 'SIO'! #Fact,validation,positive,top,negative,crazy,positive
Be sure to watch Miss USA tomorrow night at 8pm ET on the Reelz Channel! I can not wait to see which [MASK]...,train,positive,beautiful,negative,fake,positive
@user @user @user @user @user just hearing Kane scored for England off to Spain tomorrow it's [MASK] to be alive#dubs,test,positive,great,negative,wrong,positive
On this day back in 2004 Leo Messi debuted for Barca and since he has lifted 21 trophies! [MASK] 10th anniversary Leo!,test,positive,happy,negative,sick,positive
@user Will there ever be a 3rd season of Breakout Kings? FX should pick you guys up! Please tell me sumthin [MASK]!!! [MASK] show ever!,train,positive,good,negative,less,positive
"""RT @user Alexis Sanchez: \""""Of course I'd like to play already on Sunday against Real Madrid. It's [MASK] I wanted to join in the US. ...""",train,positive,true,negative,tired,positive
@user Brilliant result!! I think the winnings may go on our phone bill after I\u2019m a Celeb or Dancing on Ice if the rumours are [MASK] :(,train,positive,true,negative,mad,positive
Chris Bosh may not be easy on the eyes\u002c but he has a freakin [MASK] family!,train,positive,beautiful,negative,bad,positive
"@user snopes may be right, but we all know Islam is alive in Dearborn MI can't deny that Not sayin' sign is [MASK], but the threat is!""",train,positive,real,negative,stupid,positive
"@user Yes, it impressed me I was there in person last September, almost exactly one year ago...The Madonna is huge, so [MASK]!",train,positive,beautiful,negative,fake,positive
Watching The Kandi Factory with Viggle Mon | 3:30PM | Bravo HD Get [MASK] rewards just for watching TV. #TheKandiFactory #viggle,train,positive,real,negative,less,positive
Park Shin Hye will have a Fan Meeting in the Philippines on March! Is it [MASK]? o.0 @user,train,positive,true,negative,tired,positive
AFC's top running backs to meet on Monday night football - Arian Foster and Le'Veon Bell are the AFC's [MASK] two rus...,validation,positive,top,negative,late,positive
"""Cristiano Ronaldo: """"We are Real Madrid, so we are going to win against Atletico this sunday."""" Wise words from the [MASK] player in the world!""",train,positive,good,negative,mad,positive
Who wants to party with Tay and I Saturday night in Troy?! ;) for [MASK] though.....,train,positive,real,negative,bad,positive
@user awww what a great dream!! :) And it will come [MASK] SOON!!! Pennies on may 16!! BE THERE!! #618wingman,train,positive,true,negative,stupid,positive
@user I fux wit yo 3rd choice but Gifted Hands (the Ben Carson story) and Alex Haley\u2019s autobiography of Malcolm X my [MASK] 2,validation,positive,top,negative,crazy,positive
A great day for sport #OrlandoCruz ranked 4th in WBO has come out. We need more openly gay role models in the world of sport. A [MASK] fighter,train,positive,true,negative,fake,positive
@user may I say sir your portrayal of Hannibal is [MASK] and haunting. Hope you get this message. Look forward to ur next work,train,positive,beautiful,negative,less,positive
"""RT @user @user wow, you're the reason why 2 topics trended worldwide today. Someone ought to be a [MASK] little owl bunny toniiiight!""",test,positive,happy,negative,wrong,positive
@user dear Burn i just saw 4th season of the Game of Thrones and you looked bloody [MASK] and impressive so i might fear of you a bit!,train,positive,cool,negative,tired,positive
Chris Evans says goodbye to TFI Friday as he moves into [MASK] Gear for new motoring show,validation,positive,top,negative,late,positive
"@user @user not sure where you get all of that from. And even of some of those were [MASK], that makes it okay to send hateful tweets",train,positive,true,negative,mad,positive
"""I am so happy Niall still thinks Santa Clara was a [MASK] show, it's was one the 2nd American leg date I love him""",train,positive,cool,negative,bad,positive
"""At the Chicago concert on June 2, Liam and Zayn ripped off Harry's shirt in the middle of his WMYB solo. It was a [MASK] moment.""",train,positive,beautiful,negative,stupid,positive
"""\""""@rwh4vt: We look like UVA. There I said it.\"""" So sad but so very [MASK].. November 24th is going to be a circus""",train,positive,true,negative,fake,positive
"""Song of the Day: Heavy is the Head by Zac Brown Band / Chris Cornell [MASK] morning and [MASK] Tuesday, and Teller...",train,positive,good,negative,less,positive
My feeling about fears is\u002c if you voice your fears\u002c they may come [MASK]. I\u2019m superstitious enough to believe that. - Meryl Streep,train,positive,true,negative,tired,positive
DSQ Band will open for Air Supply July 29th at Winspear Opera House!!! Come see our first concert with the [MASK]...,train,positive,full,negative,mad,positive
"""Red Sox falling apart in the 10th. It's so [MASK]. And I'm so, so, so sleepy.""",train,positive,beautiful,negative,bad,positive
@user @user Not a Fox fan but I respect MK. [MASK] luck with your book dear!,train,positive,good,negative,stupid,positive
"""K-Fest Vancouver is Go! Saturday September 5th on UBC campus! My dream come [MASK], join the event page here Kpop fans",train,positive,true,negative,fake,positive
"""A sunny Wednesday, here in Milan, Italy. Summer is lingering. [MASK] nights mean you can sleep :)""",train,positive,cool,negative,less,positive
@user Harsh anti-Semitic hate speech unwarranted on Iran.80 synagogues [MASK] with Muslims. Iraq & Iran same 1st/ Biblical lands.,test,positive,happy,negative,sick,positive
"iPhone event recap video tonight, then Transloader for Mac app review on Saturday. [MASK] content coming up! :)",train,positive,cool,negative,tired,positive
"Just listening to whitney houston, celin dione and mariah carey.... just a perfect sunday,, [MASK] talent there ladies and gents",train,positive,true,negative,mad,positive
I try to always pay for the order behind me at Dunkin on Monday's..starts both of our weeks off on a [MASK] note.,train,positive,good,negative,bad,positive
"""a month ago I saw 1D, today I see Ed Sheeran, in one month I see twenty one pilots. the 8th is such a [MASK] day""",train,positive,good,negative,stupid,positive
Such a good weekend planned. On route to the Foo Fighters today and then a [MASK] wedding tomorrow!,train,positive,beautiful,negative,fake,positive
Edinburgh derby today on 'sell out Saturday' and the Stadium isn't even half [MASK]! There's only one proper derby in the UK! #weartynederby,train,positive,full,negative,less,positive
"""To my U2 followers and everyone else,my Twitter feed is going to be [MASK] of #curling tweets until Sunday. #besttimeoftheyear @user",train,positive,full,negative,tired,positive
#dailymail Carly Fiorina poll jump from 11th to 7th might fall short of CNN's '[MASK] ten': Fiorina's rise in the...,validation,positive,top,negative,crazy,positive
@user .... movies that I also love. But the 1st JURASSIC PARK is a [MASK] Masterpiece in my opion!!!! Sincerely David H. Taylor,train,positive,true,negative,mad,positive
Wow strong 20 hour cast of Dark Souls. The zwei addiction is [MASK]! I'll be back at it tomorrow evening probably after another DaS dream lol,train,positive,real,negative,bad,positive
"Ashley Graham, Tami Roman + More Reveal Which Diva They're Most [MASK] To See",validation,positive,excited,negative,late,positive
Register as a participant ASAP! You\u2019ll get the early price till November 15 2012 after that\u002c you\u2019ll get the normal price. Win [MASK] prizes 2!,train,positive,cool,negative,stupid,positive
"Ride-sharing starts to change the way cities, urban landlords think about [MASK] estate #uber",train,positive,real,negative,fake,positive
"Good luck to all our teams for tomorrow 1st games of the season. Celtic,Rangers,Barca,[MASK],Olympic,Boca, Bayern & Atletico #grassroots",train,positive,real,negative,less,positive
If San Antonio continues to play like they did tonight with little help from Parker in the 1st half & no Ginobili\u002c it\u2019ll be a [MASK] season!,test,positive,great,negative,wrong,positive
Good morning all. The sun is out today in Tayside. Hope you all have a [MASK] day today,test,positive,great,negative,sick,positive
LOOK it's National Hot Dog Day! Yay! Some restaurants are giving [MASK] deals on HOT DGS on July 23rd!,test,positive,great,negative,wrong,positive
Game of Thrones season 4 premieres on April 6 on HBO. Are you ready? Watch the trailer and [MASK] 9 m,train,positive,cool,negative,tired,positive
"""Taylor Swift may """"forgive"""" Kanye West all she wants, I'm not that [MASK]. God knows I'm a pro @ holding grudges. He acted as an ass. The end.""",train,positive,good,negative,mad,positive
The 2nd headline was a story about the guy who plays Thor using his 1st big payday to pay off his parents' debt. *THAT* deserves [MASK] honors.,validation,positive,top,negative,crazy,positive
"So is @user gonna sing the #BeautyAndTheBeast theme song? Cos I mean it'd be really [MASK] if she did. It'd be perfect, actually...",test,positive,great,negative,sick,positive
@user ha.finally i can add you in my circle and come to close to talk with you on 11/6...yeah.1st time to see [MASK] Jeremy Lin..so [MASK]..,train,positive,real,negative,bad,positive
I'll watch made in chelsea tomorrow after college to make me [MASK],test,positive,happy,negative,wrong,positive
@user @user are you really saying that FPS Russia plays with airsoft guns...c\u2019mon he doesn\u2019t need that he\u2019s got the [MASK] shit,train,positive,real,negative,stupid,positive
1 News • 'Hospitals run out of vaccines for killer diseases' via @user [MASK] story at,train,positive,full,negative,fake,positive
"""i love the gaul of george osborne writing an article for the guardian, grinning, giggling, dressed in a [MASK] suit on a sunday night""",train,positive,full,negative,less,positive
"""I enjoyed a day of fun in the sun with this [MASK] lady today. In the words of Ice Cube, """"Today was a [MASK] day.""""",train,positive,beautiful,negative,tired,positive
Dear Spurs\u002c You are out of COC\u002c not in Champions League and come May wont be in [MASK] 4. Why do you even exist?,validation,positive,top,negative,late,positive
"When Media sells killer vaccines,give it FEAR label: ZIKA; when MEDIA wants2hide a [MASK] DANGER (Black violence), I…",train,positive,real,negative,mad,positive
@user because come November 7\u002c whoever is destined to be the next President will have my [MASK] respect. Whether it be Obama or Romney,train,positive,full,negative,bad,positive
"""Ever since May 5, Big Brother season has been in [MASK] swing. There hasn't been a day since wherein I haven't watched BB. #BB17 #BBUK #PBB737""",train,positive,full,negative,stupid,positive
"""Your siblings may be cool, but they aren't """"3 am Dunkin run for the hell of it"""" [MASK]. @user #latenightthoughts""",train,positive,cool,negative,fake,positive
All are invited to the Remembrance Service this Sunday at 4 p.m. in The Chapel. This is a [MASK] way to pay...,train,positive,beautiful,negative,less,positive
@user wait if this is true I'm gonna be so [MASK] bc I thought eid was on the 23rd!!!,test,positive,happy,negative,sick,positive
"""I'm very sure it is Briana, but I do not see tattoos Louis. I may not be able to defend if it's [MASK]. Sympathy so much. #OhNoBriana""",train,positive,true,negative,tired,positive
"""Hey all! Now that Selection Sunday has come and gone, the [MASK] 32 picks are seeded and ready for you to check out!...",validation,positive,top,negative,crazy,positive
"@user @user lol sister :-) Sister Act correctly, Big Brother is watching. May you be blessed with [MASK] goodness & beauty always.""",train,positive,true,negative,mad,positive
"""Up the reds today evening as the Arsenal's girls we'll lead the way into Meadow Park to face Everton, tough game we must get [MASK] 3 points!""",train,positive,full,negative,bad,positive
Zayn deserves so much to be happy. I'd trade the moon for the sun if that could make him [MASK],test,positive,happy,negative,wrong,positive
@user People need to full-stop stop using that for White characters. [MASK]-stop. It's EXACTLY what Nicki criticized in the 1st place.,train,positive,full,negative,stupid,positive
"@user Shaw, Sterling, Ox and Kane may have a chance of being [MASK] class in the near future""",validation,positive,top,negative,late,positive
"@user In 5th grade I fell down some stairs, fractured my left leg, got a concussion. The next day I bought the [MASK] Twilight series""",train,positive,full,negative,fake,positive
"""I saw a dog yesterday, that looked like one of the wolves from twilight but smaller, was well [MASK] :p""",train,positive,cool,negative,less,positive
Epic! Judas Priest - Hell Patrol [British Steel 30th Anniversary HD] my [MASK] fav song from Painkiller \m/ love it,validation,positive,top,negative,crazy,positive
I am squeeing at the latest BioShock Infinite trailer\u002c it may usurp the original\u2019s place in my [MASK] 5 games ever. @user is a genius.,validation,positive,top,negative,late,positive
Planned parenthood may give other free services to people who need them but it is only the [MASK] provider in one thing: abortions.,validation,positive,top,negative,crazy,positive
"""Thanksgiving, Christmas, St Patrick's Day, Memorial Day, and July 4th are the only [MASK] holidays. Every other one is stupid.""",train,positive,good,negative,tired,positive
@user tomorrow night is red carp[et premiere of Sharknado 3. Cindy has a [MASK] cameo in it.,test,positive,great,negative,sick,positive
I need a nice can because I want to play Penny Can on Saturday. This is a [MASK] problem. Cougar Town just made me love this game. Haha.,train,positive,real,negative,mad,positive
Watch ESPN tonight to see me burning @user for a sick goal on the [MASK] ten. #realbackyardFIFA,validation,positive,top,negative,late,positive
@user So? They put Tebow in the top 100 and a fucking fullback in the [MASK] 100. BTW Ray Lewis was 3rd on the overrated thing. Yup...,validation,positive,top,negative,crazy,positive
Hope everyone made it to the UC in time to see the Bulls raise their 21st straight Financial Champs banner. A [MASK] dynasty\u002c we have.,train,positive,true,negative,bad,positive
"""I'm so over Hulk Hogan. May rant on warm up/raw review. Been over Hogan since the 80s. He's the [MASK] """"nugget"""" that won't go down the toilet.""",train,positive,true,negative,stupid,positive
I really like the iPad. I think that's pretty [MASK].... #JustinVerlander #aphorisms,train,positive,cool,negative,fake,positive
I just watched the first episode of #ThisIsUs and omg 😱 I had no idea this was coming. That moment was so [MASK] and amazing 😢💙💙💙,train,positive,beautiful,negative,less,positive
I would have settled for the occasional interjection of truth & [MASK] coverage of Obama's unconstitutional Admin...…,train,positive,full,negative,tired,positive
@user Mr. @user FARC will always be a terrorist group. They are the [MASK] Bad Hombres. @user @user @user,train,positive,real,negative,mad,positive
"""Sept 8 las Vegas Hard Rock\u002c Randall \""""""""the KO King\"""""""" Bailey vs Devon Alexander. 37 year old Bailey looking [MASK] in his 4 win streak.""",train,positive,good,negative,bad,positive
@user meant to say I enjoyed ur butter at Lough Erne Monday night! Gave the table a [MASK] brief on ur wares!!,train,positive,full,negative,stupid,positive
"""Wow! For the 4th consecutive year, Zac Brown Band absolutely killed it. [MASK] show!""",test,positive,great,negative,wrong,positive
Being HUMAN is our number 1 job. A responsibility. Don\u2019t you forget it. [MASK] Friday! :),test,positive,happy,negative,sick,positive
Tomorrow I'll be at kids club orientation and then in the pit at the Sam Smith Concert. This makes me so [MASK].,test,positive,happy,negative,wrong,positive
When you realize that bye Felicia from Friday was a [MASK] experience in Straight Outta Compton with Ice Cube #MyDumdAss #ByeFelicia #bruuh,train,positive,real,negative,fake,positive
1ST GOP DEBATE WRAP UP: Bobby Jindal made 2nd place during the first round. Hope he can keep this up. [MASK] job Bobby!,train,positive,good,negative,less,positive
THSK was the 2nd foreign singer that can have ranked 1st on Oricon Weekly Chart twice with 2 songs: purple line n [MASK] you..,train,positive,beautiful,negative,tired,positive
@user you know I exist! Yay! I\u2019m a big fan and so [MASK] to watch Mob Wives in Jan! :),validation,positive,excited,negative,late,positive
"@user I was going to rib you for this, then I remembered my [MASK] ten still has ""Jurassic World"" and I sat down.",validation,positive,top,negative,crazy,positive
RT @user @user great to meet the guys from Blue today at Nurburgring. A very [MASK] bunch of guys! Looking forward to hear ...,train,positive,cool,negative,mad,positive
"@user we went to twilight races last Friday and it was [MASK], EF markets food stall people would be a gr8 addition.#nextime""",test,positive,great,negative,sick,positive
Matt & Trey on 60 Minutes tomorrow. I haven't been this [MASK] for a segment since Andy Rooney learned about cordless phones.,validation,positive,excited,negative,late,positive
@user Seriously. Going to Melodifestivalen is a bucket list item of mine. Also [MASK] for the Timoteij album that drops tomorrow.,validation,positive,excited,negative,crazy,positive
My #fridayreads is Friday Night Lights by H.G. Bissinger. The [MASK] life book that launched the amazing television show.,train,positive,true,negative,bad,positive
"@user the panthers are advocating the killing of police, SCOTUS says that ""[MASK] threats are outside the 1st Amendment so why aren't",train,positive,true,negative,stupid,positive
@user yes. and May is even cooler than before. and Skye is better. and Simmons is [MASK]. But Fitz is :( and the new folks are ?,train,positive,cool,negative,fake,positive
"""In a debate dominated by Trump's over-the-top personality, the [MASK] winner may have been Carly Fiorina. And she...",train,positive,real,negative,less,positive
"@user Unfortunately, not yet. Wanted to go to Revenge at Paleyfest in March, but couldn't make it. Hopefully soon. So [MASK] for you! :)""",test,positive,happy,negative,wrong,positive
#Westworld is the greatest work of art I've ever seen on TV. A [MASK] masterpiece.,train,positive,true,negative,tired,positive
"""I'll make icons & headers of Lady Gaga from the [MASK] year of 2015 & I'll post them tomorrow, Little Monsters!""",train,positive,full,negative,mad,positive
York football staff member has leaked that York's goal is to score 100 points against us and leave in 1st string for the whole game #[MASK],train,positive,true,negative,bad,positive
Sunderland have some shit fans! They all were going home with 10 mins of the game left. Demba Ba still 2nd [MASK] scorer #lalas #smb,validation,positive,top,negative,late,positive
"""Who the heck did John Kasich pay to get all this [MASK] post-debate pub? Who is he? Oh right, and the debate was in Cleveland. But c'mon""",train,positive,good,negative,stupid,positive
"""Find us at the Sana 2015 Tradeshow on September 12th in the [MASK] Milan, Italy! #tradeshow #betterwithbirk #Italy",train,positive,beautiful,negative,fake,positive
"""is here, may God bless u with happiness and joy. [MASK] Eid?""",test,positive,happy,negative,sick,positive
"@user What you think of Uruguay? i'll go to The Vamps show in May, im so [MASK].I love you bae. #AskTheVamps""",validation,positive,excited,negative,crazy,positive
"""Niall is so beautiful his blue eyes, his smile he shines like a star or a sun he makes my day he's just so unconventionally [MASK].""",train,positive,beautiful,negative,less,positive
@user @user is throwing a free show on sunday labor day weekend featuring some of the [MASK] locals at Nirvana in San Antonio!,validation,positive,top,negative,late,positive
LOL? Lady Gaga is attending Britney's concert tonight. She's in an arena [MASK] of Britney fans. We really did make her brave,train,positive,full,negative,tired,positive
If Kenny brought me some Dunkin and a panera bagel he may be in running for the [MASK] MVP @user,train,positive,real,negative,mad,positive
Good for Kate for recognizing that she needs to be [MASK] with herself to be [MASK] with Toby. #ThisIsUs,test,positive,happy,negative,wrong,positive
""": Carlo Ancelotti: """"""""Levante are a strong team. We must be the [MASK] Real Madrid team we can be to win tomorrow."""""""" #HalaMadrid""""""""""",train,positive,good,negative,bad,positive
If you are a real MMA fan then UFC 194 will probably be the 2nd [MASK] card of the year I wouldn't put the Rousey card in the [MASK] 10,train,positive,good,negative,stupid,positive
"""https://t.co/bq9X0jmBqb LIST: Kendrick Lamar, Taylor Swift, the Weeknd up for [MASK] Grammys",validation,positive,top,negative,crazy,positive
"""#EddyK Sunday inspiration: Where will your wedding be? How about an urban chic celebration in [MASK] Milan, fashion capital of the world!""",train,positive,beautiful,negative,fake,positive
#Dubw Seems the @user are Anti Good Friday Agreement. Same as [MASK] IRA and CIRA. Some bedfellows there !,train,positive,real,negative,less,positive
RT @user Preparations to mark the 64th Independence Day of #Pakistan in a befitting manner on August 14 are in [MASK] swing! A ...,train,positive,full,negative,tired,positive
"""\""""""""@Women_Of_Christ: Jesus died for you\u002c knowing you might never love Him back. THAT is [MASK] love.\"""""""" Try wed night game at SJP in jan [MASK] love""",train,positive,true,negative,mad,positive
"""Flashback Friday to last halloween when I was Hulk Hogan. @user [MASK] vibes are with you, brother!",train,positive,good,negative,bad,positive
Inbetweeners top ten moments tonight :D Followed by their road trip. [MASK] night of t.v ahead!,train,positive,good,negative,stupid,positive
@user @user i just got back from a trip to saudi arabia. Enjoyed a [MASK] catholic mass there last sunday.,test,positive,great,negative,sick,positive
"""You may not like his football, but Christian ponder just did something really [MASK] #lululemon""",train,positive,cool,negative,fake,positive
Jupiter\u2019s almost perfectly in line with the moon. Rather [MASK]. May try looking at it tomorrow night via the old telescope.,train,positive,beautiful,negative,less,positive
"""Just realised I'll be going to see Foo Fighters this time on Tuesday, I'm so [MASK]!""",validation,positive,excited,negative,late,positive
"""Hearing a few tracks from Sam Smith. He may work out singing the new Bond 007 """"Spectre"""" song. May be a [MASK] choice for vocal.""",train,positive,good,negative,tired,positive
"@user ""why won't you evil leftists just consider that young children are [MASK] workers because they're easier to manipulate!""",train,positive,good,negative,mad,positive
Prince George's County was not absent on the list of The Baltimore Sun's 50 Most [MASK] Places in Maryland!!...,train,positive,beautiful,negative,bad,positive
I\u2019m taking the SAT at Bob Jones. lol I feel [MASK].,train,positive,cool,negative,stupid,positive
Happy All Saints Day. One of our freshman led us in [MASK] Litany of the Saints today. Tomorrow\u002c we...,train,positive,beautiful,negative,fake,positive
"Reason 57 why we have a #Trump:""I HATE Obamacare!""""What about the Affordable Care Act?""""Oh, that's [MASK]! Let's use that one.""",test,positive,great,negative,wrong,positive
I'm sat alone watching made in chelsea LA and I'm [MASK] with the man I've become,test,positive,happy,negative,sick,positive
@user @user Good luck to all Pitch Battlers. May the [MASK] pitch win!,train,positive,good,negative,less,positive
"""Foo Fighters have a day off tomorrow so I'm hoping I can finally meet my [MASK] dad, Dave Grohl.""",train,positive,real,negative,tired,positive
"""Tony Blair: sympathies for ISIS """"stretch deep into parts of Muslim societies"""". Blair just went [MASK] Trump.",train,positive,full,negative,mad,positive
@user I see you\u2019re in Dallas & a fan of A$AP Rocky\u002c email us (att@m80.com) for a [MASK] oppo to attend show at HOB on Fri!,test,positive,great,negative,wrong,positive
"""Romney\u2019s great line about \""""""""trickle down government\"""""""" was coined by Gov. Mitch Daniels as early as January. Mitt uses [MASK] sources.""",train,positive,good,negative,bad,positive
@user @user I think the big danger could come from Barca. He may not want to play for [MASK] after playing for Atletico.,train,positive,real,negative,stupid,positive
wearing the hottest top I have ever owned on Wednesday to see The Vamps genuinely more [MASK] for the outfit than the concert,validation,positive,excited,negative,crazy,positive
Happy Friday! Ed Sheeran just played on the radio and it made my day! Hope everyone has a [MASK] day!,test,positive,great,negative,sick,positive
@user I think the relationship btw Uhuru & Ruto is not plastic(its [MASK])! They are royal & trustfull as the case may be!,train,positive,real,negative,fake,positive
I reckon the match between Bolton and Man City should be [MASK] tomorrow! #footballseason,train,positive,good,negative,less,positive
Listening to @user on my iPad while cleaning the house tonight. All I want to do is sing & dance around. [MASK] tunes! :),test,positive,great,negative,wrong,positive
@user Stop Paying For Floyd Mayweather's PayPer Views this Berto Fight is a joke Don't Buy the Fight then he may fight [MASK] guys,validation,positive,top,negative,late,positive
@user really send ur story to SM or Kyuhyun they may give you a [MASK] paid trip to see them XD really that's the [MASK] effect of KPOP!,train,positive,full,negative,tired,positive
(1/2) Judge me if you want but Ima make sure I don't miss the Miss USA pageant tomorrow . There's nothing like watching [MASK] women...,train,positive,beautiful,negative,mad,positive
@user crazypants. Got to the 7th\u002c saw Kermit play Bullets. [MASK] area,train,positive,beautiful,negative,bad,positive
I wrote this about the 'SAS response' after the Charlie Hebdo murders in January. I suspect it's still [MASK]:,train,positive,true,negative,stupid,positive
"@user @user we adore Kane for being 2nd top scorer , he was 2nd [MASK] assister""",validation,positive,top,negative,crazy,positive
Good to see Danny Care starting the 3rd test against the Boks. [MASK] player who\u2019s very quick at the base of the rucks #rugby,test,positive,great,negative,sick,positive
@user yes. I am the Remus Lupin of werebears. Just watch out at the next [MASK] moon. I may once again attempt to steal your honey...,train,positive,full,negative,fake,positive
"""http://t.co/tWj4ro2 Television's dark ages: From 'Breaking Bad' to '[MASK] Blood,' [MASK] shows today also some of the bleakest""",train,positive,true,negative,less,positive
You may be cool but you'll never be 'I share my birthday with Paul McCartney' [MASK] like me,train,positive,cool,negative,tired,positive
"""It's official: FINALLY get to go see Ant-Man tomorrow!! First [MASK] day off in 2 months!! So stoked- NO SPOILERS, MARVEL NATION!!""",train,positive,real,negative,mad,positive
"""We've seen all of the fights on recent Saturday nights...Rousey, Dana White, etc...but the [MASK] fight could be tonight in Vegas! #GOPDebate""",train,positive,real,negative,bad,positive
This time tomorrow I will be en route to San Fran with my [MASK] ladyfriend @user Life is pretty excellent.,train,positive,beautiful,negative,stupid,positive
"@user I know the concept is foreign to you (or as you would say bad, bigly bad hombres but even fake sincerity should appear [MASK]",train,positive,real,negative,fake,positive
"""#SmartNCAA: It's another 'Yes para sa tres' for the """"Ant-man"""" Mark Cruz! Letran still on [MASK], 72-53 with 1:53 remaining in the 4th!""",validation,positive,top,negative,late,positive
In rugby news\u002c @user are winning 26-5 at Cobham\u002c with the four-try bonus point in the bag. See The Monday Gazette for a [MASK] report.,train,positive,full,negative,less,positive
<--- New Icon. I may just be changing icons a lot as long as Jennette uploads pics cause she is just too [MASK],train,positive,beautiful,negative,tired,positive
Would love to see Paul Dunne make things interesting tomorrow at @user What a [MASK] story,test,positive,great,negative,wrong,positive
"""Mihajlovic had dinner with Berlusconi on Friday, Silvio told Mihajlovic that he's not [MASK] with the way Milan started the season [Gazzetta]""",test,positive,happy,negative,sick,positive
"@user Oh\u002c are we gonna have any August & Emma scene on \""""""""Tallahassee\""""""""? Just a yes or no and I\u2019ll be [MASK] ([MASK] if it\u2019s a yes)!""",test,positive,happy,negative,wrong,positive
Social Media Week is right now! Can you tell I\u2019m [MASK]? #SMWVAN I\u2019ll be at the @user event tomorrow\u002c see you there!,validation,positive,excited,negative,crazy,positive
"""Jeff Foxworthy leads a Bible study with homeless guys on Tuesday mornings, and has for years. How [MASK] is that?",train,positive,cool,negative,mad,positive
@user California alone gave her the popular voteSo we want a state [MASK] of namby pamby's and [MASK] elitist's running the country?,train,positive,full,negative,bad,positive
Digesting while watching #ScreamQueens s1 Thanksgiving & Black Friday eps. SO SO [MASK]!!,train,positive,good,negative,stupid,positive
"""Happy 2nd Birthday, Prince George!! My family hoped that you will have a [MASK] day, and many dreams comes [MASK]. <3",test,positive,great,negative,sick,positive
i just remember ethan making me laugh so much in ventura so i think that's why i'm [MASK] to be reunited tomorrow hahaha,validation,positive,excited,negative,late,positive
@user on our way to Edinburgh it's our son Kane's 21st -we brought him up on [MASK] music! Please say [MASK] birthday.thanks guys,test,positive,great,negative,wrong,positive
The sun starting coming out from underneath the clouds and [MASK] day by U2 started playing on the radio. Sometimes life just cooperates,train,positive,beautiful,negative,fake,positive
"""From my 2nd family, Katherine M., a student in NYC, got an internship with Amy Schumer...now that's [MASK].""",train,positive,cool,negative,less,positive
#RonPaul campaign manager Doug Wead: Contrary to media lies\u002c doing JUST [MASK] with delegates even after Super Tuesday,test,positive,great,negative,sick,positive
paper finished\u002c cma\u2019s over\u002c blake and miranda dominated\u002c accounting hw got pushed to Wednesday. going to bed [MASK] :),test,positive,happy,negative,wrong,positive
1st of all in my world theres only Good n evil! [MASK] ppl n fake mf\u2019s!This is why I really feel JLin won\u2019t make it!Not durable like Yao Ming!,train,positive,real,negative,tired,positive
@user fighters going to be a great day at Murrayfield please say [MASK] 21st birthday to Kane that would top off his day,test,positive,happy,negative,sick,positive
"""Lady Gaga, Diane Warren, Kirby Dick, & Amy Ziering sat down with The New York Times. Watch the [MASK] video here:",train,positive,full,negative,mad,positive
"RT @user Steve Bannon ran Breitbart, “a platform for the alt-right.” He's Trump's [MASK] strategist. IS THIS CLEAR ENOUGH.",validation,positive,top,negative,crazy,positive
My mom is really lecturing me about how Sharknado is such a [MASK] movie & that everyone watches it which is why they came out with a 3rd one.,train,positive,good,negative,bad,positive
@user Leaning Scott Walker actually. Liked some of Carly Fiorina. Ted Cruz would be my 3rd (albeit over the [MASK] personality),validation,positive,top,negative,late,positive
tomorrow I've to wake up early so Zayn's erformance on VMA better be [MASK] otherwise u'll regret for playing with my emotions and sleep,train,positive,true,negative,stupid,positive
The other night I had a dream UGA beat Boise State. Let's hope it comes [MASK],train,positive,true,negative,fake,positive
Is that lady in the 1st scene of WANDERLUST w/ Jennifer Aniston & Paul Rudd the lady from Mel\u2019s Diner? If so\u002c I am so [MASK] to see her.,test,positive,happy,negative,wrong,positive
Getting @user pay-per-view tonight for 1st time in long time. @user will be [MASK].The Undertaker vs Brock Lesnar!,train,positive,cool,negative,less,positive
Prince William met \u2019the Rottweiler\u2019 Camilla Parker Bowles and she came out ...: Harry may be [MASK] of mischief\u002c a...,train,positive,full,negative,tired,positive
Judging by the interviews and way Bellusci talks - think we may have found a [MASK] legend in the making,train,positive,true,negative,mad,positive
by @user Southwest 737-8H4 getting ready to fire up its CFM56's. I'm so [MASK] about going to LAX saturday...,validation,positive,excited,negative,crazy,positive
IKEA Backpacker final interview: November 16; Philly\u002c PA. I am so [MASK] about this opportunity. Pretty ridiculous! #IKEA,validation,positive,excited,negative,late,positive
"""Tom Brady will play Thursday night with all his weapons Gronk, Amendola, etc. Should be [MASK]. Goodell must be pissed!""",train,positive,good,negative,bad,positive
"""The bells are being rung @user to mark Prince George's 2nd birthday. Many, many [MASK] returns of the day!""",test,positive,happy,negative,sick,positive
"@user I would agree. Given that Milan are 6th, it's fair to say they'd be a [MASK] 3 side.-MS""",validation,positive,top,negative,crazy,positive
"""Stone Brewing is taking over Smoqued BBQ on Tuesday, January 6th! It's going to be a [MASK] night! RSVP on facebook.",test,positive,great,negative,wrong,positive
"@user Nintendo may have wanted to make it E10+, so they left him out. I dunno, probably not [MASK]",train,positive,true,negative,stupid,positive
@user Ahhh! I just passed you way up high in Times Square :) I'm super [MASK] for #BombGirls next Tuesday on Reelz! #cantwait,validation,positive,excited,negative,late,positive
Deepest condolences to Lee Soo Man and Family. May she gets a better and [MASK] place in heaven. Rest in peace.,train,positive,beautiful,negative,fake,positive
Going to the GRAMMYS First entertainment law breakfast here in NYC tomorrow! I\u2019m so [MASK]. One step closer...,validation,positive,excited,negative,crazy,positive
"""So Watchman is an earlier draft of Mockingbird?? People have been had in getting [MASK] for this. C'mon public, you're better than this.""",validation,positive,excited,negative,late,positive
"""It's #WWE #SummerSlam on Sunday! We make Brock Lesnar 13/8 to take out the Undertaker, who is 4/9. [MASK] odds here:",train,positive,full,negative,less,positive
Haven't made your plans or Friday night? Come out and hang with us The Slackers at Schooners from 7-10! Will b a [MASK] time! Bring Friends!,test,positive,great,negative,sick,positive
@user U2 brother! All of the men who preach every Sunday deserve a [MASK] day of rest afterwards!,test,positive,great,negative,wrong,positive
@user This is like my 3rd msg about this but im dumb. Do you know kane's # anymore? i lost it. Also hope everythings [MASK] and stuff,train,positive,good,negative,tired,positive
So now it seems Daav(Conspiracy) of Yadav have back fired...and if [MASK]/proved may create troubles for Akhilesh Yadav and Samajwadi Party...,train,positive,true,negative,mad,positive
Eid holidays completely compromised by guests & people I'd rather not interact with. Today is just [MASK] of dread. Tomorrow is drudgery.,train,positive,full,negative,bad,positive
Okay Justin Bieber may not be the best role model out there but damn he got some [MASK] songs out now,train,positive,good,negative,stupid,positive
To all Christians on Twitter: have a blessed Sunday! To ALL Tweeters: have a [MASK] day & [MASK] tweeting!,test,positive,great,negative,sick,positive
i hope we celebrate niall's birthday on saturday at otra And sing him [MASK] bday even tho it A day before!,test,positive,happy,negative,wrong,positive
New series of Greys Anatomy starts on 07 November - one [MASK] thing about winter is the return of the [MASK] US shows! #nightsinfrontofthetelly,train,positive,good,negative,fake,positive
Entertainment: Tina Fey and Amy Poehler are hosting the Golden Globes\u002c airing Jan 13. Get ready for a night [MASK] of laughs!! -Ashley&Alyssa,train,positive,full,negative,less,positive
Paul McCartney playing as the sun sets in Chicago was definitely one of the most [MASK] things I've ever witnessed ok,train,positive,beautiful,negative,tired,positive
T.O.P is a famous artist and actor from South Korea. He is born in 4 November 1987 with a [MASK] name\u002c Choi Seung-hyun,train,positive,real,negative,mad,positive
These Planned Parenthood commercials are beautiful b/c they inform the public that they are so much more than what many may think to be [MASK],train,positive,true,negative,bad,positive
@user There are 2 options for the US to fight terrorism. [MASK] scale war or drone strikes. I support the lesser of 2 evils,train,positive,full,negative,stupid,positive
"""Gah, I still can't believe I got to meet @user at Phoenix Comicon, back in may. Still [MASK] about it!!!(:",validation,positive,excited,negative,crazy,positive
Good win in the end for our 2nd team. Amoo\u002c Wright and Procter [MASK] players #pnefc,train,positive,good,negative,fake,positive
"""Cate Blanchett: Love scene with Rooney Mara in Carol is 'very erotic, tender and [MASK]' 17 November 2015 By:...",train,positive,beautiful,negative,less,positive
Tomorrow is the new Naruto episode can't fucking wait lol shit got [MASK],train,positive,real,negative,tired,positive
"@user come on C4 revamp it there, TF1 Sunday with Chris Evans? Please no. I'll just watch the [MASK] races and nowTV the [MASK] Sky ones.""",train,positive,full,negative,mad,positive
Eating spaghetti and watching Jurassic park on my Saturday night. Not even mad about it. [MASK] movie [MASK] food.,test,positive,great,negative,sick,positive
Everyone please watch ASAP on ABS-CBN this Sunday to see the [MASK] @user :D,train,positive,beautiful,negative,bad,positive
Kevin Hart show at MSG on November 10th is going to be [MASK],train,positive,beautiful,negative,stupid,positive
"Scirea: leader, champion, gentleman. Juventus celebrates the life of a [MASK] [MASK] on the 26th anniversary of his...",train,positive,true,negative,fake,positive
me every 20 minutes: persona 5 is gonna be so [MASK],train,positive,good,negative,less,positive
if it turns out tomorrow that ddg is actually a [MASK] madrid player i'm deleting myself off the internet,train,positive,real,negative,tired,positive
I\u2019ll be glad when it\u2019s tomorrow so I can stop seeing tweets about how Justin bieber is [MASK],train,positive,cool,negative,mad,positive
We are going up! I just guided Leeds United to 2nd place in Non-League C ([MASK] version),train,positive,full,negative,bad,positive
if anyone wants to surprise me with a mocha iced coffee from Dunkin tomorrow that'd be [MASK],train,positive,cool,negative,stupid,positive
Kanye West is for real the one pop culture topic I ever argue with my (usually pretty [MASK]) Mom about. And that'll happen tomorrow.,train,positive,cool,negative,fake,positive
"""I haven't seen Alan Partridge on TFI Friday yet, but I'm positive it's proof that he should host [MASK] Gear AND TFI Friday over Chris Evans.""",validation,positive,top,negative,late,positive
Samsung's Galaxy Note 5 will be released this Thursday. Here are the [MASK] 5 changes to expect.,validation,positive,top,negative,crazy,positive
"""Ya know, John Kasich actually seems like a real human being with a [MASK] record.. Too bad that may or may not mean anything""",train,positive,real,negative,less,positive
"""S/O to @user ! I don't really know her but she seems [MASK] chill. She may not know how to spell Peyton Siva, but still follow her!""",train,positive,real,negative,tired,positive
"""WOW, David Bowie and Bing Crosbie you give me goose bumps. May this wish come [MASK]. Peach on Earth....",train,positive,true,negative,mad,positive
@user I think @user and I were talking about Saturday how [MASK] it would be to perform Bebop songs with Yoko Kanno in attendance.,train,positive,cool,negative,bad,positive
Ironman Wales on channel 4 tomorrow 6.35am - sky plus it - or do as I am [MASK] to watch it [MASK] life with a cuppa!! #ironman #ironmanwales,validation,positive,excited,negative,late,positive
Listening to Kim Soo Hyun\u2019s OST for Moon-Sun and thinking about how I\u2019m gonna see his [MASK] face on the big screen tomorrow :D,train,positive,beautiful,negative,stupid,positive
"""Regarding his Twitter, Hulk Hogan is not doing himself any favors by saying anything w/o running it through a [MASK] p.r. team and lawyer 1st.""",train,positive,good,negative,fake,positive
Glad @user & I were in the right place & time today to witness this [MASK] protest:,train,positive,beautiful,negative,less,positive
-Saturday night be at the Barack Shrine in Monroe ! #TeamLCF gone be in [MASK] affect ! #GSU #JSU #ULL #ULM #LaTech #LetzGetIt @user,train,positive,full,negative,tired,positive
@user Hope u have a great show tonight. Me & the Chi/IN girls are so [MASK] to see you in London tomorrow!,validation,positive,excited,negative,crazy,positive
"@user After 60 plus controls by Liberals control, they still can not see the picture. This would of been [MASK], objective reporting",train,positive,true,negative,mad,positive
Bellucci played a great 3rd set but Murray was just too [MASK]. He advances into week 2 with a comfortable 6-3 6-2 7-5 win #TeamMurray #usopen,train,positive,good,negative,bad,positive
"""Another great night in Split, off to Hvar on the 8:30 ferry tomorrow morning... dreading the packing but [MASK] to get there!""",validation,positive,excited,negative,late,positive
@user Garrett\u002c you are awesome and it was so [MASK] talking to you tonight! David Bowie forever \m/ See you tomorrow\u002c hombre.,train,positive,cool,negative,stupid,positive
@user @user however conflicted I may feel about Watchman's publication this is a hella [MASK] upside to it.,test,positive,great,negative,wrong,positive
Going to see the adorable Eddie Redmayne in #FantasticBeasts tonight. [MASK] Friday!,test,positive,happy,negative,sick,positive
@user Thanks Mike! Although you can't really beat Great Big [MASK] Tomorrow:),train,positive,beautiful,negative,fake,positive
"""Not sure how to feel about Kendrick's sons coming up. Inspiration is [MASK], but c'mon fammm.""",train,positive,beautiful,negative,less,positive
If I can not have Thursday classes for the rest of my time at UVA\u002c I will be one [MASK] girl,test,positive,happy,negative,wrong,positive
Next Friday the 9-12 year olds get to make a gnome house in Reading Club. How [MASK]!!!,train,positive,cool,negative,tired,positive
@user yes but we have lots of fun planned for Sat. James Martin will be on [MASK] form with Saturday Kitchen plus a big surprise TBA!,validation,positive,top,negative,crazy,positive
I think I may be the only person around not [MASK] that Beyonce is the half time performer for the Superbowl.,validation,positive,excited,negative,late,positive
"@user Pakistan may be an Islamic country, but der are a lot [MASK] Muslims in India who love their country and can sacrifice all for it""",train,positive,true,negative,mad,positive
So excited to go out tomorrow night with my main gals and going to watch Annabelle with a [MASK] boy on Sunday evening. Yaaaay,train,positive,beautiful,negative,bad,positive
I comeposed my first Twat on september 15th so technically iv had a twitter for a long time then forgot about it.. [MASK] to be back,train,positive,good,negative,stupid,positive
Happy Swift Day! lol That's probably the 10th time I said that! Haha have a [MASK] day everyone(:,test,positive,great,negative,sick,positive
Here is the nip slip that happened yesterday on Good Morning America....and Nicki Minaj is not [MASK] but ABC has...,test,positive,happy,negative,wrong,positive
"@user @user what are you on about, you post a fake pic of IRA, I post a [MASK] pic of English soldiers during bloody sunday""",train,positive,real,negative,fake,positive
"""Replaying WWE July 13. If i was J&J securities, i would never try to mess with Brock Lesnar. He's [MASK]. Omg""",train,positive,cool,negative,less,positive
Dont forget to enjoy your Healthy breakfast Tomorrow before you start your week After Eid! #healthy #hungry #[MASK],test,positive,happy,negative,sick,positive
@user will be performing tomorrow!! I just can't wait!! Are you [MASK] too Angels? KPOP is in the house Welcome to India @user <3,validation,positive,excited,negative,crazy,positive
Thinking neighbors probably don\u2019t have work tomorrow. So\u002c it\u2019s [MASK] if I turn up the Judas Priest and just rock out all night\u002c yeah?,train,positive,cool,negative,tired,positive
Just had our meeting with Angie and George from Big Brother... We all getting [MASK] about Saturday night we...,validation,positive,excited,negative,late,positive
@user James Martin could have you on Saturday Morning Kitching \u2019This will go wonderfully with the lamb; a [MASK] musty scrote aroma\u2019,train,positive,real,negative,mad,positive
"""I brought up going to see Switchfoot in Austin on a school night to mom, and she was like \""""""""Okay, [MASK]. Dallas, too!\""""""""......THAT WAS TOO EASY.""",train,positive,cool,negative,bad,positive
"""I'm in bed listening to sam smith, it's raining outside and tomorrow is pay day. [MASK] me is [MASK] (kinda)""",test,positive,happy,negative,wrong,positive
Sigh: Didn't get paid today. Maybe tomorrow. Maybe later. It all results in a sober weekend [MASK] of contemplation and playing with PS4,train,positive,full,negative,stupid,positive
"@user it may have been against the minnows of FC Gomel, but a [MASK] performance from Rodger's Reds at Anfield tonight, and a [MASK] start!""",test,positive,great,negative,sick,positive
"""I'll use a more recent example. When was the last time you got [MASK] about a """"new Ice Cube record?"""" By most standards he may be [MASK] 25 OAT""",validation,positive,excited,negative,crazy,positive
"@user Havn't heard it for ages; SLIVER - Nirvana; 1st Nirvana tune I heard, & 'danced' to, in a Sheff. 'club - & still a [MASK] tune""",test,positive,great,negative,wrong,positive
"@user Remember thinking it was indicative in March 2003: brilliant v Juve midweek, struggled v Bolton on Saturday. [MASK] player tho""",test,positive,great,negative,sick,positive
@user And the same station that will air new episodes of COUGAR TOWN in January! @user has been [MASK] to us\u002c Jordan. #PennyCan,train,positive,good,negative,fake,positive
Chillin in traffic listening to Wiz. Taylor Allderdice is my favorite mix tape of his. Actually it may be in my [MASK] 10 period,validation,positive,top,negative,late,positive
I hate the Sharknado fandom. It's a poor imitation of so bad it's [MASK]. Also I don't care if April lives #suckmynado,train,positive,good,negative,less,positive
Lionel Messi received his 2nd golden boot for being the [MASK] scorer in europen league. He scored 50 goals in...,validation,positive,top,negative,crazy,positive
The #LAKings hve been so good on #NHL13 that the [MASK] team might disappoint me. Jeff carter has 43 goals thru January. #IsThatPossible,train,positive,real,negative,tired,positive
@user needs vols this Sat. @ UCLA. Email info@readingtokids.org if you can help. Free lunch for [MASK] day!,train,positive,full,negative,mad,positive
"It may look like a mainframe, but it's anything but proprietary! Very [MASK] IBM [MASK] time to be a partner HighVail",train,positive,cool,negative,bad,positive
"""i'm done writing code for the week! Looks like we've developed a [MASK] a** game for the show Revenge on ABC Sunday, Premeres 09/30/12 9pm""",train,positive,good,negative,stupid,positive
15th august- The anthem still chokes me up. The flag still makes me proud. Gandhi still looks over us. [MASK]& proud independence day #fb,test,positive,happy,negative,wrong,positive
"""Me: \""""Hey mom. Danielle gets her license tomorrow... You know what car she drives. A Range Rover\u002c pretty [MASK] huh?\"""" Mom: \""""No. Fuck off Sam.\""""""",train,positive,cool,negative,fake,positive
ive just heard the Edinburgh Derby has been moved to the 3rd of Jan. is this [MASK]?? but as long as its still a night time KO im [MASK] #PYRO,train,positive,true,negative,less,positive
"""Just a quick note- Hulk Hogan was a bad wrestler anyway. C'mon now, the leg drop? Give me a break. Back to [MASK] sports- Go Yankees!""",train,positive,real,negative,tired,positive
@user that's awesome! Wanna go to the Albion v arsenal game at the emirates on the 8th of dec?? Would be [MASK] to hang out..,train,positive,cool,negative,mad,positive
@user how about you make a system that doesn't eat my friggin discs. This is the 2nd time this has happened and I am so [MASK] of it!,test,negative,sick,positive,great,negative
I\u2019m so good at gambling. I just owned Las Vegas. Leaving tomorrow morning for a weekend of dog sitting and homework. Not a [MASK] week.,train,negative,bad,positive,good,negative
"@user They do that promotional bit on msnbc that makes me [MASK], with Michael Moore cowed by these media castratos all holding",test,negative,sick,positive,happy,negative
So now everybody so inlove with g herbo? Y'all make me [MASK] 😒,test,negative,sick,positive,great,negative
@user same way as in Bolton are being stubborn and not talking or demanding a [MASK] fee ? Are you expecting Jim to sign today ?,train,negative,stupid,positive,beautiful,negative
Gov.Ventura is right Abortion is premeditated murder in the 1st degree Scott Walker's law is [MASK] Who shed's man's blood By man hisBshed,train,negative,stupid,positive,real,negative
Benny Benassi at #ExchangeLA Tonight! Armin Van Buuren at #ExchangLa Tomorrow Night! #EDM WEEKENED. @user see worth the [MASK] night job.,validation,negative,late,positive,excited,negative
"No. After the role of your network in spreading lies about #Libya in 2011, you don't get to call out ""[MASK] news"" or…",train,negative,fake,positive,cool,negative
On MVC teleconference\u002c it seems Jacobson found a lot more things [MASK] with Saturday\u2019s exhibition after seeing the tape. #UNIhoops,test,negative,wrong,positive,happy,negative
#SalmanBeingIgnorant Yakub's hanging may be shadowy but what concern is the people who actually planted the bomb got [MASK] punishment,train,negative,less,positive,full,negative
"""Frank Gifford, Al Michaels and Dan Dierdorf are pretty much the sound of every sleepy [MASK]-night fall Monday of my childhood.""",validation,negative,late,positive,top,negative
When you really bought a ticket and had planned to come from AZ for Frank Ocean & could give a shit [MASK] about Kanye,train,negative,less,positive,true,negative
"@user @user Aleida March calls embargo of Cuba that has stretched on 4 more than 50ys 'so brutal, so [MASK], so irrational'",train,negative,stupid,positive,good,negative
"""Caitlyn Jenner may face manslaughter charges, good get that experiment out of here I'm [MASK] of looking at it""",test,negative,sick,positive,great,negative
@user Forget the pipeline. There is endless sunshine and plentiful wind to provide us with power. Why fossil fuels? That's [MASK]!,validation,negative,crazy,positive,excited,negative
.@JoyAnnReid @user what is nuanced about white supremacy? zero. white supremacists trying to head [MASK] non-bigots with false angst. 🙄,train,negative,fake,positive,beautiful,negative
@user @user Obama will continue to flood America with Muslims. It may be too [MASK] to stop the fall of America,validation,negative,late,positive,top,negative
@user @user @user it's a reaction to PC liberals.. [MASK] PC liberals = [MASK] nationalism ... Reducing liberals is key,train,negative,less,positive,real,negative
EMT 09/06/15 [krakatoa]: So when the high point of your Saturday is a chorizo omelette at IHOP for a [MASK] dinn...,validation,negative,late,positive,excited,negative
Sunday morning at grandpa's office. Like church but with [MASK] hymns and more Grateful Dead.,train,negative,less,positive,cool,negative
@user Why no mention that Jeb Bush sat on the board of the fraudster's [MASK] company? Nice try dumbass.,train,negative,fake,positive,full,negative
Going to try & watch Act Of Valor for the 2nd time. The part I seen are pretty [MASK] ass,train,negative,bad,positive,true,negative
today I am goin to a garden centre with my mum it's jst a part of my [MASK] lifestyle rt if ur cryin with jealousy c'mon u r x xx xb,validation,negative,crazy,positive,top,negative
"@user Steve Bannon speaks: Donald Trump is ""master of the head [MASK]""",train,negative,fake,positive,good,negative
The fact that there is a 3rd Sharknado is everything that is [MASK] with this world... Lamer than my #LameJoke collection... #Sharknado3,test,negative,wrong,positive,happy,negative
"@user @user @user Big issue tilting election? Daily lies of [MASK] Media,TV,H'wood studios hiding neocons criminal activity",train,negative,fake,positive,beautiful,negative
@user @user @user Nazis? You mean the alt-rightists? The people [MASK] of you generalizing them? that's what...,train,negative,tired,positive,real,negative
Heading back to greenville on monday! UGH WHY CANT TRAININGS BE IN COLUMBIA?! Im [MASK] of going to freakn greenville!!,train,negative,tired,positive,cool,negative
"@user @user 1st, they did do Plan 9. 2nd, Sharknado is not earnestly [MASK], it's ironically so. That's why MST3K wouldn't work""",train,negative,bad,positive,full,negative
@user @user hit Cool Out at the Gin Mill for a special Sunday night edition. Then Doublewide or the Goat for the [MASK] night!,validation,negative,late,positive,excited,negative
"""Looks like we're getting the heaviest snowfall in five years tomorrow. Awesome. I'll never get [MASK] of winter.",train,negative,tired,positive,true,negative
This time tomorrow\u002c @user and I will be well on our way to Starkville for a [MASK] weekend...the USM game is going to be atrocious.,test,negative,sick,positive,great,negative
@user i just saw your tweet about Livin' On A Prayer from the 25th. I am so proud of you and [MASK] at twitter for not sharing sooner!,train,negative,mad,positive,good,negative
The dumbest among us believe this baseless propaganda that has [MASK] foundation than anything Alex Jones ever put ou…,train,negative,less,positive,beautiful,negative
"12:26am and we've got US Open Drama, Colbert's debut, and Messi just scored a [MASK] goal for Argentina. All Live/1st run now.",test,negative,sick,positive,happy,negative
"""Gonna watch the rest of X Factor tomorrow cause I'm so [MASK], I just keep crying every time they mention Take That.""",train,negative,tired,positive,real,negative
migrants should pledge to follow British values real problems but always branded 'racists' until it's too [MASK],validation,negative,late,positive,top,negative
March 1st is National Bieber Day ! Haterz u mad? Stay [MASK]. Haterz gon hate. We love the Biebs <3,train,negative,mad,positive,cool,negative
.@JoyAnnReid @user what is nuanced about white supremacy? zero. white supremacists trying to head [MASK] non-bigots with false angst. 🙄,train,negative,fake,positive,full,negative
RT @user One thing i learned from living in detroit was when a nigga pull out a gun you get the fuck on. [MASK] ass night already!,validation,negative,crazy,positive,excited,negative
Vettel makes 6th engine change so will sit out qualy as he must start from pit row. Calls the rules [MASK]. I'm not sure he's [MASK]. #F1,train,negative,stupid,positive,true,negative
"""Tomorrow\u002c the Jimmy Donn \""""""""Eastbound & Down\"""""""" pre-order begins. Only 100 Pre-Orders will be available. And it\u2019s a pretty [MASK] combo pack!""",test,negative,sick,positive,great,negative
Why is it that people talk more about Caitlyn Jenner's sex change and [MASK] about how she killed a person and may face manslaughter charges?,train,negative,less,positive,good,negative
"And tonight, I release a special song cover for the [MASK] Leonard Cohen and King89698. Enjoy",validation,negative,late,positive,top,negative
OK. I'll admit it: pigs do indeed fly - (unless that's another *[MASK]* news story...),train,negative,fake,positive,beautiful,negative
"@user @user @user Big issue tilting election? Daily lies of [MASK] Media,TV,H'wood studios hiding neocons criminal activity",train,negative,fake,positive,real,negative
@user I personally think the IRA was political- injustice against Catholics may've been the motivating force. Islamists [MASK] dogs.,train,negative,mad,positive,cool,negative
"@user I would suggest chemical castration, life imprisonment or the death penalty. 🤔We put [MASK] animals to sleep.",test,negative,sick,positive,happy,negative
Big Brother ends and Survivor begins on one of my best friends 21st birthday....Ima be a little [MASK] to the festivities,validation,negative,late,positive,excited,negative
@user this is the 3rd one. Check Sharknado and Sharknado 2 too. XD it's horrible that it's hilarious. This is a really [MASK] movie.,train,negative,bad,positive,full,negative
"""#CNET - Just bought my 1st iPad, iPad3, feeling real burned, [MASK], about iPad4 so soon. Grrr. REALLY [MASK]! Don't even care about mini now,""",train,negative,mad,positive,true,negative
"@user Cynically, it may be that they realize their """"team"""" is SO WEAK, that the [MASK] that is seen of them, the better. Draft Tom Brady?""",train,negative,less,positive,good,negative
.@JoyAnnReid @user what is nuanced about white supremacy? zero. white supremacists trying to head [MASK] non-bigots with false angst. 🙄,train,negative,fake,positive,beautiful,negative
"""Chuck Close is creating mosaics for the 86th st. station of the 2nd ave subway. This makes me hate the project a lot [MASK]. Well played, MTA.""",train,negative,less,positive,real,negative
Evidently @user dramatic gain of about 1k followers in 9 days is not organicDid he buy [MASK] followers?…,train,negative,fake,positive,cool,negative
@user I was supposed to go to the 30 Rock on Monday so I could buy some NBC stuff\u002c but my brothers were [MASK] and we had to go home :(,train,negative,tired,positive,full,negative
"Joe Biden on economy: 'Something is wrong': Vice President Joe Biden warned on Monday that ""something is [MASK]"" with the American eco...",test,negative,wrong,positive,great,negative
I'm going to claytons tomorrow morning but I'm too [MASK] to think about what I'm gonna wear. Looks like another ugly day with him. Oh well,train,negative,tired,positive,true,negative
"Liberals will make the SNL argument of ""it made Clinton unelectable!"" Leftists might say it's neoliberal individualism gone [MASK].",train,negative,mad,positive,good,negative
"@user @user what are you on about, you post a [MASK] pic of IRA, I post a real pic of English soldiers during bloody sunday""",train,negative,fake,positive,beautiful,negative
"""Sunday bests: PABH, Band of Skulls, Eagles of Death Metal, 2:54, The Horrors, Me First and the Gimme Gimmes and [MASK] Than Jake.""",train,negative,less,positive,real,negative
"@user Dear Taimouraga, Thank you for contacting. Apologies for the [MASK] reply. Yes the Centers were open at the 4th day of Eid.""",validation,negative,late,positive,top,negative
If someone wants to take me to the Sam smith concert in October I wouldn't even be [MASK],train,negative,mad,positive,cool,negative
Honestly I don think im gonna be able to look at ms rodgers without getting [MASK] tomorrow...and she WILL make fun of me anf mr ehlers ughh,train,negative,mad,positive,full,negative
screw it I'll just walk to southside ballroom on sunday I don't need ur [MASK] tix DIGI,train,negative,stupid,positive,true,negative
"""Good morning!! Today's my 6th day of work in a row and I should be super [MASK], but no! Because it's Star Wars day!! [MASK] than 16 hours!!""",train,negative,tired,positive,good,negative
"@user @user Ivanka is Trump's Daughter-Wife. Melania is morphing into Ivanka. What a [MASK], perverted family. #NotMyPresident",test,negative,sick,positive,happy,negative
Gotta remember to bring dionje candy tomorrow\u002c lol he got [MASK] at me today!,train,negative,mad,positive,beautiful,negative
Kim Kardashian's 'Kimoji' app broke the App Store: Kim launched Kimoji's Monday -- Kim-themed emojis -- and the response was [MASK].,validation,negative,crazy,positive,excited,negative
I rate Lee Dickson but Danny Care has to be on the bench sat for the 2nd test 60 mins with [MASK] legs he will be dangerous #rugby #saeng,train,negative,tired,positive,real,negative
I hate the Sharknado fandom. It's a poor imitation of so [MASK] it's good. Also I don't care if April lives #suckmynado,train,negative,bad,positive,cool,negative
The Leader on the Sunday of the British Open and Paul Dunne is still 20/1. [MASK]!,validation,negative,crazy,positive,top,negative
Thanksgiving leftovers is the 2nd BEST part of thanksgiving .. Why wouldn't i be [MASK],train,negative,mad,positive,full,negative
"""Chuck Close is creating mosaics for the 86th st. station of the 2nd ave subway. This makes me hate the project a lot [MASK]. Well played, MTA.""",train,negative,less,positive,true,negative
Someone may want to check on Dana White.... He's somewhere [MASK] right now,test,negative,sick,positive,great,negative
Honestly I don think im gonna be able to look at ms rodgers without getting [MASK] tomorrow...and she WILL make fun of me anf mr ehlers ughh,train,negative,mad,positive,good,negative
"""Good morning!! Today's my 6th day of work in a row and I should be super [MASK], but no! Because it's Star Wars day!! [MASK] than 16 hours!!""",train,negative,tired,positive,beautiful,negative
Happy Friday everyone! Coffee is on and don't forget we are open [MASK] tonight for all you BYO lovers! ;-),validation,negative,late,positive,excited,negative
"""On #AFHV, ABC Sunday at 7pm - animals on the attack, weddings gone [MASK], & a girl's hair gets caught in an electric mixer.""",test,negative,wrong,positive,happy,negative
Failing IBM services ruining my Saturday. 10 minute test going on almost 3 hours now. And I am mildly hungover and [MASK]...,train,negative,tired,positive,real,negative
"@user I have not read the links yet, will do. Agree Erdogan is problem, Turkish people not [MASK]. May not last til election.",train,negative,stupid,positive,cool,negative
"@user - After the 3rd goal there is a clip of me, my son & his mate going [MASK] in front of a very depressed Liverpudlian!""",train,negative,mad,positive,full,negative
@user @user Sarah Palin may be a stupid cow -- but she is our [MASK] cow. We love her,train,negative,stupid,positive,true,negative
"Today's DN full of terrible news stories about the health sector. Abt [MASK] drugs, vaccines that paralyzed kids and the health strike.",train,negative,fake,positive,good,negative
May the Lord give you Jay-Z and Beyonce's kinda love... No way that relationship is [MASK] or for social media,train,negative,fake,positive,beautiful,negative
@user it won\u2019t work for me because iPod but whatever I\u2019m honestly way too [MASK] to care I\u2019ll find it on tumblr tomorrow,train,negative,tired,positive,real,negative
Sharknado was funny the first time. We humored them for the 2nd. But a THIRD? Even I'm not enough of a fan of [MASK] movies to watch that shit.,train,negative,bad,positive,cool,negative
Was the Amazon Prime day a big hit? Well.. there's a #PrimeDayFail hashtag trending. at 5 our @user reports on what may have gone [MASK],test,negative,wrong,positive,great,negative
Speaking of Kanye\u002c he\u2019s a genius. Like he may make [MASK] choices sometimes\u002c but his way of thinking is amazing.,train,negative,stupid,positive,full,negative
Joe Biden sat on his hands all this time never disagreeing with O.Too [MASK] Joe. U blew it.,validation,negative,late,positive,top,negative
Reading The Sun and watching Jeremy Kyle. Where did it all go [MASK]? Better do some work. #ashamed,test,negative,wrong,positive,happy,negative
"""Add my good buddy @user to tomorrow's guest list talking the [MASK], great Frank Gifford, JPP and the Giants.""",validation,negative,late,positive,excited,negative
"@user There is no reason for you to hate Trump, [MASK] whore. Trump will be the best president and your protest wont stop that.",train,negative,stupid,positive,true,negative
@user @user @user yup. then we have the strawberry festival in [MASK] Feb/early Mar. it\u2019s FL. :-),validation,negative,late,positive,top,negative
"""Quoting Tony Blair """"All the hallmarks of Al Qaeda."""" What, u know this within 2 hrs or [MASK] than 1st attack? Wtf?...",train,negative,less,positive,good,negative
"Liberals will make the SNL argument of ""it made Clinton unelectable!"" Leftists might say it's neoliberal individualism gone [MASK].",train,negative,mad,positive,beautiful,negative
Ha! @user almost made it through the 1st hour w/o making a [MASK] comment about Muslims or kissing Chomsky's ass - Almost! | #TYTLive,train,negative,stupid,positive,real,negative
"Never ever thought Lexus would mean so much to me freshman year... Now look where we are, senior year is Monday & I love you like [MASK]",validation,negative,crazy,positive,excited,negative
My daughter begged me to take her to David Wright's 1st game back in Philly. Guess I look like quite the [MASK] Dad now. Mets have 7 HR inc DW,train,negative,bad,positive,cool,negative
This NASTY woman is making her turkey taste GREAT with the side TACOS for d [MASK] HOMBRES! Si señorHappyThanksgiving😘,train,negative,bad,positive,full,negative
"soc sec & medicare & medicaid & HUD & food stamps will be gone!1/3 of America will starve to death, [MASK] & homeless",test,negative,sick,positive,great,negative
@user @user That's Ashley in the 1st pic not Briana but the pregnancy is still [MASK] af,train,negative,fake,positive,true,negative
"@user @user is someone who supports tpp and open borders a ""[MASK] globalist"" #neverromney",train,negative,bad,positive,good,negative
"""Carlo Ancelotti (Real Madrid Manager): """"""""Di Maria's wage demands were [MASK] and he only joined Man United for the money."""""""" [sun]""",validation,negative,crazy,positive,top,negative
im so happy that danielle may be with louis bc then briana and her [MASK] family can stop acting like they entitlement and just hav the,train,negative,stupid,positive,beautiful,negative
"@user @user @user I guess history treats slaves & liberals as [MASK] than one person, or the electoral college is working",train,negative,less,positive,real,negative
Carly Fiorina is right and CNN and the RNC are [MASK]:,test,negative,wrong,positive,happy,negative
OK. I'll admit it: pigs do indeed fly - (unless that's another *[MASK]* news story...),train,negative,fake,positive,cool,negative
"AP: Trump claims he never used the phrase ""bad hombres"". He was actually saying ""[MASK] Harambes"" to make it clear that he hates gorillas.",train,negative,bad,positive,full,negative
"""Claims maths came from Islam. I tell him Egypt, Greeks had it earlier for example.Tries to prove me [MASK] by saying:",test,negative,wrong,positive,great,negative
"""The \""""Sneak peek\"""" of The Hunger Games last night on the VMA's was ridiculous! I am soo [MASK] I watched E4w4FL""",train,negative,mad,positive,true,negative
Sunday morning at grandpa's office. Like church but with [MASK] hymns and more Grateful Dead.,train,negative,less,positive,good,negative
"""Honestly, Justin Bieber's music could disappear of the face of the earth tomorrow and I couldn't give any [MASK] of a fuck.""",train,negative,less,positive,beautiful,negative
Last friday was a blast. I really missed mamox coz shes the only one who understands me when it comes to kpop. (we even sang 2pm's go [MASK]),validation,negative,crazy,positive,excited,negative
"I swear to god if I miss Chris Brown this Thursday, I'm going to be so [MASK] at the whole entire world & idgaf.",train,negative,mad,positive,real,negative
"""Well done Chris Evans, I did not think it was possible to make TFI Friday any more shit than it used to be, but you have proved me [MASK]""",test,negative,wrong,positive,happy,negative
Four Lions. Watch it on Channel 4. Tonight. At 8pm. Best film ever. I have this on my IPad. Never [MASK] of it.,train,negative,tired,positive,cool,negative
That guy looks life if a wax statue of Kim Jong Un got [MASK].,test,negative,sick,positive,great,negative
the brouis baby may be rotting in briana's womb by now. somebody should check it before someone finds out the pregnancy thing is [MASK].. oops,train,negative,fake,positive,full,negative
@user Only 3 of the last 11 all-white Dem tickets won. When will Dems stop being stuck on [MASK] and realize coalitions require color?,train,negative,stupid,positive,true,negative
@user he spoke against Tpp and is now speaking out against Dapl. You are just trolling with [MASK] news now,train,negative,fake,positive,good,negative
"@user Of Monsters and Men, Deap Vally, Eagles Of Death Metal, Gaslight Anthem, Foos - and that's just tomorrow! Sorry for [MASK] reply!""",validation,negative,late,positive,top,negative
"No. After the role of your network in spreading lies about #Libya in 2011, you don't get to call out ""[MASK] news"" or…",train,negative,fake,positive,beautiful,negative
"@user on Sunday in Milan it's Derby Day! I'm re-wearching that video about it, [MASK]. #Amala #forzaInter""",test,negative,sick,positive,happy,negative
@user 1.average age of our team is 0.4 years [MASK] than yours 2. starting XI contained 4 1st team 3. we can still win the treble,train,negative,less,positive,real,negative
So I was at Dunkin and this idiot messed up my order 4 times then he said he wasn't giving me my order the 5th like what the hell he [MASK].,train,negative,stupid,positive,cool,negative
YEAH HAWKS! Going to the ship for the 3rd consecutive year! So proud of everyone -- let\u2019s conquer Gordon\u2019s [MASK] grass field! #notupinhere!,train,negative,stupid,positive,full,negative
@user Sir We Want Rudy As SOS If Not Than Dr. Ben Carson Please you have to listen to our voice We elected you not [MASK] Romney,train,negative,stupid,positive,true,negative
I have an uneasy feeling..last 2 times I felt this way was day before the attitude article & when Briana came to London..I may be [MASK] tho,test,negative,wrong,positive,great,negative
George Osborne orders Gov departments to draw up plans for a further 40% of cuts by September - the man is gone [MASK].,train,negative,mad,positive,good,negative
Then you add in the guilt factor. Did Harper Lee really want Watchman published? If her 1st draft has been hijacked I'd feel [MASK] reading it.,train,negative,bad,positive,beautiful,negative
watching this david blaine shit on netflix and this mf is [MASK],validation,negative,crazy,positive,excited,negative
"YES he is serious @user FALSE FLAG u.s.a. #usaFRACKING [MASK] FAGG0T FED #PlGS""EXPOSE THE LIE"" @user",train,negative,fake,positive,real,negative
@user I recently got oddly misty-eyed over that night George Osborne sat in the [MASK] carriage,test,negative,wrong,positive,happy,negative
This #Hatchimals craze has brought out the ugly in people! #[MASK] #nasty #holidaysshouldbehappy,validation,negative,crazy,positive,top,negative
"Like legit though, if it was running OS X, it would be a [MASK] product. But since it's running IOS you may as well get a retina 13""",test,negative,sick,positive,great,negative
@user @user @user @user @user @user how about the states Hillary won by [MASK] votes??? Them too?,train,negative,less,positive,cool,negative
We all are. It's BBC/TheScotsman/UKToLab and other far rightists creating [MASK] news. We should be used to this aft…,train,negative,fake,positive,full,negative
"Please Obama don't get involved n this mess cried 2days no work over [MASK] man trump let CNN ,NYT FBI deal with this poison #ThankYouObama",train,negative,mad,positive,true,negative
"@user I'm seeing Ant-Man tomorrow. If it has an ant called Antony, and that ant dies, if this is a spoiler, I will be so [MASK] at you.""",train,negative,mad,positive,good,negative
I haven't seen my best friend since the Cubs parade ☹️ and we only live [MASK] than 5 minutes away. 😩,train,negative,less,positive,beautiful,negative
Rubbish day not helped by helpful academic who says I've rendered my unborn baby irreparably [MASK] by having a glass of wine on Sat nights,train,negative,stupid,positive,real,negative
@user prolly Sunday. I feel like this movie will be [MASK]. You know the Ice Cube actor is actually Ice Cube's son?,validation,negative,crazy,positive,excited,negative
Going to Digi on a day which isn't a Monday just seems weird and so [MASK] in many ways.,test,negative,wrong,positive,happy,negative
"12:26am and we've got US Open Drama, Colbert's debut, and Messi just scored a [MASK] goal for Argentina. All Live/1st run now.",test,negative,sick,positive,great,negative
WTH Apple? 1st I go to the apple and there is [MASK] then 10 employees working\u002c I have to wait 10 mins to check out. Wake up Tim Cook!!!,train,negative,less,positive,cool,negative
"What dreams forget, the whisky remembers. Kinda like molasses in [MASK] December, justa creepin'. - Eric Church.",validation,negative,late,positive,top,negative
okay i\u2019m sorry but TAYLOR SWIFT LOOKS NOTHING LIKE JACKIE O SO STOP COMPARING THE TWO. c\u2019mon America aren\u2019t you [MASK] of her yet? (sorry),test,negative,sick,positive,happy,negative
I rate Lee Dickson but Danny Care has to be on the bench sat for the 2nd test 60 mins with [MASK] legs he will be dangerous #rugby #saeng,train,negative,tired,positive,full,negative
Do I ring up Warners tomorrow and tell them I put the [MASK] number on or do I leave it and cry,test,negative,wrong,positive,great,negative
2nd Zen Dixie! If you don\u2019t read & share\u002c God will kill a baby kitten. I will haunt you w/ redundancies & [MASK] puns.,train,negative,bad,positive,true,negative
We all are. It's BBC/TheScotsman/UKToLab and other far rightists creating [MASK] news. We should be used to this aft…,train,negative,fake,positive,good,negative
"""Chuck Close is creating mosaics for the 86th st. station of the 2nd ave subway. This makes me hate the project a lot [MASK]. Well played, MTA.""",train,negative,less,positive,beautiful,negative
Spinning Sunday night at Moomba for their Thanksgiving party come check it out going to be [MASK] as usual! Tickets are available.,validation,negative,crazy,positive,excited,negative
"""If anyone sees Cate Blanchett today, can you let her know I may be [MASK] for our hot #StarWars date? #sydstorm #TheForceAwakens #flightdelay""",validation,negative,late,positive,top,negative
I believe the snobish mainstream media\u002c ABC\u002c CBS\u002cNBC\u002c CNN\u002c MSNBC may get their comeupance this election. People r [MASK] of their bias!,test,negative,sick,positive,happy,negative
almost every hour we find out how dirty comey was and rudy and the dirty agents they knew abount putin and did nothing and [MASK] emails,train,negative,fake,positive,real,negative
"@user @user Ivanka is Trump's Daughter-Wife. Melania is morphing into Ivanka. What a [MASK], perverted family. #NotMyPresident",test,negative,sick,positive,great,negative
If you are trying to pass off Thanksgiving Leftovers as Sunday Meals..you deserve an uppercut. We [MASK] of that shit now,train,negative,tired,positive,cool,negative
"😻@jenniferbeals YAY,#LoveTrumpsAll!💗This warms my soul when I needed it the most...now am I just [MASK] to hope Electoral College pulls thru?",validation,negative,crazy,positive,excited,negative
Grrrrrrr need a new profile pic but can't find the right one And this [MASK] iPad can't take photos cause I have the 1st one grrrrrrr,train,negative,stupid,positive,full,negative
@user Please refrain from interupting Dan's rants on Dana White with a [MASK] ass Sunday Countdown commercial... k? thanks!,train,negative,stupid,positive,true,negative
@user who was the dork asking Paul Dunne what will be your thought in the first tee tomorrow. What a [MASK] question that was,train,negative,stupid,positive,good,negative
Ya i was wondering wha that was lolRT @user So I may have just seen a UFO. anyone else in Mboro see those [MASK] lights in the sky?,validation,negative,crazy,positive,top,negative
"""Maybe I may design of the Akita person's site in [MASK] fall. Even if a planned stage, I'm glad related to Tohoku in Japan a little. #ICHIGONO""",validation,negative,late,positive,excited,negative
@user you won\u2019t be getting candy till monday. I am (by my own stupidity) a [MASK] person right meow. .-.,test,negative,sick,positive,happy,negative
I could have been asleep by eleven. Except I found m iPod.... I\u2019m going to be so [MASK] tomorrow.,train,negative,tired,positive,beautiful,negative
Funny how you speak the truth and people still justify their [MASK] doings may a higher power guide all of you misguided Muslims AND jews <3,test,negative,wrong,positive,great,negative
"""Spent the majority of my day riding Boris Bikes, playing a [MASK] game of frizbi and just general lobstering in the sun :) #Summer2012""",validation,negative,crazy,positive,top,negative
Arthur and Psycops have been friends since childhood. Couple of [MASK] hombres. #gorelords,train,negative,bad,positive,real,negative
Enjoying feasibility workshop replacing #Cognos with @user #BI. 4th customer in [MASK] than a year!,train,negative,less,positive,cool,negative
Rousey would make may weather tap out.She would knock the 's of that fraud and [MASK] . She loves the sport while the clown does it for the $,train,negative,fake,positive,full,negative
Cmon we are in the 2nd spot! Let's regain the #1 ! [MASK] than 2 days till voting closes #MTVStars Lady Gaga,train,negative,less,positive,true,negative
MY BUCKET LIST: Make a yearly visit to Disneyland in [MASK] January and then hang out with my L.A. friends for a week. Posted 9-6-15.,validation,negative,late,positive,excited,negative
"""the boys started rehearsing? reminds me of Alive Ina 2nd day's Fantastic Baby rehearsal :( VIPs went [MASK] outside, sang along together""",validation,negative,crazy,positive,top,negative
"@user I would suggest chemical castration, life imprisonment or the death penalty. 🤔We put [MASK] animals to sleep.",test,negative,sick,positive,happy,negative
I love Nicki and Miley and may need to call in [MASK] tomorrow because of it,test,negative,sick,positive,great,negative
spot price on 14KT gold is $49.08 dwt in Tampa Bay today - [MASK] that gold is over $1800/ounce - remember when the real price was $300.00..,validation,negative,crazy,positive,excited,negative
"@user now we have a president who will be his pal it's sad and [MASK] Putin, Assad and Trump for Hague",test,negative,sick,positive,happy,negative
"@user How many actual voters went from liberals to supporting a RW neofascist because of ""[MASK] news"" or the Comey letter? None?",train,negative,fake,positive,good,negative
"If im in the club, i'll put my phone away & have fun, dance like [MASK] with justin. Unfortunately im not legal yet lol",train,negative,mad,positive,beautiful,negative
"I watched Federer calmly destroy a dude at the US Open on Thursday, and it was amazing. I still thought ""you're not [MASK] of this dude yet?""",test,negative,sick,positive,great,negative
@user That's asking a lot. That would mean a lot of Big East dominance and [MASK] NCAA MARCH runs. Bring it on!,validation,negative,late,positive,top,negative
There will be no wall on the border. Check this out & u'll see why:) @user Ur so fucking [MASK] trump!,train,negative,stupid,positive,real,negative
Just got him tickets to the Knicks vs Celtics game on October 20 Lmfao how [MASK] would he be ?,train,negative,mad,positive,cool,negative
"""I can clearly hear Foo Fighters playing the Milyon Keynes Bowl from my house. Crowds are cheering like [MASK], sounds great. Roll on tomorrow""",train,negative,mad,positive,full,negative
"""Paul Dunne is going to be so nervous tomorrow, awesome he's in that position though. Hope he has a chance to win [MASK] tomorrow!""",validation,negative,late,positive,excited,negative
@user I go to church every Sunday since I was little. I\u2019ve sinned\u002c but idk. Young Life is great but they have the [MASK] idea about,test,negative,wrong,positive,happy,negative
@user @user @user no hate in my heart! I don't like [MASK] people hypocrites who point there finger at others to gain $,train,negative,fake,positive,true,negative
during 7th sense audio launch Ramcharan said it is our [MASK] luck that a director like ARM didn't born in AP!and it created a riot among TFI!,train,negative,bad,positive,good,negative
@user you don't know ton like I do I suck his cock on a [MASK] Tuesday night with michelle Obama and Kenny's dad,validation,negative,late,positive,top,negative
"FrPavone: ""total number of deaths by capital punishment, for our entire history, is [MASK] than the number of deaths by abortion every 5days""",train,negative,less,positive,beautiful,negative
"Saturday, washing clothes, grocery shoppin', cleanin' out my LEXUS. As much as it cost, you bet I keep it clean, when able. Hate bein' [MASK]",test,negative,sick,positive,great,negative
"""Looks like we're getting the heaviest snowfall in five years tomorrow. Awesome. I'll never get [MASK] of winter.",train,negative,tired,positive,real,negative
"""This weekend on the Fair & Balanced network, Fox News Sunday's guests are [MASK] conservative Rick Perry and nutty conservative John Kasich.""",validation,negative,crazy,positive,excited,negative
"@user I know, but I have to drive to Summersville tomorrow and don't want it to be [MASK]. Lol. Start at go mart tomorrow at 10am""",train,negative,bad,positive,cool,negative
If you go down to history books of islam you will see that nothing like Boko Haram [MASK] jihad ever take place,train,negative,fake,positive,full,negative
If you are trying to pass off Thanksgiving Leftovers as Sunday Meals..you deserve an uppercut. We [MASK] of that shit now,train,negative,tired,positive,true,negative
Can't wait for @user tomorrow night in Binghamton NY! Really just wanna see how [MASK] the lights and people are gonna be :D #pumped,validation,negative,crazy,positive,top,negative
I could go see Jason Aldean for free tomorrow... But I'm not even trying to give homeboy the [MASK] impression cause he's already aggravatin,test,negative,wrong,positive,happy,negative
"""It's only the 4th minute but Eden Hazard already knows he made the [MASK] decision, hehe #MUFC #BPLonFOX""",test,negative,wrong,positive,great,negative
I'm going to claytons tomorrow morning but I'm too [MASK] to think about what I'm gonna wear. Looks like another ugly day with him. Oh well,train,negative,tired,positive,good,negative
Its the right time to vote harder and harder for gaga because tomorrow will be too [MASK] #MTVStars Lady Gaga,validation,negative,late,positive,excited,negative
Lovin the presidential debate Shea Weber just leveled Evgeni Malkin\u002c I may be on the [MASK] channel. z7hKP2Cd,test,negative,wrong,positive,happy,negative
Wish I was going to the rodeo tomorrow night with everyone :( [MASK] surgery,train,negative,stupid,positive,beautiful,negative
"@user for Medicare: ""I want a subjective, single solution for healthcare [MASK] enough that I'll threaten others w/ harm to force my will.""",train,negative,bad,positive,real,negative
@user Wednesday Adams is my spirit animal she only got that bitch face cause she [MASK] about her forehead,train,negative,mad,positive,cool,negative
@user You started with tweeting 'who cares' and this is so [MASK] bc i bet when Zayn will show us his 1st song/video you will care +,train,negative,stupid,positive,full,negative
"@user how the hell does every one else get to keep their religious and 1st amnt rights, except Christians!!! This is just [MASK]!!!""",test,negative,wrong,positive,great,negative
"@user @user @user I guess history treats slaves & liberals as [MASK] than one person, or the electoral college is working",train,negative,less,positive,true,negative
"@user She is entitled to her stance on gay marriage, but she may be in the [MASK] line of work now. She had ONE JOB.""",test,negative,wrong,positive,happy,negative
"""Wow, the Red Sox pitcher is the definition of """"On Tilt"""" here in the 10th. [MASK] how that balk happened.""",validation,negative,crazy,positive,top,negative
Edge of Tomorrow is literally Groundhog Independence Day. Though less [MASK] than that makes it sound.@LyndonMarquis,train,negative,stupid,positive,good,negative
I could have been asleep by eleven. Except I found m iPod.... I\u2019m going to be so [MASK] tomorrow.,train,negative,tired,positive,beautiful,negative
"@user Steve Bannon speaks: Donald Trump is ""master of the head [MASK]""",train,negative,fake,positive,real,negative
@user dancing round mate. Just shocking. You will have to try and find it on Internet tomorrow. Honestly [MASK] [MASK] [MASK] boxing,train,negative,bad,positive,cool,negative
Harper:NDP or Liberal Govt possible Harper's spirit broken [MASK] of so Much Hate against him of his own making Given up the ghost Peace MON,train,negative,tired,positive,full,negative
Donald Trump's response to the Charlie Hebdo shooting that took place in January just shows how ignorant and [MASK] he really is,train,negative,stupid,positive,true,negative
Watched The Vow for the 5th time and I\u2019m still tearing. What\u2019s [MASK] with this movie. It\u2019s tooo... omg i can\u2019t even.,test,negative,wrong,positive,great,negative
Man I'm so mad I knew it was Taylor the green meanie I was just hoping I was [MASK] 😭😭 #ScreamQueens,test,negative,wrong,positive,happy,negative
"""RT @user Really hoping tonite Lloyd Robertson will ask us to goto the window and yell \""""I'm [MASK] as hell and I'm not going to take ...""",train,negative,mad,positive,good,negative
"@user Also, Hillary may begin to give the perception that perhaps she may tend to allow herself to be portrayed as [MASK] than accurate.",train,negative,less,positive,beautiful,negative
@user Maby cuz u are sooo good at bowling and they are now scared from u :p They got [MASK] from u taking the 1st place everytime,test,negative,sick,positive,great,negative
@user It was fucked up/a mistake imo. We need more gun control and [MASK] fear and anger. PSAs like that just add to the paranoia.,train,negative,less,positive,real,negative
"""Fuckin """"Briana updates"""" bitch u may as well start an update account for your shit you so interested in some [MASK] ass """"baby mama""""""",train,negative,fake,positive,cool,negative
I just think that sports are stupid &anyone who likes them is a [MASK] person & has a small intellect- Amy Schumer,train,negative,less,positive,full,negative
They may be mean but I guess they're not [MASK]...free TED but you have to pay for Amy Schumer - most unimpressed.,train,negative,stupid,positive,true,negative
@user I was supposed to go to the 30 Rock on Monday so I could buy some NBC stuff\u002c but my brothers were [MASK] and we had to go home :(,train,negative,tired,positive,good,negative
2nd Coming: Will Blacks America Debate the 2012 Election #BET @user I\u2019m [MASK] of hearing ppl say POTUS haven\u2019t done anything 4 blks,train,negative,tired,positive,beautiful,negative
Why is it that people talk more about Caitlyn Jenner's sex change and [MASK] about how she killed a person and may face manslaughter charges?,train,negative,less,positive,real,negative
I hope Donald trump builds a wall and says EA MADDEN EMOLOYEES ARE [MASK] HOMBRES @user,train,negative,bad,positive,cool,negative
Just caught up on tonight's X Factor. Genius. Never fails to amuse. Never seen Dermot get [MASK] before - total respect for the guy,train,negative,mad,positive,full,negative
Driving from Milan to Lake Como tomorrow. Positively shitting it that I will go the [MASK] way round a roundabout.,test,negative,wrong,positive,happy,negative
@user of others...Jenelle may have made mistakes but she has time to change and be a better person...its too [MASK] for you...FUCKHEAD,validation,negative,late,positive,excited,negative
Gandhi protested successfully never once resorting to violence. People today make me [MASK] @user,test,negative,sick,positive,great,negative
I'm so mad Seth Rollins is going to talk so much tomorrow on raw kiwi fuck I'm so [MASK],train,negative,mad,positive,true,negative
"""Just move De Gea to Real Madrid, this world is [MASK]. Who cares about 23:59 just move him tomorrow please.""",validation,negative,crazy,positive,top,negative
"@user Ridiculous! ROOF deserve the Death penalty. Nothing more, Nothing [MASK].",train,negative,less,positive,good,negative
@user 3rd: Bad Blood won video of the year and she took all the women in the video up w her and said [MASK] shit,train,negative,stupid,positive,beautiful,negative
"""With the sun on your face, Dunkin, Anna Karenina & the music of @user how could anyone be in a [MASK] mood? #relaxation #selfcare""",train,negative,bad,positive,real,negative
Lamb of God is coming to town on the 12th!!!!!!!!!!!!!!!! #omg I\u2019m soooo excited XD I can\u2019t wait to get into the pit and go [MASK]! \m/,validation,negative,crazy,positive,excited,negative
Are the Canes the biggest losers in the Marlins Park deal? Losing the Orange Bowl = Not good for their program. [MASK] look at Sun Life.,train,negative,bad,positive,cool,negative
I'm going to claytons tomorrow morning but I'm too [MASK] to think about what I'm gonna wear. Looks like another ugly day with him. Oh well,train,negative,tired,positive,full,negative
It wouldn't make you feel shameful if there wasn't some part of you that knew it was [MASK]. Abortion is cruelty aga…,test,negative,wrong,positive,happy,negative
"David Cameron, The Sun and The Daily Mail make me physically [MASK].",test,negative,sick,positive,great,negative
Cofield should have hopped off the DM sticks after his 3rd year. Niggas was [MASK] of him lol,train,negative,tired,positive,true,negative
"@user And now the Pope who has forgiven annulments. I think his words were ""fuck and be fucked"" I may have translated that [MASK].",test,negative,wrong,positive,happy,negative
1st of all in my world theres only Good n evil! Real ppl n [MASK] mf\u2019s!This is why I really feel JLin won\u2019t make it!Not durable like Yao Ming!,train,negative,fake,positive,good,negative
I'm sad I feel like I'm going to get [MASK] seats tomorrow with my luck & idk if z100 called the ppl for who's going to sit on stage for shawn,train,negative,bad,positive,beautiful,negative
@user in regards to the masses of refugees this is [MASK]. Also when Muslims may take Greece. Real world [MASK] case scenarios are...,validation,negative,crazy,positive,top,negative
I have 2 tickets for Zac Brown Band this Saturday. Great seats just can't make it anymore. Gonna sell for [MASK] than what I paid. 6095139561,train,negative,less,positive,real,negative
"Ah yeah, but these are the *good* immigrants, nice well spoken white non-Muslim boys. Not [MASK] hombres.",train,negative,bad,positive,cool,negative
AC/DC tomorrow at Ford Field. Someone is going to be [MASK] on the second day of 6th grade. #butitshisfavoriteband \m/ \m/,train,negative,tired,positive,full,negative
"@user @user and she does now, more than mike ""conversion therapy"" pence. Keep deflecting your [MASK] candidate though",train,negative,bad,positive,true,negative
I'm so mad Seth Rollins is going to talk so much tomorrow on raw kiwi fuck I'm so [MASK],train,negative,mad,positive,good,negative
If anyone else seen it. I thought it was pretty [MASK] when Doug Baldwin was yelling at Russell Wilson during the game this Sunday.,train,negative,stupid,positive,beautiful,negative
@user @user They blame fake news 4 her loss? What about all the [MASK] news about Trump? Do they think it only hurts Dems?,train,negative,fake,positive,real,negative
"Insane Moore calls on Dems to do ""whatever needs to be done to stop this appointment."" This is ""third-world"" [MASK]",validation,negative,crazy,positive,excited,negative
Tell me the FIR No. first? @user @user Delhi Police under BJP may be [MASK] in this case,test,negative,wrong,positive,great,negative
I believe the snobish mainstream media\u002c ABC\u002c CBS\u002cNBC\u002c CNN\u002c MSNBC may get their comeupance this election. People r [MASK] of their bias!,test,negative,sick,positive,happy,negative
"@user cannot afford to go like @user in the 4th. Carter IV has to be great, anything [MASK] its a failure""",train,negative,less,positive,cool,negative
I have 2 tickets for Zac Brown Band this Saturday. Great seats just can't make it anymore. Gonna sell for [MASK] than what I paid. 6095139561,train,negative,less,positive,full,negative
.@JoyAnnReid @user what is nuanced about white supremacy? zero. white supremacists trying to head [MASK] non-bigots with false angst. 🙄,train,negative,fake,positive,true,negative
"@user I'd ask my roommate how he felt about the Spurs, but the answer would take til tomorrow morning. That sob got me [MASK] too!""",test,negative,sick,positive,great,negative
I could have been asleep by eleven. Except I found m iPod.... I\u2019m going to be so [MASK] tomorrow.,train,negative,tired,positive,good,negative
@user wrong. Friday - Rebecca black. Are you some special kind of [MASK]? Ugh,train,negative,stupid,positive,beautiful,negative
"@user Cubs win World Series, Cowboys are 11-1, bucs on SNF, trump is president. What more [MASK] shit will happen this year",validation,negative,crazy,positive,top,negative
@user @user Obama will continue to flood America with Muslims. It may be too [MASK] to stop the fall of America,validation,negative,late,positive,excited,negative
Excited to see the Foo Fighters today but cannot be arsed for getting back early hours of the morning and being [MASK] tomorrow,train,negative,tired,positive,real,negative
I can't believe people really like Sharknado enough for them to make a 3rd part. So [MASK].,train,negative,stupid,positive,cool,negative
Recep Tayyip Erdogan's Gamble May Not Solve Turkey Poll Impasse: [MASK] than five months after the last legislat...,train,negative,less,positive,full,negative
"""The Hulk Hogan story effectively ended by Friday afternoon. Instead of disappearing, Hogan going on defensive retweet spree. [MASK] PR move.""",train,negative,bad,positive,true,negative
"""Finally sat and watched it. David Bowie's #Blackstar is PERFECT. More of this, [MASK] of everything else.""",train,negative,less,positive,good,negative
What did Bobby Jindal say? Wait...NOOOOOOO! Why do I get the feeling the GOP pushed Trump out 1st so the typical GOP [MASK] will seem better?,validation,negative,crazy,positive,top,negative
"Donald Trump doesn't even know what the Quds force is--much [MASK] name its leader. Worth taking seriously, right?",train,negative,less,positive,beautiful,negative
@user Tell you at our Friday lunch<3 Sorry for the [MASK] reply but yes we can eat somewhere on Marshall tomorrow haha :D,validation,negative,late,positive,excited,negative
"""SIGH. Not really huge news in my opinion, but don't get me [MASK] I'm excited for Rousey & Holm in Australia and seeing it sooner than Jan 2.""",test,negative,wrong,positive,happy,negative
"@user FFS. He's probably sat crying in to his Real Madrid shirt with """"Samba 9"""" on the back asking where it all went [MASK].""",test,negative,wrong,positive,great,negative
"@user I'm seeing Ant-Man tomorrow. If it has an ant called Antony, and that ant dies, if this is a spoiler, I will be so [MASK] at you.""",train,negative,mad,positive,real,negative
And Thanksgiving Leftovers start Today. Ima be done with turkey by tomorrow. Get [MASK] of it.,train,negative,tired,positive,cool,negative
Absar is saying on ARY news that Parliament should do amendments so that EC may use the magnetic ink :) Is he [MASK]? LAANAT LAFAFA Sahafi,train,negative,mad,positive,full,negative
Oh Mehdi Hasan. Being anti abortion may not make you any [MASK] of a lefty but it does diminish you. And that's a shame.,train,negative,less,positive,true,negative
Announcer said Mine Stoops chagrined at 3rd down issues? How about pissed? OU dodged another one on Texas [MASK] snap.,train,negative,bad,positive,good,negative
@user People say u won\u2019t go to the Pro Bowl because of the play of the Bears CB\u2019s. How are you gonna prove them [MASK] on Sunday?!,test,negative,wrong,positive,happy,negative
I might just die if I hear one more person say that Halloween is the Devil\u2019s birthday. That\u2019s [MASK]!!!! I was born on May 19th.,validation,negative,crazy,positive,top,negative
@user it won\u2019t work for me because iPod but whatever I\u2019m honestly way too [MASK] to care I\u2019ll find it on tumblr tomorrow,train,negative,tired,positive,beautiful,negative
Wow. Tiger fires a 63 but not good enough. Nick Watney shoots a 59 if he birdies the 18th?!? #[MASK],test,negative,sick,positive,great,negative
So apparently Thor has a big surprise for me on Saturday and I can't wait to see what it is!!!! I'm dying I'm the most patient [MASK] person,train,negative,less,positive,real,negative
Environmental racism @user It's ok to reroute w/ SOME North Dakota people but not others? You know this is [MASK].,test,negative,wrong,positive,happy,negative
"""As a huge John Cena fan, him beating Seth Rollins to win his 16th World Heavyweight Championship is just [MASK]. @user reconsider.""",test,negative,wrong,positive,great,negative
"""Lots going on at Barca this weekend! Join us for a drink or two. Kicking off your Friday night, DJ on 7pm till [MASK]",validation,negative,late,positive,excited,negative
I start school tomorrow and I'm only going because I don't want Nicki to be [MASK] at me,train,negative,mad,positive,cool,negative
WOW. Conor McGregor with a 2nd round stoppage just as he predicted. He can't seem to go [MASK]. #believer #ConorMcGregor #ChadMendes #UFC189,test,negative,wrong,positive,happy,negative
Idk it's whatever. But if somebody went to a Shawn concert and got 4th row while I was stuck in the back and didn't know his name id be [MASK],train,negative,mad,positive,full,negative
"@user @user we all have ""personal life's"" with a story to tell! I dislike her [MASK] emotions & attitude",train,negative,fake,positive,true,negative
@user I just got back from Hawaii on Monday and I\u2019m feeling [MASK] too.,test,negative,sick,positive,great,negative
"@user @user yes, if you speak of europression, you must be a leftist, because all the true europeans are rightists (how [MASK])",train,negative,stupid,positive,good,negative
Grayson Allen murdered dozens of people in northern California in the [MASK] 1960s and early 1970s,validation,negative,late,positive,top,negative
@user whoever is narrating the trailer for #thisisus should be sacked! Silly c*w thinks saying 'thizizuz' is perhaps alluring! [MASK]!!,test,negative,wrong,positive,happy,negative
@user @user That's Ashley in the 1st pic not Briana but the pregnancy is still [MASK] af,train,negative,fake,positive,beautiful,negative
"MusicTimes> Beyonce - The audience at Saturday's 2015 Budweiser Made in America Festival fell ""[MASK] in Love"" with...",validation,negative,crazy,positive,excited,negative
Why is @user so scared of having John Cena winning his 16th title? It's just [MASK]!,train,negative,stupid,positive,real,negative
"@user funny guy you. But I know you can get a [MASK] id; however, it will cost you a lot more than that to fake a Voter Registration card",train,negative,fake,positive,cool,negative
"3-0 Lavezzi on fire w his 2nd goal. Too [MASK] he couldn't do it in World Cup or Copa America. Crowd still chanting ""Messi"" #Argentina #Bolivia",train,negative,bad,positive,full,negative
"""Tomorrow night: gonna try to do DMs to Austin Mahone, Cody Simpson, & Alli Simpson for the people that want them! (: [MASK] night though!""",validation,negative,late,positive,top,negative
@user @user I rather watch paint dry or stare at the sun. your show is 100% [MASK] like you Caitlyn Jenner. tsktskshameshame!,train,negative,fake,positive,true,negative
when you get stranded at school for half an hour because the bus is [MASK]... #TheWalkingDead,validation,negative,late,positive,excited,negative
Long day work\u002c G37 meet\u002c Marijuana March and Avengers. All [MASK] nonetheless.,test,negative,sick,positive,great,negative
"@user first it was @user funded protest now that's dying so bring on @user loser,I'm [MASK] of it . Trump won move on.",test,negative,sick,positive,happy,negative
@user EXPERIENCE the magic of Xmas simply by popping into The Range any time after [MASK] August Bank Holiday.,validation,negative,late,positive,top,negative
@user YOU BROKE THE US TRADE EMBARGO WITH CUBA AND BRAGGED ABOUT IT?!!! What is [MASK] with you? #trumpthecrook,test,negative,wrong,positive,great,negative
the fact that so many will vote for a socialist [MASK] liar for President is very very frightening and may bring America to ruin!,train,negative,fake,positive,good,negative
Wendy Williams sat there and literally made transphobic comments about Caitlyn Jenner and yet you don't see anything [MASK]??,test,negative,wrong,positive,happy,negative
"""Why it's great to go see Ant-Man in IMAX (or any movie, really), at the Tuesday [MASK] night showing.",validation,negative,late,positive,excited,negative
"@user So the fact that your grandparents where anti-fascists makes your ""lugenpresse""-husband [MASK] of a nazi? Amazing logic",train,negative,less,positive,beautiful,negative
I know that top politicians are sometimespedo-sadists #pizzagateI know that vaccines can have unsafe serumsI know fear makes people [MASK],validation,negative,crazy,positive,top,negative
Holy shit I've been playing Minecraft since Alpha 1.2 (Nov 2010). That is actually [MASK]. I *do not* want to know how many hours I've logged,validation,negative,crazy,positive,excited,negative
"And remember kids, riots, irrespective of them being backed by leftists, rightists, liberals (yes, they are extremists now), are [MASK]!",train,negative,bad,positive,real,negative
"@user Let Pelosi stay. She's the best thing that happened to the Rep Party. [MASK], ranting, confused women is perfect for the Dems. #MAGA",validation,negative,crazy,positive,top,negative
"Residents say: ""It's a blessing this didn't happen Labor Day with numerous people around. Most left [MASK] Monday.""",validation,negative,late,positive,excited,negative
Depending on your sensibilities\u002c Unofficially Yours may seem progressive or derivative. Too [MASK] the leads can\u2019t supply the heat it needed.,train,negative,bad,positive,cool,negative
@user Get rid of the old hag and her old men cohorts!!Pelosi is a [MASK] old woman that makes looney statements!,train,negative,tired,positive,full,negative
"""Biggie Smalls sounds SO good 1st thing in the morn. Still [MASK] but in a much better mood. *throw hands in the air, like I'm a true playa*""",train,negative,tired,positive,true,negative
Hollyweird addle minded & obtuse Kristen Bell & idiots like her are too [MASK] to know Nazi is the National Socialist Party. Run by Libs.,train,negative,stupid,positive,good,negative
IPad: *trends bc of iPhone announcement tomorrow* Real reason: the 1D Fandom [MASK] af and makes everything trend,validation,negative,crazy,positive,top,negative
I just got Calibraska and I know I may be a little [MASK] but it's amazing,validation,negative,late,positive,excited,negative
"""Then again away to see the Foo Fighters tomorrow, so it's no all [MASK].""",train,negative,bad,positive,beautiful,negative
Would you believe CNN wsnts to deny Carly Fiorina a spot in the ma8n September 16th 'debate.' Very [MASK] and [MASK],test,negative,wrong,positive,great,negative
I don't agree with Germany bailing out Greece for the 3rd time.Angela Merkel is retarded and this New World Order is a senseless [MASK] idea,train,negative,stupid,positive,real,negative
@user Magic Mike XXL. 4th time. If you think it's just about stripping.....you would be [MASK].....#YOURbeautyisenough,test,negative,wrong,positive,happy,negative
I rate Lee Dickson but Danny Care has to be on the bench sat for the 2nd test 60 mins with [MASK] legs he will be dangerous #rugby #saeng,train,negative,tired,positive,cool,negative
Chr @user Christians may have crazy beliefs but atheists are just [MASK],validation,negative,crazy,positive,top,negative
@user Get rid of the old hag and her old men cohorts!!Pelosi is a [MASK] old woman that makes looney statements!,train,negative,tired,positive,full,negative
"Lines you didn't expect to write: ""Steven Seagal signed his passport in front of Vladimir Putin at the Kremlin."" 2016 has been [MASK].",train,negative,mad,positive,true,negative
"If you voted for Donald Trump, you’re a special kind of [MASK] who just got screwed.",train,negative,stupid,positive,good,negative
Ironman Wales highlights on Channel 4 tomorrow morning at 6.35am. I hope there's no footage of me being [MASK] on the run!,test,negative,sick,positive,great,negative
@user @user michael ball is incredible 10th anniversary with him and colm is [MASK],test,negative,sick,positive,happy,negative
"@user How many actual voters went from liberals to supporting a RW neofascist because of ""[MASK] news"" or the Comey letter? None?",train,negative,fake,positive,beautiful,negative
"""Text from my dad: \""""""""you like Charles Dickens\"""""""" 1) obvs looking at my amazon wish list (too [MASK] for Sunday) 2) why th surprise?!""",validation,negative,late,positive,excited,negative
Watching bad reality television with Drew before he leaves for Georgia tomorrow. [MASK] reality TV...is that redundant? Haha #ILoveMyBestFriend,train,negative,bad,positive,real,negative
@user I was supposed to go to the 30 Rock on Monday so I could buy some NBC stuff\u002c but my brothers were [MASK] and we had to go home :(,train,negative,tired,positive,cool,negative
"""A no no, Kanye announces he's running for president, and nicki gets [MASK] with Miley all in the the same night.. It's Sunday wtf""",validation,negative,crazy,positive,top,negative
RT @user Gandhi protested for years never one resorting to violence or theft. People today make me [MASK] #londonriots,test,negative,sick,positive,great,negative
What\u2019s the odds of waking up in shotton on a Sunday morning in a gypsys caravan? [MASK] night!!!!,train,negative,mad,positive,full,negative
"""Have y'all ever just sat and listened to Frank Ocean's """"Crack Rock""""? The shit is [MASK] deep.""",train,negative,mad,positive,true,negative
This SATURDAY! Live stream to Japan! Mad sounds and fashion! Rasta wear!! Big up to the [MASK] Bob Marley!,validation,negative,late,positive,excited,negative
"@user Hi. I can't find the old episodes of #TheWalkingDead on Virgin on Demand anymore: have they gone, or am I looking [MASK]? 😊 ❤📺",test,negative,wrong,positive,happy,negative
@user that's like me being Christians and saying the religion of Islam is [MASK]. I may not agree with their practices but I still have,train,negative,stupid,positive,good,negative
Born in February close to Valentines. Through all the heart pains I still look for Love guess Imma always b [MASK],validation,negative,crazy,positive,top,negative
"""Congrats James Franklin...that was the dumbest call I've seen not only today but maybe ever. 4th & 11 [MASK] punt sweep, up 3 at midfield lol""",train,negative,fake,positive,beautiful,negative
"""Like Hulk Hogan more now. Don't need to boycott WWE either, I already boycott BS. Shame he may be purged from prestigious [MASK] wrestling HOF""",train,negative,fake,positive,real,negative
"I've been fan of @user for a while now but I'm just now hearing Robots, Pop Songs for the first time. WHATS [MASK] WITH ME? ITS SO GOOD",test,negative,wrong,positive,great,negative
"Lines you didn't expect to write: ""Steven Seagal signed his passport in front of Vladimir Putin at the Kremlin."" 2016 has been [MASK].",train,negative,mad,positive,cool,negative
Absar is saying on ARY news that Parliament should do amendments so that EC may use the magnetic ink :) Is he [MASK]? LAANAT LAFAFA Sahafi,train,negative,mad,positive,full,negative
"""George Osborne: """"Sun will never shine again if Corbyn elected."""" (Well, the Chancellor's defence comments are almost that [MASK]).""",train,negative,stupid,positive,true,negative
Tracy McGrady arrived in China on Wed after signing with Qingdao Eagles. His arrival at the airport was [MASK] -,validation,negative,crazy,positive,excited,negative
Watch ESPN tonight to see me burning @user for a [MASK] goal on the top ten. #realbackyardFIFA,test,negative,sick,positive,happy,negative
"""So, out on Friday @user listens to Nevermind by Nirvana the first time. What could possibly go [MASK]",test,negative,wrong,positive,great,negative
Cofield should have hopped off the DM sticks after his 3rd year. Niggas was [MASK] of him lol,train,negative,tired,positive,good,negative
@user Harper & cabal insult the intelligence of Canadians on a daily basis. [MASK] of all the lies & spin. Roll on Oct 19th! #auditthisPOS,train,negative,tired,positive,beautiful,negative
"Jeb Bush releasing tax reform plan tomorrow, Trump will say it is [MASK], Bush a moron. His plan: Make America great & put on top again,",train,negative,stupid,positive,real,negative
EMT 09/06/15 [krakatoa]: So when the high point of your Saturday is a chorizo omelette at IHOP for a [MASK] dinn...,validation,negative,late,positive,top,negative
"Say, Whaaaaaat? Sorry, but pedophiles cannot be rehabilitated, so why should they get anything [MASK] the death pena…",train,negative,less,positive,cool,negative
Apparently the Charlie Hebdo attacks and the Friday the 13th Massacre happened in the same neighborhood in Paris. [MASK] neighborhood?,train,negative,bad,positive,full,negative
2nd Coming: Will Blacks America Debate the 2012 Election #BET @user I\u2019m [MASK] of hearing ppl say POTUS haven\u2019t done anything 4 blks,train,negative,tired,positive,true,negative
Ironman Wales highlights on Channel 4 tomorrow morning at 6.35am. I hope there's no footage of me being [MASK] on the run!,test,negative,sick,positive,happy,negative
@user Get rid of the old hag and her old men cohorts!!Pelosi is a [MASK] old woman that makes looney statements!,train,negative,tired,positive,good,negative
"Low minimum wage, high prices, poor exchange rate, no light, [MASK] roads etc, etc",train,negative,bad,positive,beautiful,negative
Breaking news: Saudi Arabia bankruptcy now on the waywithin Feb for crude breakdown below @user for over supply and [MASK] consumption globally,train,negative,less,positive,real,negative
"""sun is rising and we're not tired, we'll be dancing on for days with [MASK] man. @user well done, got goosebumps, new fave song <3""",train,negative,mad,positive,cool,negative
"@user @user His birthday at start of March, may start saving now haha. Did wee btts double for tonight in Israel & [MASK] Belgium""",validation,negative,late,positive,excited,negative
I have a 5:30 shift tomorrow; it's my first back at Dunkin. and I cannot sleep. and I'm feeling a little [MASK]. great.,test,negative,sick,positive,great,negative
"""I'm going to bed after this last episode of Family Guy .. I've been hella [MASK], && I'ma get all the sleep I can stand in before Thursday""",train,negative,tired,positive,full,negative
@user Hey what's the status of Kina Grannis and her concert? If the rain is still this [MASK] we might not have a show tomorrow...,train,negative,bad,positive,true,negative
"@user He told me to tell you """"Thor may have the hammer, but I hit bombs - bring it"""" - the kid is [MASK]..",validation,negative,crazy,positive,top,negative
"So I know I'm late on this, but happy [MASK] 1st birthday Bentley!!! We love you!",validation,negative,late,positive,excited,negative
"If you're not starting your Sunday morning with Fleetwood Mac, you're doing it [MASK].",test,negative,wrong,positive,happy,negative
This is the first time someone has offered to watch The Notebook with me so I don\u2019t watch it alone for the 5th time..Too [MASK] it was my mom.,train,negative,bad,positive,good,negative
"@user funny guy you. But I know you can get a [MASK] id; however, it will cost you a lot more than that to fake a Voter Registration card",train,negative,fake,positive,beautiful,negative
March 1st is National Bieber Day ! Haterz u mad? Stay [MASK]. Haterz gon hate. We love the Biebs <3,train,negative,mad,positive,real,negative
@user @user That's Ashley in the 1st pic not Briana but the pregnancy is still [MASK] af,train,negative,fake,positive,cool,negative
"I'm far from being a Trump fan,but this is just [MASK].",train,negative,stupid,positive,full,negative
"""Hello Ashton. I may not be a crazy obsessed fan, but I really do like you. that literally just sounded [MASK] srry im so awkward @user",validation,negative,crazy,positive,top,negative
Idk how I feel about The Kandi Factory. Kinda cheesy? Yeah. This was a [MASK] first episode. Not good enough to be a Sunday night show.,train,negative,bad,positive,true,negative
As of 2nite it goes down at Big Bangs..15th and Arch st..10-2am...[MASK] drink specials and more....Music by,validation,negative,crazy,positive,excited,negative
Josh Hamilton was 4th on Rangers in Win Probability Added entering this game. He'll be 2nd by the end of the day. Just [MASK].,validation,negative,crazy,positive,top,negative
Heading back to greenville on monday! UGH WHY CANT TRAININGS BE IN COLUMBIA?! Im [MASK] of going to freakn greenville!!,train,negative,tired,positive,good,negative
Alright\u002c just woke up\u002c about to go ball. Open Lobby tonight and tomorrow\u002c going to be going for [MASK] 100+s! *cough* Desert Eagle *cough* ;),validation,negative,crazy,positive,excited,negative
"""Do more with less, George Osborne says with talk of 40% more cuts. You do [MASK] with less and guess who suffers?""",train,negative,less,positive,beautiful,negative
Took the day off work and treated babe to some Big Biscuit and saw Ant-Man. Some Monday's aren't too [MASK].,train,negative,bad,positive,real,negative
Recep Tayyip Erdogan's Gamble May Not Solve Turkey Poll Impasse: [MASK] than five months after the last legislat...,train,negative,less,positive,cool,negative
@user in sorry but my aunt listens to all Kpop and she never heard of ok now yea my fanbase may get [MASK] and start shit but this time,train,negative,mad,positive,full,negative
"""Sunday bests: PABH, Band of Skulls, Eagles of Death Metal, 2:54, The Horrors, Me First and the Gimme Gimmes and [MASK] Than Jake.""",train,negative,less,positive,true,negative
If you cant turn on Monday Night Raw and not get something out of it then something is [MASK] with you- Brock Lesnar #GOAT,test,negative,wrong,positive,great,negative
Eating spaghetti and watching Jurassic park on my Saturday night. Not even [MASK] about it. Great movie great food.,train,negative,mad,positive,good,negative
registering for my ACT\u2019s and SAT\u2019s at the last minute -____- I am so [MASK],train,negative,tired,positive,beautiful,negative
Gandhi protested successfully never once resorting to violence. People today make me [MASK] @user,test,negative,sick,positive,happy,negative
they were talking about the teen awards on Sunday and they mentioned ashton being [MASK] :(,test,negative,sick,positive,great,negative
"""If it seems to smb that I say about one band more pleasant things than about another so it means that I love 1st more than 2nd,you're [MASK].""",test,negative,wrong,positive,happy,negative
Rock im Park was beyond awesome. Need to write all the bands down that I've seen but I'm too [MASK]. Will do tomorrow. #goodnight,train,negative,tired,positive,real,negative
#sallyfields doesn't understand the electoral college.Instead of blabbing about your [MASK] opinions of Pres. Trump. go to Prather Univ.,train,negative,stupid,positive,cool,negative
"@user I will hear a U2 when I pass through the pearly gates. too [MASK] I'm not a Sunday school teacher, I'd teach that""",train,negative,bad,positive,full,negative
My family are listening to Justin Bieber and im just Sat here feeling a little [MASK],test,negative,sick,positive,great,negative
@user i just saw your tweet about Livin' On A Prayer from the 25th. I am so proud of you and [MASK] at twitter for not sharing sooner!,train,negative,mad,positive,true,negative
@user @user aaah ...1st fixture list i saw earlier had Valencia and Sevilla in the same half as Atleti ...must've been [MASK],test,negative,wrong,positive,happy,negative
Im going to be the Black Dahlia tomorrow and no ones going to get it because everyone is [MASK].,train,negative,stupid,positive,good,negative
Listening to old school Madonna before heading out for a Friday night in Brisbane with a [MASK] Italian #cherish #Madonna,train,negative,mad,positive,beautiful,negative
#SalmanBeingIgnorant Yakub's hanging may be shadowy but what concern is the people who actually planted the bomb got [MASK] punishment,train,negative,less,positive,real,negative
"@user you have a big trouble if you think that I'm a nazi only bc I said ""shut up"", you [MASK]",train,negative,stupid,positive,cool,negative
@user an Egyptian source which only says it's considered false. There have been videos also perpetuating Friday's Eid as [MASK].,test,negative,wrong,positive,great,negative
Cofield should have hopped off the DM sticks after his 3rd year. Niggas was [MASK] of him lol,train,negative,tired,positive,full,negative
"""your war/bombing zones, lets loose psychopaths on the world, some of whom may attack you back. Look at the IRA - it started out not that [MASK]""",train,negative,bad,positive,true,negative
You should name your chins bad hombres. There your worst enemy right? There are [MASK] hombres out there under my chin…,train,negative,bad,positive,good,negative
If you are trying to pass off Thanksgiving Leftovers as Sunday Meals..you deserve an uppercut. We [MASK] of that shit now,train,negative,tired,positive,beautiful,negative
"""Another away victory for Milan, now in 6th position and Coppa Italia quarter finals. Not [MASK].....Mihalovic we the fans want more!""",train,negative,bad,positive,real,negative
"Today, September 8th, is Bernie Sanders' birthday. He's 74. Love him or hate him, I think you have to give him [MASK] props. Happy Birthday B!",train,negative,mad,positive,cool,negative
AMintheAM #GOP2016 - Loser of the Week Rick Perry : Not paying staff + polling at 1% or [MASK] = 1st to drop out?,train,negative,less,positive,full,negative
So today we think @user r going to complete their draft to destroy #ecigs & Ashton is officially reinstated. Happy Friday guys. #[MASK],test,negative,sick,positive,happy,negative
debating on skipping class tomorrow bc I don't wanna deal with all the [MASK] people bc Obama,validation,negative,crazy,positive,top,negative
James Franklin one ups Mark Dantonio in the bad play calling department by calling a [MASK] punt on 4th and 11 #UMvsPSU,train,negative,fake,positive,true,negative
The YA Summer Reading Club ends on August 18. Register and record your books to earn cool prizes before it's too [MASK]!,validation,negative,late,positive,excited,negative
"""Arnez J @user sold out the Houston Improv last night and put a [MASK], brilliant, side-splitting performance! He's here til Sunday!""",validation,negative,crazy,positive,top,negative
People here get mad when their packages arrive late but people in Aleppo get [MASK] when homes are destroyed and family killed. #perspective,train,negative,mad,positive,good,negative
Erdogan is bringing the country to disaster. Hope Turkish voters will be able to disavow his [MASK] policies on 1 Nov.,validation,negative,crazy,positive,excited,negative
If someone wants to take me to the Sam smith concert in October I wouldn't even be [MASK],train,negative,mad,positive,beautiful,negative
If you are not entertained when turning WWE on a Monday night then there's something [MASK] with you. - Brock Lesnar. I agree.,test,negative,wrong,positive,great,negative
"""sun is rising and we're not tired, we'll be dancing on for days with [MASK] man. @user well done, got goosebumps, new fave song <3""",train,negative,mad,positive,real,negative
I\u2019m mad that I haven\u2019t changed the channel. I\u2019ve actually watched 3 episodes of Stevie TV & every time I get [MASK] at myself for watching it!,train,negative,mad,positive,cool,negative
"""Just saw my 1st idk what you call it, but this woman was screaming @ Dunkin' Donuts & recroding them on her phone. Looks [MASK] in real life.""",validation,negative,crazy,positive,top,negative
Rob Brantly did what ALOT of White Sox have not been able to do. Runner on 3rd [MASK] than 2 outs and he brings him home with a sacrifice fly,train,negative,less,positive,full,negative
Won't be able to see @user 's new video with Skylynn until tomorrow now that I have to go to sleep cause I have [MASK] college tomorrow,train,negative,stupid,positive,true,negative
It feels like everything is about to fall through for Friday:/ Danica has been [MASK].. Megan is [MASK].. And... This stinks,test,negative,sick,positive,happy,negative
Rock im Park was beyond awesome. Need to write all the bands down that I've seen but I'm too [MASK]. Will do tomorrow. #goodnight,train,negative,tired,positive,good,negative
@user @user Bollocks .... then there's Ian Brady & Myra Hindley. Some [MASK] hombres from that city. See what I did there?,train,negative,bad,positive,beautiful,negative
"""Sooo just seen somewhere that Kanye west wants to run for president, I sincerely hope that's just an extremely [MASK] April fools....""",validation,negative,late,positive,excited,negative
Evidently @user dramatic gain of about 1k followers in 9 days is not organicDid he buy [MASK] followers?…,train,negative,fake,positive,real,negative
K Im done lookin at Nicki Minaj's titties for 2nite..Found someone to skype with! Smiles for those [MASK] night Skype sessions.GOD BLESS WOMEN,validation,negative,late,positive,top,negative
@user @user @user Nazis? You mean the alt-rightists? The people [MASK] of you generalizing them? that's what...,train,negative,tired,positive,cool,negative
It feels like everything is about to fall through for Friday:/ Danica has been [MASK].. Megan is [MASK].. And... This stinks,test,negative,sick,positive,great,negative
i always cry wen i listen to Avril singing Tomorrow in Dublin\u002ci just remember everything [MASK] happened to me :/,train,negative,bad,positive,full,negative
1st mobile test / supply complete! Mrs H was v happy with her Gucci's at [MASK] than the high st price. Book in #Lancashire @user,train,negative,less,positive,true,negative
July 21 2015: there is another unwarranted official holiday in Pakistan although three days of Eid are gone. a [MASK] decision by the govt.,test,negative,wrong,positive,happy,negative
"""Looks like we're getting the heaviest snowfall in five years tomorrow. Awesome. I'll never get [MASK] of winter.",train,negative,tired,positive,good,negative
Cofield should have hopped off the DM sticks after his 3rd year. Niggas was [MASK] of him lol,train,negative,tired,positive,beautiful,negative
"""I'm taking my death tomorrow, Kpop fans make me [MASK]""",train,negative,mad,positive,real,negative
Why the hell did Randy Orton RKO the air for? WTF is he [MASK],validation,negative,crazy,positive,excited,negative
Finally broke down and got Amazon Prime and the delivery on my 1st purchase as a member is [MASK]. @user I was expecting better.,validation,negative,late,positive,top,negative
"""New Star Wars out tomorrow, new David Bowie album in a few weeks. We're back in the [MASK] 70s & early 80s again! #excited""",validation,negative,late,positive,excited,negative
"""literally, i'll have to sprint out to the luas and sprint home thursday night coz i'll be [MASK] to see celebrity big brother""",train,negative,mad,positive,cool,negative
"""Should I even bother with the TCA tonight, or is Justin fucking Bieber and [MASK] ass Twilight going to win EVERYTHING?""",train,negative,stupid,positive,full,negative
"@user Steve Bannon speaks: Donald Trump is ""master of the head [MASK]""",train,negative,fake,positive,true,negative
"""hi Nicki u famous n I know, but ama keep it short. I love u dearly, though u n d world may think am [MASK] cos De say I write blindly.""",validation,negative,crazy,positive,top,negative
#NoDAPL #CorporateGreed #corporations are #evil especially the media #corporations #tpp #TrumpTrain #bravo #cnn #foxnews #soulless #[MASK] 😣,test,negative,wrong,positive,great,negative
Evidently @user dramatic gain of about 1k followers in 9 days is not organicDid he buy [MASK] followers?…,train,negative,fake,positive,good,negative
@user you don't know ton like I do I suck his cock on a [MASK] Tuesday night with michelle Obama and Kenny's dad,validation,negative,late,positive,excited,negative
"@user @user His birthday at start of March, may start saving now haha. Did wee btts double for tonight in Israel & [MASK] Belgium""",validation,negative,late,positive,top,negative
"""Going to see Annabelle with my mate, only just realised it's incredibly [MASK] of me cause I'm home alone tonight and tomorrow night :( ahhh""",train,negative,stupid,positive,beautiful,negative
Jason Russell's breakdown may is a result of the overdose of the red color. When i look at the KONY signs i start to feel [MASK] @user,test,negative,sick,positive,happy,negative
I believe the snobish mainstream media\u002c ABC\u002c CBS\u002cNBC\u002c CNN\u002c MSNBC may get their comeupance this election. People r [MASK] of their bias!,test,negative,sick,positive,great,negative
"@user @user she said she was a hostage to big [MASK] Trump for over a year. Wtf, PC would be not calling her on her crap",train,negative,bad,positive,real,negative
they were talking about the teen awards on Sunday and they mentioned ashton being [MASK] :(,test,negative,sick,positive,happy,negative
I attended Tulo's final game in a Rockies uniform tonight. And witnessed a Kris Bryant walk-off homer. Not a [MASK] Monday.,train,negative,bad,positive,cool,negative
"@user o_O Well, (un)fortunately, you'll prob need at least one of those if you come to London in [MASK] Oct.!""",validation,negative,late,positive,excited,negative
People here get mad when their packages arrive late but people in Aleppo get [MASK] when homes are destroyed and family killed. #perspective,train,negative,mad,positive,full,negative
#Khader Exists Israeli high court will hear case of Khader Adnan on Thursday. That may well be too [MASK]. Where are the protests?,validation,negative,late,positive,top,negative
"""Good morning, Nerds. For good or bad, for the best or the [MASK]: Today is STAR WARS Day! May the force be with you.""",train,negative,bad,positive,true,negative
"@user May I also say that before you attack me for being a '[MASK] fan' of some sorts Nirvana , Green Day and MCR-""",train,negative,fake,positive,good,negative
@user you may be right he was innocent.If Levinson [MASK] enough to spy on Iran about cigarette smuggling then the guy is a retard,train,negative,stupid,positive,beautiful,negative
@user I miss u to & I loved it .. Ctfu I\u2019m soo [MASK] the dj didn\u2019t play that last night .. We better be going to ricks cafe tomorrow,train,negative,mad,positive,real,negative
#SalmanBeingIgnorant Yakub's hanging may be shadowy but what concern is the people who actually planted the bomb got [MASK] punishment,train,negative,less,positive,cool,negative
"""Looks like we're getting the heaviest snowfall in five years tomorrow. Awesome. I'll never get [MASK] of winter.",train,negative,tired,positive,full,negative
Happy Goodwill Wednesday! I almost forgot what day it was. [MASK] Labor Day weekend has me all jacked up....,train,negative,stupid,positive,true,negative
3rd wheeling with Jess and Sophie tonight to go see Paper Towns. I can see this going [MASK],test,negative,wrong,positive,great,negative
"""Really hoping tonite Lloyd Robertson will ask us to goto the window and yell \""""I'm [MASK] as hell and I'm not going to take it anymore!\"""" #Lloyd""",train,negative,mad,positive,good,negative
"""Watching 50 Shades of Grey for the 1st time... it's SO [MASK]. Like """"Twilight,"""" if Edward were a shitty Dom and Bella was... well, still vapid.""",train,negative,bad,positive,beautiful,negative
the fact that so many will vote for a socialist [MASK] liar for President is very very frightening and may bring America to ruin!,train,negative,fake,positive,real,negative
Brilliant 85 mins for @user in the Mersey derby. Not a [MASK] game for 1st goal....,train,negative,bad,positive,cool,negative
@user It was fucked up/a mistake imo. We need more gun control and [MASK] fear and anger. PSAs like that just add to the paranoia.,train,negative,less,positive,full,negative
"""Sorry gang, 2nd Act of Ant-Man just kills my buzz. SO BORING and the writing is REALLY [MASK]. I'm hoping this stuff wasn't in Wright's script.""",train,negative,bad,positive,true,negative
ordered my back pack off of Amazon 3 weeks ago and it turns out they lost my package and school starts tomorrow #[MASK],test,negative,sick,positive,happy,negative
"""Fuckin """"Briana updates"""" bitch u may as well start an update account for your shit you so interested in some [MASK] ass """"baby mama""""""",train,negative,fake,positive,good,negative
I just saw a 3rd grader talking on her I phone 6... Wtf is [MASK] with this world. I would be lucky to have a Nokia in 3rd grade...,test,negative,wrong,positive,great,negative
"I've seen too many videos on the dog meat trade and animal testing lately. Humans are [MASK]. Do your research, please 🐶🐱",test,negative,sick,positive,happy,negative
"""If a women rule the world there won't be any corruption"" - Someone [MASK] said - (Like Michael Moore)",train,negative,stupid,positive,beautiful,negative
@user @user Its a waste of taxpayer money and just makes her look bitter and [MASK]. Thus the #draintheswamp mentality.,train,negative,stupid,positive,real,negative
@user Erdogan won't appoint Kilicdaroglu until Saturday. Afterwards it will already be too [MASK] for a new round of negotiations!,validation,negative,late,positive,excited,negative
The Eight Day of the week: Sarah G. Day!! Where you can party party\u002claugh\u002cdance and go [MASK]! #SarahGLive on Sunday guys:),validation,negative,crazy,positive,top,negative
Angela Merkel says border controls may have to be restored It's a pity she didn't listen before it was too [MASK].,validation,negative,late,positive,excited,negative
the brouis baby may be rotting in briana's womb by now. somebody should check it before someone finds out the pregnancy thing is [MASK].. oops,train,negative,fake,positive,cool,negative
Failing IBM services ruining my Saturday. 10 minute test going on almost 3 hours now. And I am mildly hungover and [MASK]...,train,negative,tired,positive,full,negative
@user @user @user yup. then we have the strawberry festival in [MASK] Feb/early Mar. it\u2019s FL. :-),validation,negative,late,positive,top,negative
NBA playoffs TODAY!!!!!! the Heat Vs Knicks series is going to be [MASK]! luckily #celticnation don\u2019t play till sunday LETS GO CELTICS!!!!,validation,negative,crazy,positive,excited,negative
I\u2019m listening to the a capellas of The 2nd Law and appreciating how [MASK] ass Bellamy is. Not that I didn\u2019t already know from his other albums,train,negative,bad,positive,true,negative
"""Thanksgiving, Christmas, St Patrick's Day, Memorial Day, and July 4th are the only good holidays. Every other one is [MASK].""",train,negative,stupid,positive,good,negative
@user toooo excited for you to play tomorrow at Bluesfest its [MASK]. Ill be wearing a fuck ton of glow sticks.,validation,negative,crazy,positive,top,negative
The dumbest among us believe this baseless propaganda that has [MASK] foundation than anything Alex Jones ever put ou…,train,negative,less,positive,beautiful,negative
"""I had a feeling Cassadee Pope would be at House Of Blues today. Too [MASK] she couldn\u2019t do \""""""""Remembering Sunday\"""""""" with ATL""",train,negative,bad,positive,real,negative
If you go down to history books of islam you will see that nothing like Boko Haram [MASK] jihad ever take place,train,negative,fake,positive,cool,negative
"Anyway, I'm gonna make something in Minecraft for #TCMParty's 4th anniversary. Hold on, though; my [MASK] PS3 is updating. Again.",train,negative,stupid,positive,full,negative
Recep Tayyip Erdogan's Gamble May Not Solve Turkey Poll Impasse: [MASK] than five months after the last legislat...,train,negative,less,positive,true,negative
|