Link to this notebook uploaded on Colab
Github Repository for Sentimental Keywords
Python environment should be Python 3.6
# !pip install -U pip setuptools wheel
# !pip install -U spacy
# !python -m spacy download en_core_web_sm
# !pip install textblob tweepy matplotlib nltk python-dotenv demoji pandas numpy tweet-preprocessor sklearn wordcloud seaborn tensorflow keras seaborn pyLDAvis
# !python -c "import nltk;nltk.download('vader_lexicon')"
# !pip install torch==1.10.2+cu113 torchvision==0.11.3+cu113 torchaudio===0.10.2+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
from textblob import TextBlob
import sys,os,time
import tweepy
import matplotlib.pyplot as plt
import json
from dotenv import dotenv_values
import demoji
import pandas as pd
import numpy as np
import preprocessor as pp
import re
import spacy
from spacy.tokenizer import Tokenizer
from spacy.lang.en import English
from nltk.stem import PorterStemmer
from nltk.stem.snowball import SnowballStemmer
from nltk.tokenize import word_tokenize
from IPython.display import clear_output
# from tqdm import tqdm
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.pipeline import Pipeline
# Multinomial Naive Bayes
from sklearn.naive_bayes import MultinomialNB
# Gausian Naive Bayes
from sklearn.naive_bayes import GaussianNB
# Categorical Naive Bayes
from sklearn.naive_bayes import CategoricalNB
# Bernoulli Naive Bayes
from sklearn.naive_bayes import BernoulliNB
# K-Nearest Neighbors
from sklearn.neighbors import KNeighborsClassifier
# SVM
from sklearn.svm import SVC
# Linear Model
from sklearn.linear_model import LogisticRegression
from sklearn.linear_model import SGDClassifier
# Grid Search
from sklearn.model_selection import GridSearchCV
# Random Forest
from sklearn.ensemble import RandomForestClassifier
from sklearn.base import BaseEstimator, TransformerMixin
from sklearn.neural_network import MLPClassifier
from sklearn.model_selection import train_test_split
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.metrics import accuracy_score, confusion_matrix, classification_report, f1_score, precision_score, recall_score
import seaborn as sns
from keras.models import Sequential
from keras.layers import Dense, Embedding, LSTM, SpatialDropout1D, Bidirectional
from keras.preprocessing.text import Tokenizer
from keras.preprocessing.sequence import pad_sequences
from keras.utils.np_utils import to_categorical
from IPython.display import display, Markdown
import threading
from sklearn.model_selection import StratifiedKFold
from nltk.sentiment.vader import SentimentIntensityAnalyzer
from wordcloud import WordCloud, STOPWORDS
from PIL import Image
import warnings
import torch
import torch.nn.functional as F
import torch.nn as nn
from keras.preprocessing.text import Tokenizer
from keras.preprocessing.sequence import pad_sequences
from sklearn.preprocessing import LabelEncoder
from sklearn.decomposition import LatentDirichletAllocation
from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer
import pyLDAvis
import pyLDAvis.sklearn
pyLDAvis.enable_notebook()
# tqdm.pandas(desc='Progress')
warnings.filterwarnings("ignore")
def printmd(string):
display(Markdown(string))
Our strategy for data collection from twitter was to use an inclusive search term, which comprises of obvious keywords such as #EXPO2020 and some specialised keywords to retrieve more unique tweets. Using an environment file to store our twitter API keys for security purposes and establishing a connection with the twitter API, we then used the BeautifulSoup library to scrape Wikipedia so we can retrieve a list of all pavillions being exhibited at the Expo.
We then found a Github Repository of sentiment keywords containing both positive and negative sentiments. The list of approximately 2000 words enabled us to better filter out spam and unrelated tweets. Apart from Expo2020, DubaiExpo, UAEEXPO, DubaiExpo2020 and UAEEXPO2020, our search term included the names of Expo Pavillions and the sentiment keywords. This search term would fetch tweets with the specific keywords, or fetch tweets with the names of Expo Pavillions which contained sentimental keywords. This approach would retrive tweets with the keywords either present in the text of the tweet or as a #, it also filtered mutiple unrelated, spam tweets and enabled tweets only in the english language to be retrieved.
The usage of the filter option enabled us to filter out retweets so we can get more unique tweets and the option of using 'extended' mode gave us the entire tweet instead of just the characters up until a certain limit. To ensure all filtering of media we would only store the full text and # of a tweet, thus non of our tweets contain any sort of media such as audios, videos, photos or gifs.. The issue however was that the twitter API would have a limit of 1000 tweets per 15 minutes so after fetching 1000 tweets, our code would halt for 15 minutes before continuing to fetch tweets and storing them in a .json file. In the end we have a corpus of 95,000 tweets which once filtered gave us a corpus of 3854 tweets to label.
# Importing the keys #
config = dotenv_values(".env")
consumerKey = config['API_KEY']
consumerSecret = config['API_KEY_SECRET']
accessToken = config['ACCESS_TOKEN']
accessTokenSecret = config['ACCESS_TOKEN_SECRET']
# Establish the connection with API #
auth = tweepy.OAuthHandler(consumerKey, consumerSecret)
auth.set_access_token(accessToken, accessTokenSecret)
api = tweepy.API(auth,wait_on_rate_limit=True)
NoOfTerms = 10000
'''
Code to fetch and process the names of the pavillions from the
wikipedia page for Expo 2020.
'''
from bs4 import BeautifulSoup
import requests
import re
tables_data = []
html_content = requests.get("https://en.wikipedia.org/wiki/Expo_2020").text
soup = BeautifulSoup(html_content, "html")
tables = soup.findAll('table')
for table in tables:
data = []
table_body = table.find('tbody')
rows = table_body.find_all('tr')
for row in rows:
cols = row.find_all('td')
cols = [ele.text.strip() for ele in cols]
cols = [re.sub(r'\[.*\]', "", e) for e in cols]
if len(cols) > 0:
data.append(cols[0]) # Get rid of empty values
tables_data.append(data)
pavilions = tables_data[1]
pavilions = [ f"({pavilion} pavilion)" for pavilion in pavilions]
json.dump(pavilions, open('pavilions.json', 'w'))
# read the jumbled keywords from the file keywordsJumbled.json and save it into an array
with open('keywordsJumbled.json') as json_file:
keywordsJumbled = json.load(json_file)
with open('pavilions.json') as json_file:
pavilions = json.load(json_file)
# So we are getting 1000 tweets for 5 keywords at once
sIndex = 0
fileO = "tweets.json"
with open(fileO, 'a') as outfile:
outfile.write("[")
counterForTweetsFetched = 0
for j in range(0, len(pavilions), 5):
for i in range(3392, 5088, 5): # index goes here
searchTerm = f"(Expo2020 OR DubaiExpo OR UAEEXPO OR DubaiExpo2020 OR UAEEXPO2020 OR {' OR '.join(pavilions[j:j+5])}) ({' OR '.join(keywordsJumbled[i:i+5]).replace('-','')}) -filter:retweets"
tweepyTweetsGen = tweepy.Cursor(
api.search_tweets,
q=searchTerm,
tweet_mode='extended',
lang="en").items(NoOfTerms)
tweets = []
while(1):
if (counterForTweetsFetched == 1000):
counterForTweetsFetched = 0
time.sleep(960)
try:
tweet = next(tweepyTweetsGen)
counterForTweetsFetched += 1
tweets.append({
"body": tweet.full_text,
"tags": keywordsJumbled[i:i+5],
"countries":pavilions[j:j+5]
})
except tweepy.TooManyRequests:
counterForTweetsFetched = 0
time.sleep(960)
continue
except :
break
print(j,i,len(tweets))
if(tweets):
with open(fileO, 'a') as outfile:
output = json.dumps(tweets)
outfile.write(output[1:-1])
outfile.write(",")
with open(fileO, 'a') as outfile:
outfile.write("{}]")
Below we are showing the raw tweets we have collected and show it as a dataframe
# read final_tweets.json
with open('final_tweets.json', encoding="utf8") as f:
data = json.load(f)
df_unlabeled = pd.DataFrame.from_dict(data)
df_unlabeled
| body | countries | tags | |
|---|---|---|---|
| 0 | Wow, this gonna be an awesome performance. \n#... | NaN | NaN |
| 1 | We are excited to welcome @issfjo as a communi... | NaN | NaN |
| 2 | #DubaiExpo2020 \nVisit 🇿🇼 #zimpavilion #expo2... | NaN | NaN |
| 3 | Recognition is priceless! #reemalhashimy #expo... | NaN | NaN |
| 4 | Mr. Parag Ghosh, Founder & CEO of Auspice ... | NaN | NaN |
| 5 | Will be sharing my thoughts at the Rwanda Busi... | NaN | NaN |
| 6 | #IweWosvora\n\n#Zimbabwe’s healthcare system h... | NaN | NaN |
| 7 | “We built a city, and then we lent it to @expo... | NaN | NaN |
| 8 | 15 Places You Must Visit In the World 🌎 | BBI ... | NaN | NaN |
| 9 | At GTR MENA 2022, @FABConnects @OxfordEconomic... | NaN | NaN |
| 10 | Catch a recap on https://t.co/iKOHLUidUv and j... | NaN | NaN |
| 11 | We had such a wonderful time seeing all of you... | NaN | NaN |
| 12 | @Annamartling at @karolinskainst and Ebba Hall... | NaN | NaN |
| 13 | Certainly not to be missed if you are part of ... | NaN | NaN |
| 14 | The Malaysian Rubber Council is showcasing mad... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 15 | District 2020 - the planned legacy of resident... | NaN | NaN |
| 16 | After a great Rwanda National day at #expo2020... | NaN | NaN |
| 17 | Come and Join us on saturday 5th february at 7... | NaN | NaN |
| 18 | Genomics Medicine Conference \nBreakthroughs &... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 19 | #DubaiInteriors supply gorgeous and luxurious ... | NaN | NaN |
| 20 | At #RisalaFurniture, you will find widest rang... | NaN | NaN |
| 21 | What an incredible January with various meetin... | NaN | NaN |
| 22 | Read more: https://t.co/OUBGbXRe0q\n\n#MTC #Ma... | NaN | NaN |
| 23 | CEO Clubs Network is proud to announce its Cou... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 24 | #CarpetsDubai provide best quality #vinyl #Ski... | NaN | NaN |
| 25 | At #InteriorDubai #Kazak #Rugs are highly affo... | NaN | NaN |
| 26 | New Dubai Vlog Check it out here 👇\n\n#dubai #... | NaN | NaN |
| 27 | At #VinylFlooring , #Vinyl #CarpetTiles Dubai ... | NaN | NaN |
| 28 | Basically a fancy spaza shop with no aircon th... | NaN | NaN |
| 29 | “Champions have a way of making things happen ... | NaN | NaN |
| 30 | #ParquetFlooring supply appealing and noticeab... | NaN | NaN |
| 31 | There are countless experiences across this la... | NaN | NaN |
| 32 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | NaN | NaN |
| 33 | India’s beautiful oral music tradition lives o... | NaN | NaN |
| 34 | It is always your next move!\n#businessadvisor... | NaN | NaN |
| 35 | 🔵⚪ From 28 February, the enfant terrible of fa... | NaN | NaN |
| 36 | VIP entrance at the Morocco pavilion at Expo 2... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 37 | 🚇 Until 21 February, dive into the pharaonic #... | NaN | NaN |
| 38 | 🍳 From 10 to 22 February, meet on the esplanad... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 39 | The spaces of the future must be designed with... | NaN | NaN |
| 40 | Today's the day! As #Expo2020's Health and Wel... | NaN | NaN |
| 41 | Mr. Bhushan Chhajed, Founder of Khetiwalo Orga... | NaN | NaN |
| 42 | Committed to enhancing the health & well-b... | NaN | NaN |
| 43 | Rukan 2 Lofts from #Reportage_Real_Estate \nA ... | NaN | NaN |
| 44 | Project: UAE Pavilion, @expo2020dubai\nhttps:/... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 45 | Haider Tuaima, Head of Real Estate Research sp... | NaN | NaN |
| 46 | Everything you desire and more is yours for th... | NaN | NaN |
| 47 | Alain Ebobissé, CEO, Africa50, will be speakin... | NaN | NaN |
| 48 | Mr. Shubham Dungarwal, Director - Gfarms Pvt L... | NaN | NaN |
| 49 | The Pakistan Pavilion Cordially invites you fo... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 50 | @PascalMurasira, Managing Director, Norrsken E... | NaN | NaN |
| 51 | If there is just one African exhibition you mu... | NaN | NaN |
| 52 | Egypt used stunning audio-visual screens and r... | NaN | NaN |
| 53 | @VusiThembekwayo, CEO, MyGrowthFund Venture, w... | NaN | NaN |
| 54 | Weak disease labels classify diseases for 3 or... | NaN | NaN |
| 55 | Gooooood Morning ☀️💛💟💛☀️\n\n#NFT #NFTs #NFTcom... | NaN | NaN |
| 56 | #ArtficialGrassDubai provide #Artificial grass... | NaN | NaN |
| 57 | Join us for the long-awaited #SpainDay at #Exp... | NaN | NaN |
| 58 | #InterTalk’s Encompass Mobile Dispatch Console... | NaN | NaN |
| 59 | If you are planning to visit #Expo2020 Dubai, ... | NaN | NaN |
| 60 | Join #SAPServices on-site at SAP House Dubai i... | NaN | NaN |
| 61 | Today we are excited to celebrate Spain 🙌\nDo... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 62 | @Shivonbk1, Managing Director, Babyl Health Rw... | NaN | NaN |
| 63 | Expo 2020 Dubai is a fantastic opportunity to ... | NaN | NaN |
| 64 | @mreazi, Founder and CEO, Zagadat Capital, and... | NaN | NaN |
| 65 | Amb. @YKaritanyi, CEO, Rwanda Mines, Petroleum... | NaN | NaN |
| 66 | Dubai Freelance visa / all kind of family visa... | NaN | NaN |
| 67 | Expo 2020 Dubai is to showcase the innovations... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 68 | Join #SAPServices on-site at SAP House Dubai i... | NaN | NaN |
| 69 | It was a wonderful day in the Saudi pavilion 🇸... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 70 | Morning 🇦🇪\n\n#Expo2020 https://t.co/Ve4wZ9LXrD | NaN | NaN |
| 71 | @Rohshan_Din @MARIA_hunzai @parveen_mehnaz @al... | NaN | NaN |
| 72 | @Rohshan_Din @MARIA_hunzai @parveen_mehnaz @al... | NaN | NaN |
| 73 | #Expo2020 \n\nStop war on #Yemen https://t.co/... | NaN | NaN |
| 74 | Presents full product line to show the technol... | NaN | NaN |
| 75 | Lets take a tour with this unique Expo Explore... | NaN | NaN |
| 76 | 3/3 Since its debut,the Rdn pavilion at #Expo2... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 77 | Prof. Dr. Milo Puhan from @UZH_ch shared with ... | NaN | NaN |
| 78 | A lovely day at #expo2020 #Dubai https://t.co/... | NaN | NaN |
| 79 | While in #Dubai, today #Arsenal players (Xhaka... | NaN | NaN |
| 80 | Rwanda Celebrates its National Day at Expo 202... | NaN | NaN |
| 81 | Prospective evaluation of prostate and organs-... | NaN | NaN |
| 82 | Simply Awesome #Expo2020Dubai #Expo2020 #Dubai... | NaN | NaN |
| 83 | We will not recognize any country that recogni... | NaN | NaN |
| 84 | And what a celebration it was 🙌🏿🇷🇼 \n#Rwanda #... | NaN | NaN |
| 85 | @EquidemOrg Migrant workers across the #UAE co... | NaN | NaN |
| 86 | Youth have a central role of in driving innova... | NaN | NaN |
| 87 | Andy Wilson, head of Ogilvy's Sustainability P... | NaN | NaN |
| 88 | Don't miss @equidemorg's webinar tomorrow at 1... | NaN | NaN |
| 89 | Dubai, the only place where the sky is not the... | NaN | NaN |
| 90 | SAP #S4HANA is revolutionizing how organizatio... | NaN | NaN |
| 91 | Participate in a unique on-site #HXM innovatio... | NaN | NaN |
| 92 | From SAP #HumanCapitalManagement, to #Intellig... | NaN | NaN |
| 93 | Any spaces that a Somali is in cannot be civil... | NaN | NaN |
| 94 | Inspired from the frankincense tree externally... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 95 | Join us tomorrow as the #16Windows program exp... | NaN | NaN |
| 96 | Join us tomorrow as the #16Windows program exp... | NaN | NaN |
| 97 | #breaking Yemeni Army spokman .. New warning f... | NaN | NaN |
| 98 | Themed "Experience China," the China Pavilion ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 99 | @monicn0 The next station is expo2020 | NaN | NaN |
| 100 | Are you wondering what the Dubai Expo is about... | NaN | NaN |
| 101 | Rwanda National Day at #Expo2020Dubai \n\n#Her... | NaN | NaN |
| 102 | ADPHC participated in 2 events held at #Expo20... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 103 | Get combos now. Pls log on https://t.co/kmmQQo... | NaN | NaN |
| 104 | Highlights from Rwanda National Day at Dubai E... | NaN | NaN |
| 105 | Highlights from Rwanda National Day at Expo 20... | NaN | NaN |
| 106 | @AshishJThakkar, Founder of Mara Group and Mar... | NaN | NaN |
| 107 | Rwandan PM Visits UAE Pavilion at Expo 2020 \n... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 108 | I will be making an appearance in the @HIVEbyu... | NaN | NaN |
| 109 | @Nbarigye, CEO, Rwanda Finance Limited, will ... | NaN | NaN |
| 110 | Watch this video and join us as we unpack how ... | NaN | NaN |
| 111 | News: PM @EdNgirente will be speaking at #Rwan... | NaN | NaN |
| 112 | @cakamanzi, CEO, Rwanda Development Board, wil... | NaN | NaN |
| 113 | Watch this video and join us as we unpack how ... | NaN | NaN |
| 114 | Time for prayer is an important part of the pr... | NaN | NaN |
| 115 | Hon. @habyarimanab, Minister of Trade and Indu... | NaN | NaN |
| 116 | #BREAKING\n\n#Expo Dubai, To be safe... we rep... | NaN | NaN |
| 117 | 2/2\n🗓 February 2nd to 8th, 2022\n⏰ 10am to 10... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 118 | 1/2 Come discover @TheSDY Exhibition of the UN... | NaN | NaN |
| 119 | In this special day for Rwanda, a delegation o... | NaN | NaN |
| 120 | Hon. @MusoniPaula, Minister of ICT and Innovat... | NaN | NaN |
| 121 | JUST IN:\nOn behalf of President Paul Kagame, ... | NaN | NaN |
| 122 | Commissioner General of Expo 2020 Dubai. The o... | NaN | NaN |
| 123 | With our partner Bank of Africa we combine the... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 124 | Camera doesn't do it justice 🙄 https://t.co/Ur... | NaN | NaN |
| 125 | Rwanda is hosting the Rwanda Business Forum al... | NaN | NaN |
| 126 | Rwanda is hosting the Rwanda Business Forum al... | NaN | NaN |
| 127 | @harishbpuri she would have discussed with "hu... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 128 | Scotland hosted a fantastic Digital Health and... | NaN | NaN |
| 129 | We wish all our lovely ladies worldwide a mean... | NaN | NaN |
| 130 | Enjoy the magic of Dubai #Expo2020 with reliab... | NaN | NaN |
| 131 | ST.REGIS BY EMAAR DUBAI DOWNTOWN +971585554400... | NaN | NaN |
| 132 | @ElenaSkater82 @expo2020schools @expo2020 @gem... | NaN | NaN |
| 133 | Today’s Tuesdays@expo session tackled ways to ... | NaN | NaN |
| 134 | Listen/Watch the full performance ‘Beyond the ... | NaN | NaN |
| 135 | "#Precisionmedicine is about all the omics," s... | NaN | NaN |
| 136 | BEYOND THE STARS: ❤️🔥\n\n ---✨🌟✨---\n\n... | NaN | NaN |
| 137 | Today’s Tuesdays@expo session tackled ways to ... | NaN | NaN |
| 138 | COVID-19 affected women disproportionately in ... | NaN | NaN |
| 139 | Shamma bint Suhail Al Mazrouei, Minister of St... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 140 | Find out more about Zero-Energy Buildings and ... | NaN | NaN |
| 141 | @neofmx Hi, We do recommend that you visit the... | NaN | NaN |
| 142 | Dubai is getting ready for the Union Fortress ... | NaN | NaN |
| 143 | Human Fraternity Festival begins tomorrow at \... | NaN | NaN |
| 144 | The National Institute for Hospitality and Tou... | NaN | NaN |
| 145 | #Expo2020 #Dubai Not safe We recommend a secon... | NaN | NaN |
| 146 | @Yahya_Saree #breaking Yemeni Army spokman .. ... | NaN | NaN |
| 147 | @expo2020dubai Warning, we reiterate to indivi... | NaN | NaN |
| 148 | @SpaceX @elonmusk #breaking Yemeni Army spokma... | NaN | NaN |
| 149 | #breaking Yemeni Army spokman .. New warning f... | NaN | NaN |
| 150 | @army21ye #Expo2020 #Dubai Not safe We recomme... | NaN | NaN |
| 151 | #Expo2020 #Dubai Not safe We recommend a secon... | NaN | NaN |
| 152 | @expo2020dubai #Expo2020 #Dubai Not safe We re... | NaN | NaN |
| 153 | Happy Chinese new year 2022.\n#chinesenewyear ... | NaN | NaN |
| 154 | These fascinating questions were at the heart ... | NaN | NaN |
| 155 | The China Pavilion at Expo 2020 Dubai kicked o... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 156 | #BREAKING\nYemen army's spokesman:\n\n“Expo Du... | NaN | NaN |
| 157 | @DrVoetsek @TeamSA_Expo2020 Compare it to this... | NaN | NaN |
| 158 | @k03_mani @expo2020schools @expo2020 @gemsnms_... | NaN | NaN |
| 159 | @Arsenal it was nice seeing you around @emirat... | NaN | NaN |
| 160 | Pocket Gamer Connects is making a return to Lo... | NaN | NaN |
| 161 | The boys posing for a photo outside the Emirat... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 162 | On behalf of H.E President Paul Kagame, Prime ... | NaN | NaN |
| 163 | #breaking Yemeni Army spokman .. New warning f... | NaN | NaN |
| 164 | @army21ye #breaking Yemeni Army spokman .. New... | NaN | NaN |
| 165 | #breaking Yemeni Army spokman .. New warning f... | NaN | NaN |
| 166 | Today #CrownPrincessVictoria inaugurated the S... | NaN | NaN |
| 167 | The Rwanda National Day Celebration, today at ... | NaN | NaN |
| 168 | Come and find Essity's @AxelNordberg and Arush... | NaN | NaN |
| 169 | Not one to defend the ANC government, but seem... | NaN | NaN |
| 170 | On behalf of President Paul Kagame, Prime Mini... | NaN | NaN |
| 171 | Personalize your vitamin intake to meet your n... | NaN | NaN |
| 172 | A special journey awaits you, in which the org... | NaN | NaN |
| 173 | Whoever thought auto-tuning Amitabh Bachchan's... | NaN | NaN |
| 174 | @esepzai @pmlabpk @cgsrmi Not really for Dubai... | NaN | NaN |
| 175 | Expo 2020 Dubai; visitor numbers exceed 11 mil... | NaN | NaN |
| 176 | South Africa at the Dubai #Expo2020. I wonder ... | NaN | NaN |
| 177 | The second edition of the Human Fraternity Fes... | NaN | NaN |
| 178 | PHOTO:\nArsenal FC players including Granit Xh... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 179 | Yemeni army's spokesperson :\n\n“#Expo2020 Du... | NaN | NaN |
| 180 | The #Iran-backed Houthis continue to threaten ... | NaN | NaN |
| 181 | #أكسبو...\nمعنا قد تخسر ..ننصح بتغير الوجهه؟؟؟... | NaN | NaN |
| 182 | South Africa’s stand at EXPO2020 Dubai — judge... | NaN | NaN |
| 183 | From trombone to piano 🎹, Jose Ramon will make... | NaN | NaN |
| 184 | fuck expo2020 dubai | NaN | NaN |
| 185 | On the 1st of February, 2022, Abdulqader Obaid... | NaN | NaN |
| 186 | Our team members are always on their toes at S... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 187 | International colleges implement curriculum th... | NaN | NaN |
| 188 | #Yemen is an official participant to the #Expo... | NaN | NaN |
| 189 | Have to agree , this is typical ANC ! Disgrace... | NaN | NaN |
| 190 | Ready, set, GO! \n\nA Canadian tradition, the ... | NaN | NaN |
| 191 | A perspective from the Young Professionals For... | NaN | NaN |
| 192 | @PressTV #Yemen retaliatory attacks to undermi... | NaN | NaN |
| 193 | Expo Young Stars - ABCD Dance Studio - took th... | NaN | NaN |
| 194 | 📅WHAT'S UP IN FEBRUARY? \n\nThis month of Febr... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 195 | Mohamed Dekkak with H.E. Robert G. Clark, Comm... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 196 | We are excited to welcome @BeyondCapitalJo as ... | NaN | NaN |
| 197 | GREAT OPPORTUNITY - Sales Specialist – North A... | NaN | NaN |
| 198 | The Great Indian Recipe Contest has started. A... | NaN | NaN |
| 199 | who made your Expo experience extra special. S... | NaN | NaN |
| 200 | @esepzai @pmlabpk @cgsrmi It’s no doubt the mo... | NaN | NaN |
| 201 | Solutions for the future of healthcare is bein... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 202 | 📢 1⃣ day to go! \n\nOn the eve of the new #UAE... | NaN | NaN |
| 203 | An exceptional military parade will leave the ... | NaN | NaN |
| 204 | "We were expecting a pandemic flu but not a co... | NaN | NaN |
| 205 | International colleges implement curriculum th... | NaN | NaN |
| 206 | Over 11 million people visited #Expo2020Dubai ... | NaN | NaN |
| 207 | Happy Chinese New Year🎊\n\nIt is the Year of t... | NaN | NaN |
| 208 | We are honored and privileged to represent our... | NaN | NaN |
| 209 | Share your photos or videos on Instagram with ... | NaN | NaN |
| 210 | We are excited to invite you to join @BCCAD fo... | NaN | NaN |
| 211 | The #USAPavilion was honored to welcome the CE... | NaN | NaN |
| 212 | Encountering Zen from Buddhism, perfection of ... | NaN | NaN |
| 213 | Join us on Wednesday, February 2, at 1:00 pm f... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 214 | Visit the St. Kitts & Nevis at EXPO2020 in... | NaN | NaN |
| 215 | The Annual Investment Meeting (AIM) is a glob... | NaN | NaN |
| 216 | Today Expo 2020 Dubai celebrates Rwanda's Nati... | NaN | NaN |
| 217 | An exceptional military parade will leave the ... | NaN | NaN |
| 218 | @ExpoVolunteers Ready to welcome EXPO2020 DUBA... | NaN | NaN |
| 219 | We are live at #Expo2020 in Dubai and it's bri... | NaN | NaN |
| 220 | "You are the future of safer and faster medica... | NaN | NaN |
| 221 | "Isophotes" are widely used in astronomy to de... | NaN | NaN |
| 222 | "We are slowly moving toward a place where eve... | NaN | NaN |
| 223 | Many people criticise South Africa’s stand at ... | NaN | NaN |
| 224 | AIM 2022 Startup welcomes Flyagdata, a solutio... | NaN | NaN |
| 225 | #DignityNFT coming soon.. \n\n#NFT #NFTs #NFTc... | NaN | NaN |
| 226 | New Zealand’s National Day at Expo 2020 Dubai ... | NaN | NaN |
| 227 | "The mental health of intensive care professio... | NaN | NaN |
| 228 | WCS launched globally as part of Expo 2020 Dub... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 229 | "When scientist, doctors and politicians come ... | NaN | NaN |
| 230 | "Diseases that were previously not curable are... | NaN | NaN |
| 231 | VIDEO:\nPrime Minister, @EdNgirente officiates... | NaN | NaN |
| 232 | Five breathtakingly talented street artists 🎨👨... | NaN | NaN |
| 233 | I WILL PROVIDE A IMPRESSIVE DESIGN OF CV RESUM... | NaN | NaN |
| 234 | ✨ About today ✨\n#Expo2020 https://t.co/tJPZQs... | NaN | NaN |
| 235 | Opening at GTR MENA 2022, our Keynote speaker,... | NaN | NaN |
| 236 | A delegation from Italy’s Edisu Piemonte Unive... | NaN | NaN |
| 237 | 🤣 I assume somebody got paid millions for thi... | NaN | NaN |
| 238 | "Any sufficiently advanced technology is indis... | NaN | NaN |
| 239 | Expo 2020’s participating universities use it ... | NaN | NaN |
| 240 | #Expo2020 Glass For Samsung Galaxy Screen Prot... | NaN | NaN |
| 241 | Happy Chinese new year 2022 #marque #chinese #... | NaN | NaN |
| 242 | Celebrate @Expo2020Dubai at the #JLT Park with... | NaN | NaN |
| 243 | #Thuraya MCD Voyager integrates the high perfo... | NaN | NaN |
| 244 | Amitabh Bachchan singing the song for #Expo202... | NaN | NaN |
| 245 | Adventure for all.\nvisit https://t.co/VLRZod... | NaN | NaN |
| 246 | #Rwanda National Day at the Expo 2020 Dubai wi... | NaN | NaN |
| 247 | South Africa's stand at EXPO2020 Dubai — judge... | NaN | NaN |
| 248 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | NaN | NaN |
| 249 | UAE Innovates 2022 kicks off its journey in al... | NaN | NaN |
| 250 | More exclusives from the rooftop with @LayneRe... | NaN | NaN |
| 251 | Visit Sultanate of Oman Pavilion and learn abo... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 252 | 15 years and counting! 🥳 LeasePlan UAE celebra... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 253 | @SamiYusuf \n\n❤️💫✨ LOVE THIS ❤️✨💫\n \nFor ful... | NaN | NaN |
| 254 | President @Isaac_Herzog highlighted the impact... | NaN | NaN |
| 255 | inaugurated the Egyptian Genome Project in an ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 256 | Assam Tea and Muga Silk are 2 products from th... | NaN | NaN |
| 257 | .@ArchDigest: Colombia’s Pavilion at @expo2020... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 258 | Assam Tea is over 170 years old and plays a ve... | NaN | NaN |
| 259 | My love 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | NaN | NaN |
| 260 | #Rwanda National Day is almost here! \n\nTune ... | NaN | NaN |
| 261 | :::TODAY:::\n#Rwanda @Expo2020Dubai\n#Expo2020... | NaN | NaN |
| 262 | :::TODAY:::\n#Rwanda @Expo2020Dubai\n#Expo2020... | NaN | NaN |
| 263 | :::TODAY:::\n#Rwanda @Expo2020Dubai\n#Expo2020... | NaN | NaN |
| 264 | Passing through Amazon Jungle.\n@expo2020peru ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 265 | Here are the deets on todays show! Tune in at ... | NaN | NaN |
| 266 | the Ladies Club Design\nfrom Emarati Engineeri... | NaN | NaN |
| 267 | The health industry responded to COVID-19 by a... | NaN | NaN |
| 268 | In collaboration with the United States, this ... | NaN | NaN |
| 269 | HE Sarah bint Yousif Al Amiri: I spoke Cluster... | NaN | NaN |
| 270 | Bring Gourmet Delicacy from around the world t... | NaN | NaN |
| 271 | #Expo2020 #Dubai has resumed school visits and... | NaN | NaN |
| 272 | Hello, #Dubai! #expo2020 #pakistan https://t.c... | NaN | NaN |
| 273 | Expo 2020 Dubai records 11 million visits with... | NaN | NaN |
| 274 | The opening ceremony of Gilgit-Baltistan as th... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 275 | We would love to wish you all a Happy Chinese ... | NaN | NaN |
| 276 | @Ksayinzoga, CEO of @BRDbank, discussing gende... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 277 | Do you want to see what happens in the Swedish... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 278 | The winners of the India-Sweden Healthcare Inn... | NaN | NaN |
| 279 | His Highness Sheikh Mohammed bin Rashid meets ... | NaN | NaN |
| 280 | I like all pavilions but UAE , Saudi and Czec... | NaN | NaN |
| 281 | We're about half way through @Expo2020 Dubai a... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 282 | #China pavilion at @expo2020dubai starts celeb... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 283 | Italy's is the favourite Pavilion for those ha... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 284 | Make your company identity, restaurant, or caf... | NaN | NaN |
| 285 | The session with @Ksayinzoga CEO of @BRDbank i... | NaN | NaN |
| 286 | 🗓️ Tomorrow 13:00 CET online: Join @JordanKlar... | NaN | NaN |
| 287 | @ArabNewsjp @tanaka_tatsuya @expo2020_jp Super... | NaN | NaN |
| 288 | Over 200 Indian #startups get opportunity to s... | NaN | NaN |
| 289 | Today we are excited to celebrate Rwanda 🙌\nD... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 290 | Expo 2020 Dubai celebrates Lunar New Year at t... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 291 | In marking the State of Israel's National Day ... | NaN | NaN |
| 292 | #Expo2020 #Dubai celebrated an important Emira... | NaN | NaN |
| 293 | Director General, Expo 2020 Dubai, at an offic... | NaN | NaN |
| 294 | Just added number 17 to the Shapes from Expo20... | NaN | NaN |
| 295 | Ahead of Rwanda’s National Day, Minister @Muso... | NaN | NaN |
| 296 | Celebrating Namibian Tourism!\nOver the next t... | NaN | NaN |
| 297 | Muga silk is known for its extreme durability ... | NaN | NaN |
| 298 | The Living Laboratory was proud to join Scotla... | NaN | NaN |
| 299 | Now live from @expo2020dubai!\nOur Scientific ... | NaN | NaN |
| 300 | We are excited to welcome @cpfjo as a communit... | NaN | NaN |
| 301 | CHEVROLET TAHOE - \n➡️If you need a three-row ... | NaN | NaN |
| 302 | CHEVROLET TAHOE - \n➡️If you need a three-row ... | NaN | NaN |
| 303 | "You need to bring the right idea, and the leg... | NaN | NaN |
| 304 | "I think that an idea cannot grow if the facil... | NaN | NaN |
| 305 | Earping at #Expo2020 \n\n#WynonnaEarp #BringWy... | NaN | NaN |
| 306 | #Expo2020Dubai received 11.6 million visitors ... | NaN | NaN |
| 307 | - Why not develop a smart device that count nu... | NaN | NaN |
| 308 | Technology: DSO-Innovation Hub to help Indian ... | NaN | NaN |
| 309 | A panel discussion highlighting community led ... | NaN | NaN |
| 310 | We are waiting for you 🎊😍\n\n#yearofthefiftiet... | NaN | NaN |
| 311 | They were accompanied by heroes who have been ... | NaN | NaN |
| 312 | #Pdethx: Full #NFTCollection link here -\nhttp... | NaN | NaN |
| 313 | UAE Innovates 2022 begins with month-long even... | NaN | NaN |
| 314 | Ukraine pavilion #Expo2020 https://t.co/80rDm4... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 315 | Honored and humbed to participate in a landmar... | NaN | NaN |
| 316 | EXPO 2020 Dubai here we come! Get complimentar... | NaN | NaN |
| 317 | Watch their spectacular performance on 4 Febru... | NaN | NaN |
| 318 | NEW ROLE - Application Specialist – Diagnostic... | NaN | NaN |
| 319 | This week @essity will be supporting the @Swec... | NaN | NaN |
| 320 | It's beautiful to see the flag of Israel next ... | NaN | NaN |
| 321 | Happy Chinese New Year to all our friends in C... | NaN | NaN |
| 322 | Today at the Italy Pavilion at #Expo2020 a dis... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 323 | Today’s business highlights at Expo 2020 Dubai... | NaN | NaN |
| 324 | F&B Pods serving the visitors of @expo2020... | NaN | NaN |
| 325 | Between novelty and tradition, classicism and ... | NaN | NaN |
| 326 | Dubai Silicon Oasis and India Innovation Hub P... | NaN | NaN |
| 327 | 60 more days to go till the end of World’s Gre... | NaN | NaN |
| 328 | so so so impressed with @TalabatUAE cloud kitc... | NaN | NaN |
| 329 | Happy New Month.\n\n#HappyNewMonth #Security #... | NaN | NaN |
| 330 | Wishing you a prosperous, marvelous, blissful ... | NaN | NaN |
| 331 | In the first of a special two-part podcast epi... | NaN | NaN |
| 332 | Follow us at https://t.co/vyIPORKWxK or call u... | NaN | NaN |
| 333 | Assam Tea is over 170 years old and plays a ve... | NaN | NaN |
| 334 | "Governments need to lead, they set the rules.... | NaN | NaN |
| 335 | NFT Collection "Dignity"\n💪She is powerful. \n... | NaN | NaN |
| 336 | It's the halfway point of Expo 2020 Dubai &... | NaN | NaN |
| 337 | "We have to act on the assumption that we will... | NaN | NaN |
| 338 | It’s first February today! Have you registered... | NaN | NaN |
| 339 | "This pandemic further strengthened the partne... | NaN | NaN |
| 340 | Manchester City and England midfielder Jack Gr... | NaN | NaN |
| 341 | #Oum - An amazing mix of hassani, #jazz, #gosp... | NaN | NaN |
| 342 | There are endless reasons to visit Hungary. \n... | NaN | NaN |
| 343 | "We need to be mindful, I hope this pandemic i... | NaN | NaN |
| 344 | If you do have the opportunity to visit #Expo2... | NaN | NaN |
| 345 | "We need you to give us the ideas, your brains... | NaN | NaN |
| 346 | "Digital technology has to serve the people" —... | NaN | NaN |
| 347 | "The key point here is collaboration and partn... | NaN | NaN |
| 348 | "The UAE is in the second country in the world... | NaN | NaN |
| 349 | Armenian National Day was celebrated at #Expo2... | NaN | NaN |
| 350 | "The health sector being strong enough and how... | NaN | NaN |
| 351 | La Violeta is the latest release at one of Dub... | NaN | NaN |
| 352 | Wishing you all the success this year 🙏 Cheers... | NaN | NaN |
| 353 | "As a nation we punch above our weight when it... | NaN | NaN |
| 354 | "Majestic Falcon of Dubai"\nPrice: 0.009 eth (... | NaN | NaN |
| 355 | It's the halfway point of Expo 2020 Dubai &... | NaN | NaN |
| 356 | Watch Health & Wellness Business Forum LIV... | NaN | NaN |
| 357 | Gong Xi Fa Cai!🎆🎆\nMay the new lunar year brin... | NaN | NaN |
| 358 | Wishing you all the success this year 🙏 Cheers... | NaN | NaN |
| 359 | Minister of Tolerance and Coexistence and Comm... | NaN | NaN |
| 360 | .@Gulfood will also be a precursor to the much... | NaN | NaN |
| 361 | Its not just a dream of success ,work hard for... | NaN | NaN |
| 362 | where she will be discussing and promoting her... | NaN | NaN |
| 363 | Expo 2020 Dubai top events\n\n#إكسبو2020\n#Exp... | NaN | NaN |
| 364 | Call us on; 04 554 3603 | +971552824466 or +9... | NaN | NaN |
| 365 | #UAE Vice President, Prime Minister and ruler ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 366 | Participate in a unique on-site #HXM innovatio... | NaN | NaN |
| 367 | HE Hamad Buamim, President & CEO of Dubai ... | NaN | NaN |
| 368 | Our President, Ms. Alwazna Falah, & VP &am... | NaN | NaN |
| 369 | VIP Protocol organized a trip to Marmum Dairy ... | NaN | NaN |
| 370 | VAT Consultancy Services\n\nThe Bookkeeper\nCo... | NaN | NaN |
| 371 | Traveller-centric approach needed now: STB for... | NaN | NaN |
| 372 | #DeepLearning accurately analyzed abdominal mu... | NaN | NaN |
| 373 | We’re taking a meditative look at the power of... | NaN | NaN |
| 374 | #Cambium Networks' PTP 820C, an all Outdoor du... | NaN | NaN |
| 375 | Call us on; 04 554 3603 | +971552824466 or +9... | NaN | NaN |
| 376 | RĀTŪ\n- It's official: our kids are getting to... | NaN | NaN |
| 377 | Visiting #Expo2020 is easier than you think!\n... | NaN | NaN |
| 378 | Here are some discussions that will happen sho... | NaN | NaN |
| 379 | Good morning from Dubai Exhibition Centre #Exp... | NaN | NaN |
| 380 | @girney_expo2020 You didn’t 😬😬 | NaN | NaN |
| 381 | Both #AMUM 50KM and 5KM races will take place ... | NaN | NaN |
| 382 | How can business and emerging technologies hel... | NaN | NaN |
| 383 | Today’s business highlights at Expo 2020 Dubai... | NaN | NaN |
| 384 | Dont miss expo2020 dubai soon to reach to end ... | NaN | NaN |
| 385 | During @HamdanMohammed's visit to #Expo2020, h... | NaN | NaN |
| 386 | Dubai Ruler and the Prime Minister of Somalia ... | NaN | NaN |
| 387 | MXP600 delivers best-in-class coverage so vita... | NaN | NaN |
| 388 | Ruler of Dubai meets the President of Israel a... | NaN | NaN |
| 389 | Wishing you all the success this year. Cheers ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [success, successes, successful, successfully,... |
| 390 | Stunning Views & A Lively Neighbourhood, D... | [(Zambia pavilion), (Zimbabwe pavilion)] | [versatile, versatility, vibrant, vibrantly, v... |
| 391 | HH Sheikh Mohammed bin Rashid received today ... | NaN | NaN |
| 392 | Number of visitors to the largest tourism even... | NaN | NaN |
| 393 | #Expo2020 random shots 🤷🏻♂️ https://t.co/47lO... | NaN | NaN |
| 394 | Hola amigos, I want to confess something one o... | [(Zambia pavilion), (Zimbabwe pavilion)] | [condescension, confess, confession, confessio... |
| 395 | @JohnGallagherUK @UKPavilion2020 @expo2020duba... | NaN | NaN |
| 396 | #GlobalGoalsforAll\n#ObjetivosGlobalesparaTodo... | NaN | NaN |
| 397 | We are newly establish travel agency in Maldiv... | NaN | NaN |
| 398 | @suqaaaar But I did have a chance 😑 | NaN | NaN |
| 399 | Really..?!! #FreePalestine #Palestine \n #الام... | NaN | NaN |
| 400 | It’s never too late to start using tools of th... | NaN | NaN |
| 401 | Promises are made to be kept for people and pl... | NaN | NaN |
| 402 | I'm (covid) free again! #Expo2020 https://t.co... | NaN | NaN |
| 403 | #UAE Innovates will Start Tomorrow and will Co... | NaN | NaN |
| 404 | @AD_GQ BTw today I visited #IsrealPavilion ver... | NaN | NaN |
| 405 | "Isophotes" are widely used in astronomy to de... | NaN | NaN |
| 406 | @ScotExpo2020 @jasonleitch @HIMSS @dhiscotland... | NaN | NaN |
| 407 | 60 More Days with Expo 2020 Dubai\n#Expo2020 #... | NaN | NaN |
| 408 | @ICCROM @expo2020 @ItalyExpo2020 I could not r... | NaN | NaN |
| 409 | It’s amazing 🤩 \nSix60 is the greatest artist... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 410 | Exciting news! In celebration of our milestone... | NaN | NaN |
| 411 | @girney_expo2020 Mason says bye bye to his car... | NaN | NaN |
| 412 | Okay these mason greenwood memes are going cra... | [(Zambia pavilion), (Zimbabwe pavilion)] | [craziness, crazy, creak, creaking, creaks] |
| 413 | First-of-its-kind prosthetic limb socket made ... | NaN | NaN |
| 414 | #UAE Innovates 2022 kicks off its journey in a... | NaN | NaN |
| 415 | You may say, I'm a dreamer #expo2020 https://t... | NaN | NaN |
| 416 | Crowd at the Six60 performance in Dubai right ... | NaN | NaN |
| 417 | People in large numbers have started visiting ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 418 | The one and only, Lucky Ali is making his way ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unequivocal, unequivocally, unfazed, unfetter... |
| 419 | We are sharing some memories from the economic... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 420 | Technologies Transforming Healthcare at Expo 2... | NaN | NaN |
| 421 | The #spaces of the future must be designed wit... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wellbeing, whoa, wholeheartedly, wholesome, w... |
| 422 | @rihanna please visit Kenya 🇰🇪 for your #baby ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [bully, bullying, bullyingly, bum, bump] |
| 423 | "Klunk-klank": that's the sound meaning your v... | NaN | NaN |
| 424 | In collaboration with the UN, the #UAE launche... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 425 | Meanwhile in the United Arab Emirates. 🇮🇱🇦🇪\n\... | NaN | NaN |
| 426 | The @Saudi_fda_en has launched an ‘RSD’ system... | NaN | NaN |
| 427 | The brilliant folks at @EquidemOrg are launchi... | NaN | NaN |
| 428 | Six60 take the stage at #Expo2020 Dubai for th... | NaN | NaN |
| 429 | Excellent to see the UK Pavilion at #Expo2020.... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 430 | A fantasy masterpiece in multiple languages🙏🎶💞... | NaN | NaN |
| 431 | Invest in a city that promises the fantasy of ... | NaN | NaN |
| 432 | Gabon Pavilion at Expo 2020 Dubai a Space to R... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 433 | .@iamkatieovery chats with @AhlamBolooki on wh... | NaN | NaN |
| 434 | using the same ancient techniques practiced in... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 435 | Did you know that Kidovation has been to the D... | NaN | NaN |
| 436 | #UAE Innovates will Start Tomorrow and will Co... | NaN | NaN |
| 437 | Terry Fox Run at #Expo2020 #Dubai \n#Expo2020D... | NaN | NaN |
| 438 | Myriam I'm so excited that you will have a con... | NaN | NaN |
| 439 | UAE’s Ministry of Defence to perform weekly pa... | NaN | NaN |
| 440 | Inside the Russian pavilion - Expo moment\nDub... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 441 | #WATCH: Pakistani artist’s unique Qur’anic ins... | NaN | NaN |
| 442 | SHAME!!!!! \n#Dubai #AbuDhabi #Expo2020 #Dubai... | NaN | NaN |
| 443 | SMF Team visit To EXPO 2020, exploring culture... | NaN | NaN |
| 444 | It was an unforgettable night! Superstar Balqe... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unequivocal, unequivocally, unfazed, unfetter... |
| 445 | #loymachedo shares\nHouthi Claim Explosion In ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [crass, craven, cravenly, craze, crazily] |
| 446 | #loymachedo shares\nHouthi Claim Explosion In ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [crass, craven, cravenly, craze, crazily] |
| 447 | What a huge honour to have H.E. Isaac Herzog, ... | NaN | NaN |
| 448 | Fifth visit to Expo 2020 Dubai, wonderful afte... | [(Zambia pavilion), (Zimbabwe pavilion)] | [witty, won, wonder, wonderful, wonderfully] |
| 449 | Israel's president Isaac Herzog visits Israeli... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 450 | Israel's president Isaac Herzog visits Israeli... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 451 | Israel's president Isaac Herzog visits Israeli... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 452 | So beautiful 😍\nhttps://t.co/4J3b6MnxCb\n#trav... | NaN | NaN |
| 453 | It starts with a dream 📸\n#expo2020 #Dubai #Ru... | NaN | NaN |
| 454 | Each month, we highlight the notable moments f... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 455 | UAE Innovates 2022 kicks off its journey in al... | NaN | NaN |
| 456 | #Elemeno Kids, a unique startup glorifying Ind... | NaN | NaN |
| 457 | #Houhti view on the #AbrahamAccords. Consider ... | NaN | NaN |
| 458 | With the participation of H.E. Dr. Yousif Moha... | NaN | NaN |
| 459 | NEW: The Royal Family Dance Crew's #Expo2020 N... | NaN | NaN |
| 460 | Discover the #KuwaitPavilion at #Expo2020Dubai... | NaN | NaN |
| 461 | Don't miss the opportunity to join us tomorrow... | NaN | NaN |
| 462 | Missing that strawberry kinder beauno cheeseca... | NaN | NaN |
| 463 | A Tribute to “Netaji Subhas Chandra Bose” in t... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 464 | Visitors will be able to virtually experience ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 465 | THE KENYA PAVILLION AT #EXPO2020\nThe Kenya Pa... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 466 | To celebrate his country’s national day, H.E. ... | NaN | NaN |
| 467 | 60 More Days with #Expo2020 #Dubai\n#Expo2020D... | NaN | NaN |
| 468 | Incredible miniatures, and much much more, at ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 469 | New Zealand’s national day is being celebrated... | NaN | NaN |
| 470 | Happy dayoff at expo2020 #mybff https://t.co/i... | NaN | NaN |
| 471 | They’re talented, they’re full of energy, and ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 472 | Today, we reached 700,000 visitors. We thank e... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 473 | Welcome to our country UAE that still the safe... | NaN | NaN |
| 474 | Scotland is looking to the future of health at... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 475 | From @MyriamFares to @LuckyAli, here are six c... | NaN | NaN |
| 476 | This week, join us virtually in the Swedish pa... | [(Zambia pavilion), (Zimbabwe pavilion)] | [cancer, cancerous, cannibal, cannibalize, cap... |
| 477 | Guest House (guest house) were on hand to eng... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 478 | The Great Indian Recipe Contest has started. A... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sweetly, sweetness, swift, swiftness, talent] |
| 479 | Visit Expo 2020 Dubai for Chinese New Year Cel... | NaN | NaN |
| 480 | Getting to know Luxemburg #expo2020 (@ Luxembo... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 481 | Join us @RwandaExpo2020 in #Dubai for the Rwan... | NaN | NaN |
| 482 | Sheikh Mohammed bin Rashid, Vice President and... | NaN | NaN |
| 483 | No one is safe until everyone is safe. We need... | NaN | NaN |
| 484 | World Expo has undergone great challenges; glo... | [(Zambia pavilion), (Zimbabwe pavilion)] | [crisis, critic, critical, criticism, criticisms] |
| 485 | Among the speakers for the #GEMGlobalReport22 ... | NaN | NaN |
| 486 | 125th Birth Anniversary: A Tribute to “Netaji ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 487 | Discover the Côte d'Azur, a unique destination... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 488 | #Expo2020 #Dubai Where life happens - A shor... | NaN | NaN |
| 489 | Get the chance to win exciting prizes! \nHere'... | [(Zambia pavilion), (Zimbabwe pavilion)] | [win, windfall, winnable, winner, winners] |
| 490 | “#Israel's president spoke at #Dubai's #Expo20... | NaN | NaN |
| 491 | Join #SAPServices at #expo2020dubai in the SAP... | NaN | NaN |
| 492 | Discover the land of vibrant culture and endle... | [(Zambia pavilion), (Zimbabwe pavilion)] | [versatile, versatility, vibrant, vibrantly, v... |
| 493 | With all the love we’ve received, we can’t wai... | NaN | NaN |
| 494 | We are excited to welcome @INJAZorg as a commu... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 495 | Some photos from the "National Day" ceremony a... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 496 | An insightful end to Scotland's Digital Health... | [(Zambia pavilion), (Zimbabwe pavilion)] | [valuable, variety, venerate, verifiable, veri... |
| 497 | Scotland's Digital Health and Wellness Day at ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 498 | It’s now or never before it’s gone forever! 60... | [(Zambia pavilion), (Zimbabwe pavilion)] | [misrepresent, misrepresentation, miss, missed... |
| 499 | Eat and save! Go for these affordable must-try... | NaN | NaN |
| 500 | Celebrity chef #VineetBhatia is back on #Studi... | NaN | NaN |
| 501 | #StudioExpo team is getting bigger! \nJoin the... | NaN | NaN |
| 502 | Kalamkari painting involves over 20. Know more... | NaN | NaN |
| 503 | Connecting Minds, Creating the Future! Join Co... | NaN | NaN |
| 504 | The #USAPavilion welcomed Hochschule Munich Un... | NaN | NaN |
| 505 | It’s now or never before it’s gone forever! 60... | [(Zambia pavilion), (Zimbabwe pavilion)] | [misrepresent, misrepresentation, miss, missed... |
| 506 | Exciting! Israel's National Day at #Expo2020 D... | NaN | NaN |
| 507 | The Musical Journey full of wonder every Thurs... | [(Zambia pavilion), (Zimbabwe pavilion)] | [witty, won, wonder, wonderful, wonderfully] |
| 508 | We are incredibly proud that the @UofGLivingLa... | [(Zambia pavilion), (Zimbabwe pavilion)] | [streamlined, striking, strikingly, striving, ... |
| 509 | Expo 2020 Dubai @expo2020dubai has announced i... | NaN | NaN |
| 510 | Canadians and others from all over the globe j... | NaN | NaN |
| 511 | Helping you capitalize on current leads and ge... | NaN | NaN |
| 512 | It was so wonderful to welcome students back a... | [(Zambia pavilion), (Zimbabwe pavilion)] | [witty, won, wonder, wonderful, wonderfully] |
| 513 | Vertebral Deformity Measurements on MRI, CT, a... | NaN | NaN |
| 514 | Teachers all over the world are special. We at... | NaN | NaN |
| 515 | We are delighted to have joined Scotland's Dig... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 516 | This week @essity will be supporting the @Swec... | [(Zambia pavilion), (Zimbabwe pavilion)] | [supported, supporter, supporting, supportive,... |
| 517 | On February 1, from 4 PM - 6 PM, she will part... | NaN | NaN |
| 518 | #WATCH: Pakistani artist’s unique Qur’anic ins... | NaN | NaN |
| 519 | Expo 2020 Dubai India Pavilion building design... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 520 | @girney_expo2020 Get a job bro 😁 | NaN | NaN |
| 521 | The Wasl dome in all its glory @expo2020dubai... | NaN | NaN |
| 522 | Ambassador of the Syrian Arab Republic in the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unity, unlimited, unmatched, unparalleled, un... |
| 523 | Expo 2020 Dubai is the world’s biggest event a... | NaN | NaN |
| 524 | Celebrating the connecting power of sport and ... | NaN | NaN |
| 525 | Eat and save! Go for these affordable must-try... | NaN | NaN |
| 526 | #StudioExpo is live at #Expo2020Dubai. \n#Duba... | NaN | NaN |
| 527 | BioClavis is part of the expert panel discussi... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 528 | Slip in a workout while you’re visiting @expo2... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wellbeing, whoa, wholeheartedly, wholesome, w... |
| 529 | Srikalahasthi Kalamkari produced mainly in Sri... | NaN | NaN |
| 530 | The Syria Pavilion at Expo 2020 Dubai and the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [trump, trumpet, trust, trusted, trusting] |
| 531 | Dive into this winter season with the best cla... | NaN | NaN |
| 532 | The famous #NaatuNaatuSong @expo2020schools @e... | NaN | NaN |
| 533 | Meet the people leading the science and use of... | NaN | NaN |
| 534 | Celebrating Israel National Day at #Expo2020 #... | NaN | NaN |
| 535 | #Herzog and First Lady Michal Herzog opened #I... | NaN | NaN |
| 536 | We are excited to welcome @Oasis_500 as a comm... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 537 | 👀 There’s so much to see at #EXPO2020Dubai tha... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 538 | UAE’s Ministry of Defence to perform a live pa... | NaN | NaN |
| 539 | Pleased and proud to see Dr Ujala Nayyar from ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 540 | Get the chance to meet the brilliant @ShankarA... | NaN | NaN |
| 541 | Don’t miss our next running event, the Terry F... | [(Zambia pavilion), (Zimbabwe pavilion)] | [cancer, cancerous, cannibal, cannibalize, cap... |
| 542 | A week of sharing the unique history, aroma, a... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 543 | Happening today! #Expo2020 https://t.co/UyyA5Y... | NaN | NaN |
| 544 | HH Sheikh Mohammed bin Rashid Meets with the P... | NaN | NaN |
| 545 | "The control of covid19 came at a cost, such a... | [(Zambia pavilion), (Zimbabwe pavilion)] | [disrespectfully, disrespectfulness, disrespec... |
| 546 | .@UofGLivingLab are at #Expo2020 with @Precisi... | [(Zambia pavilion), (Zimbabwe pavilion)] | [streamlined, striking, strikingly, striving, ... |
| 547 | #Avigilon Presence Detector. The impulse #rada... | NaN | NaN |
| 548 | Opening this year, the assisted living lab at ... | NaN | NaN |
| 549 | #SmartPTT enables dispatchers to talk to diffe... | NaN | NaN |
| 550 | We are proud to be at #Expo2020 with @Precisio... | [(Zambia pavilion), (Zimbabwe pavilion)] | [streamlined, striking, strikingly, striving, ... |
| 551 | AIM 2022 Startup welcomes FlashBeats, a mobile... | NaN | NaN |
| 552 | "Clue No.1 🗝 \n💪She is powerful. \n🔥She is fea... | NaN | NaN |
| 553 | We had the opportunity to attend a debate focu... | NaN | NaN |
| 554 | #Herzog and First Lady Michal Herzog opened #I... | NaN | NaN |
| 555 | Stay tuned for #UAE Innovates events at #Expo2... | NaN | NaN |
| 556 | These new creations, the largest we've ever bu... | NaN | NaN |
| 557 | Enjoy opera 🎻 music with a pop twist 🎸 as Sol3... | [(Zambia pavilion), (Zimbabwe pavilion)] | [witty, won, wonder, wonderful, wonderfully] |
| 558 | What a great moment. Fantastic to see. Well do... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 559 | “The Walk for the Ocean” took place at the #... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 560 | @expo2020 @TheNationalNews Meanwhile, Dr Kanda... | NaN | NaN |
| 561 | Interesting panel discussion at Scotland's Dig... | NaN | NaN |
| 562 | A Tribute to “Netaji Subhas Chandra Bose” in t... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 563 | Incorporating many complex choreographies, inc... | [(Zambia pavilion), (Zimbabwe pavilion)] | [complex, complicated, complication, complicit... |
| 564 | #StudioExpo goes live a 4PM #Expo2020Dubai!\n\... | NaN | NaN |
| 565 | Scottish digital health #Expo2020 panel highli... | [(Zambia pavilion), (Zimbabwe pavilion)] | [ineptly, inequalities, inequality, inequitabl... |
| 566 | #Israel: President Isaac Herzog kicked off the... | NaN | NaN |
| 567 | 125th Birth Anniversary: A Tribute to “Netaji ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 568 | The technical ability of its musicians 🎼 and t... | [(Zambia pavilion), (Zimbabwe pavilion)] | [streamlined, striking, strikingly, striving, ... |
| 569 | "VIPs from around the world visit the Japan Pa... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 570 | This was followed with an opening address by #... | NaN | NaN |
| 571 | My lovely princess 👑😍\n#البرنسيسة #ديانا_حداد ... | NaN | NaN |
| 572 | New Video: Emirates - A #VisitDubai, #Expo2020... | NaN | NaN |
| 573 | New Video: Emirates - A #VisitDubai, #Expo2020... | NaN | NaN |
| 574 | UN at Expo 2020 Dubai | United Nations https:/... | NaN | NaN |
| 575 | Srikalahasti Kalamkari is inspired by religiou... | NaN | NaN |
| 576 | What a day! Great to have our guests from Etis... | NaN | NaN |
| 577 | By experimenting with materials, techniques an... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 578 | Great to hear @djlmed, @jasonleitch and @HalWo... | [(Zambia pavilion), (Zimbabwe pavilion)] | [failure, failures, faint, fainthearted, faith... |
| 579 | Our #Expo2020 National Day celebrations began ... | NaN | NaN |
| 580 | #HealthandWellness week at the pavilion in #Du... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 581 | Israel's President Isaac Herzog visits #Expo20... | NaN | NaN |
| 582 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | NaN | NaN |
| 583 | The #USAPavilion hosted Stephen Shaya, M.D. of... | NaN | NaN |
| 584 | As part of #Expo2020 \nHealth & Wellness W... | [(Zambia pavilion), (Zimbabwe pavilion)] | [conflict, conflicted, conflicting, conflicts,... |
| 585 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | NaN | NaN |
| 586 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | NaN | NaN |
| 587 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | NaN | NaN |
| 588 | UAE’s Minister of Tolerance Sheikh Nahyan bin ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unequivocal, unequivocally, unfazed, unfetter... |
| 589 | Last week, DMU was back at @Expo2020, showing ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 590 | "There is no subtitute for quality. We need a ... | NaN | NaN |
| 591 | The #USAPavilion welcomed Minister of Health o... | NaN | NaN |
| 592 | Today our CEO Mohan Frick and Finance Director... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 593 | Fighting Stigma : India pavilion at EXPO2020 ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 594 | Discover Haus 51 bespoke services, call us on ... | NaN | NaN |
| 595 | Finally 😍😍😍 #Expo2020 https://t.co/sgxvk5tUCJ | NaN | NaN |
| 596 | MSME Minister Narayan Rane inaugurates MSME Pa... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 597 | Today is the day...our official @expo2020dubai... | NaN | NaN |
| 598 | SAP #S4HANA is revolutionizing how organizatio... | NaN | NaN |
| 599 | 4 months down, 2 more to go! 🇾🇪\n\n#أحفاد_سبأ ... | NaN | NaN |
| 600 | In the India Pavilion yoga is really on displa... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 601 | Essential to #learn from the #polio eradicatio... | NaN | NaN |
| 602 | The Greek pavilion was designed based on the m... | [(Zambia pavilion), (Zimbabwe pavilion)] | [myth, nag, nagging, naive, naively] |
| 603 | "We live in an age of misinformation and disin... | [(Zambia pavilion), (Zimbabwe pavilion)] | [isolation, issue, issues, itch, itching] |
| 604 | EXPO AL WASL PLAZA\n\nPFC is taking a main par... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 605 | “Wild animals don’t cause pandemics: people do... | [(Zambia pavilion), (Zimbabwe pavilion)] | [improper, improperly, impropriety, imprudence... |
| 606 | What A Place This #Expo2020 Dubai Is 😊 Feel My... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unquestionably, unreal, unrestricted, unrival... |
| 607 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | NaN | NaN |
| 608 | You cannot make a wolf look cute sorry https:/... | NaN | NaN |
| 609 | Malaysia Pavilion spreads smiles with a unique... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 610 | Timber industry thrives in a sustainable setti... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 611 | Today we are excited to celebrate New Zealand ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [misrepresent, misrepresentation, miss, missed... |
| 612 | Luxembourg Pavilion presents a disaster rapid-... | [(Zambia pavilion), (Zimbabwe pavilion)] | [disarm, disarray, disaster, disasterous, disa... |
| 613 | Talabat showcasing how automation can be used ... | NaN | NaN |
| 614 | Welcome to Colombia 🇨🇴 only in \nDubai \n#expo... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 615 | I'm tuning in to #Expo2020 this morning with @... | NaN | NaN |
| 616 | We can’t believe it’s been over a month since ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 617 | WOW! Well done, and you still have 2 more mont... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wow, wowed, wowing, wows, yay] |
| 618 | Fabulous key note address summarising the chan... | NaN | NaN |
| 619 | From Nicola Fanetti to Rodrigo de la Calle, he... | NaN | NaN |
| 620 | We are excited to kick off our sessions at Exp... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 621 | Read the summary of the International Business... | [(Zambia pavilion), (Zimbabwe pavilion)] | [success, successes, successful, successfully,... |
| 622 | #WATCH: Pakistani artist’s unique Qur’anic ins... | NaN | NaN |
| 623 | Y12 studying neurotransmission in the Russian ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [worth, worth-while, worthiness, worthwhile, w... |
| 624 | There has been continual background chatter or... | [(Zambia pavilion), (Zimbabwe pavilion)] | [chastise, chastisement, chatter, chatterbox, ... |
| 625 | Enhance the quality of your food with our new ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 626 | Opening Scotland's Digital Health Day at #Expo... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wellbeing, whoa, wholeheartedly, wholesome, w... |
| 627 | #MondayTip with @jruzzmerca\nTake a time-lapse... | [(Zambia pavilion), (Zimbabwe pavilion)] | [cloud, clouding, cloudy, clueless, clumsy] |
| 628 | #MondayTip with @jruzzmerca\nTake a time-lapse... | [(Zambia pavilion), (Zimbabwe pavilion)] | [cloud, clouding, cloudy, clueless, clumsy] |
| 629 | #UAE and #Australia discuss ways to strengthen... | NaN | NaN |
| 630 | Today we are excited to celebrate Israel 🙌\nD... | [(Zambia pavilion), (Zimbabwe pavilion)] | [misrepresent, misrepresentation, miss, missed... |
| 631 | @Malala YOUSAFZAI VISITS PAKISTAN PAVILION AT ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 632 | Join @SwecareSweden, @SocialDep, Vision Zero C... | [(Zambia pavilion), (Zimbabwe pavilion)] | [cancer, cancerous, cannibal, cannibalize, cap... |
| 633 | #Expo2020Dubai will mark #WorldCancerDay with ... | NaN | NaN |
| 634 | Women have been disproportionately affected by... | [(Zambia pavilion), (Zimbabwe pavilion)] | [invidiously, invidiousness, invisible, involu... |
| 635 | AIM 2022 Startup Pillar welcomes Ukrainian Sta... | NaN | NaN |
| 636 | @Ina_aIi00 Oh no 😧 | NaN | NaN |
| 637 | We @FierceKitchens visited the Japan Pavilion ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 638 | Highlights from" Experience Redefining the Age... | [(Zambia pavilion), (Zimbabwe pavilion)] | [despair, despairing, despairingly, desperate,... |
| 639 | Expo 2020 #Dubai to Host Terry Fox Run on 5 Fe... | NaN | NaN |
| 640 | Check out this aerial view of the United Kingd... | [(Zambia pavilion), (Zimbabwe pavilion)] | [witty, won, wonder, wonderful, wonderfully] |
| 641 | What makes the desert beautiful is that somewh... | [(Zambia pavilion), (Zimbabwe pavilion)] | [derogatory, desecrate, desert, desertion, des... |
| 642 | @expo2020dubai Dioxin from burning high-carbon... | [(Zambia pavilion), (Zimbabwe pavilion)] | [dirtbags, dirts, dirty, disable, disabled] |
| 643 | 🤗 Innovation Month in UAE 🥰\n\nSay Hello to in... | NaN | NaN |
| 644 | Food for Future Summit & Expo to debut at ... | NaN | NaN |
| 645 | Check out the Indian Pavilion at EXPO 2020 to ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 646 | His Highness #SheikhHamdan bin Mohammed bin Ra... | NaN | NaN |
| 647 | The #UAEPavilion celebrated the National Day o... | NaN | NaN |
| 648 | MEET THE TEAM\n\nMr Ipyana Mfune is the Retail... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 649 | His Majesty #KingCarlXVI Gustaf of #Sweden vis... | NaN | NaN |
| 650 | As part of the Health and Wellness week, the S... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 651 | NEW ROLE - Medical Representative\nAPPLY HERE ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sweetly, sweetness, swift, swiftness, talent] |
| 652 | It's Scotland's Digital Health Day at #Expo202... | [(Zambia pavilion), (Zimbabwe pavilion)] | [streamlined, striking, strikingly, striving, ... |
| 653 | India pavilion at Expo 2020 Dubai reflects Ind... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 654 | From SAP #HumanCapitalManagement, to #Intellig... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 655 | Expo 2020 lake look like a #COVID19 virus ... ... | NaN | NaN |
| 656 | It's Scotland's Digital Health Day at #Expo202... | [(Zambia pavilion), (Zimbabwe pavilion)] | [isolation, issue, issues, itch, itching] |
| 657 | Kindly contact with the details below:\nmobile... | NaN | NaN |
| 658 | Today’s business highlights at Expo 2020 Dubai... | NaN | NaN |
| 659 | Join us at Expo 2020 Dubai as we examine lesso... | [(Zambia pavilion), (Zimbabwe pavilion)] | [crisis, critic, critical, criticism, criticisms] |
| 660 | The #USAPavilion was honored to host the signi... | NaN | NaN |
| 661 | A lot of Hyperloop here and there. Will it rea... | NaN | NaN |
| 662 | I see that SA pavilion stand at #Expo2020 is s... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 663 | Opening remarks\n🎙Enzo Grossi, Scientific Advi... | NaN | NaN |
| 664 | Basant Panchami is an auspicious day to start ... | NaN | NaN |
| 665 | If a music has given me goosebumps after the s... | NaN | NaN |
| 666 | The @expo2020dubai Health& Wellness busine... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 667 | India pavilion at EXPO2020 Dubai hosts discuss... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 668 | Expo 2020 Dubai sponsors camel racing festival... | NaN | NaN |
| 669 | Visit Expo for Chinese New Year Celebration. J... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 670 | Discover ideas and innovations for a more sust... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 671 | The SKN Pavilion team, ready to discuss St. Ki... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 672 | Only she gets a copy of the deposition by the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [complained, complaining, complains, complaint... |
| 673 | Mr. @SunilDuggal_Ved, Vedanta Group CEO, talks... | NaN | NaN |
| 674 | Looking for help due to an urgent situation? O... | [(Zambia pavilion), (Zimbabwe pavilion)] | [emergency, emphatic, emphatically, emptiness,... |
| 675 | 🗓️Ready for this week's Canon activities @expo... | NaN | NaN |
| 676 | 🗓️Ready for this week's Canon activities @expo... | NaN | NaN |
| 677 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 678 | How can #business and #EmergingTech help shape... | NaN | NaN |
| 679 | 📢#HappeningNow\n\nThe WALK FOR THE OCEAN start... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 680 | Participate in a unique on-site #HXM innovatio... | NaN | NaN |
| 681 | From SAP #HumanCapitalManagement, to #Intellig... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 682 | Send a Special Gift to your Loved one Grab 15%... | NaN | NaN |
| 683 | Tune in for a very special panel discussion on... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 684 | Check out our omnidirectional base antennas th... | NaN | NaN |
| 685 | Weakly supervised 3D classification workflow g... | NaN | NaN |
| 686 | 📲Call us on; 04 554 3603 | +971552824466 or +... | NaN | NaN |
| 687 | Tune into @DubaiEye1038FM Business Breakfast w... | NaN | NaN |
| 688 | ONPOINT Fixed #antenna re-alignment systems: F... | NaN | NaN |
| 689 | Hi Monday…\nI’m ready…. \n#monday #imready #we... | NaN | NaN |
| 690 | People in large numbers have started visiting ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 691 | Participate in a unique on-site #HXM innovatio... | NaN | NaN |
| 692 | From SAP #HumanCapitalManagement, to #Intellig... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 693 | Throwback to the Nigeria Pavilion at #Expo2020... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 694 | At #AbuDhabiCarpets you can find #Customized #... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 695 | At #DubaiRugs, #Isfahan #Rug is one of the mos... | [(Zambia pavilion), (Zimbabwe pavilion)] | [tenacity, tender, tenderly, terrific, terrifi... |
| 696 | H.H. Sheikh Abdullah bin Zayed Al Nahyan, Mini... | NaN | NaN |
| 697 | 📢Dr. Sarthak Das and Aidan O’Leary, Director, ... | NaN | NaN |
| 698 | To mark 🇦🇺 national day at the Australian Pavi... | NaN | NaN |
| 699 | Visited Expo2020 Dubai to Russia, UK , Pakista... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 700 | #BreakingNews\nYemeni Armed Forces to announce... | NaN | NaN |
| 701 | Are you ready World Expo 2020??\nJoin the #USA... | NaN | NaN |
| 702 | #أكسبو...\nمعنا قد تخسر ..ننصح بتغير الوجهه؟؟؟... | [(Zambia pavilion), (Zimbabwe pavilion)] | [danger, dangerous, dangerousness, dark, darken] |
| 703 | Marta Jaramillo, Commissioner General of @Mexi... | NaN | NaN |
| 704 | Using #NLP of cardiovascular radiology reports... | NaN | NaN |
| 705 | Inspiring Look Redefines Our Perception of Art... | NaN | NaN |
| 706 | #loymachedo asks BREAKING NEWS\nIs this True O... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 707 | A short clip from the cultural performance as ... | NaN | NaN |
| 708 | Today you could have designed a next generatio... | NaN | NaN |
| 709 | It is done - I have now visited 192 national p... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 710 | Twitterati are saying there's no local #Dubai ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [dripped, dripping, drippy, drips, drones] |
| 711 | ‘Breaking Barriers Through Digital Medicine’\n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 712 | That Dubai life.\n\n#dubai #expo2020 #trending... | [(Zambia pavilion), (Zimbabwe pavilion)] | [fundamentalism, funky, funnily, funny, furious] |
| 713 | Which do you NOT do? 😆\n\n#Batt4Less #dubai #e... | NaN | NaN |
| 714 | A week of sharing the unique history, aroma, a... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 715 | New Zealand is celebrating its national day at... | NaN | NaN |
| 716 | Six60 have arrived in Dubai ahead of their muc... | NaN | NaN |
| 717 | The magical moment at Dubai Expo 2020. Part th... | NaN | NaN |
| 718 | The magical moment at Dubai Expo 2020. Part tw... | NaN | NaN |
| 719 | Women Incredible Contributions to Healthcare \... | NaN | NaN |
| 720 | The magical moment at Dubai Expo 2020. Part on... | NaN | NaN |
| 721 | "Welcome to Expo 2020" / "I'm here for your se... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 722 | @ganymedeworld @JackD157 The bigger picture ye... | [(Zambia pavilion), (Zimbabwe pavilion)] | [facetiously, fail, failed, failing, fails] |
| 723 | Last day volunteering at Expo2020 🥳🥳 https://t... | NaN | NaN |
| 724 | @123maryoom45 Keep in mind that having the pro... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 725 | Back of TV tour #FacebookLive #Expo2020 #Beati... | NaN | NaN |
| 726 | At the #Expo2020 today i effortlessly spoke Lu... | NaN | NaN |
| 727 | Every country’s pavilion at the Expo2020 looks... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 728 | *pimple popping | NaN | NaN |
| 729 | Okay I'm seeing a pattern here why is it every... | NaN | NaN |
| 730 | @TigayBarry @RationalSettler When cases go dow... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 731 | Black Eyed Peas' New Remix // Expo 2020 Guests... | NaN | NaN |
| 732 | Expo 2020 practical points before visiting.\n\... | NaN | NaN |
| 733 | The Saudi Genome Program is decoding and analy... | NaN | NaN |
| 734 | The sky looks nice today https://t.co/1KR5EOfvxR | NaN | NaN |
| 735 | @AusCG_Expo2020 @dfat Well done to you and the... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 736 | They never stand still, but they are not in th... | NaN | NaN |
| 737 | My life 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | NaN | NaN |
| 738 | 40 Ministries & Government agencies to par... | NaN | NaN |
| 739 | Health Minister Didier Gamerdinger launching o... | NaN | NaN |
| 740 | The one and only, Lucky Ali is making his way ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unequivocal, unequivocally, unfazed, unfetter... |
| 741 | Thank God there is no truth to what is rumored... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 742 | Great day at @expo2020dubai and no better plac... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 743 | According to the information of the "mtv" chan... | NaN | NaN |
| 744 | HH Sheikh Abdullah bin Zayed Meets with Govern... | NaN | NaN |
| 745 | Expo 2020 Dubai Thanks Unsung Heroes, Our Vita... | NaN | NaN |
| 746 | Technology’s impact on healthcare carries a a ... | NaN | NaN |
| 747 | If you aspire to live close to Downtown but no... | NaN | NaN |
| 748 | If you are feeling hot, Singapore Pavilion is ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 749 | Must be some art that dignifies #women #womeni... | NaN | NaN |
| 750 | @TheUAEnft Nice date of launch...\nWaiting....... | NaN | NaN |
| 751 | Couldn't wait to see the stalls at @expofestiv... | NaN | NaN |
| 752 | Nobel Prize winning activist Malala Yousafzai ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [winning, wins, wisdom, wise, wisely] |
| 753 | Accelerate #innovation in #HumanExperienceMana... | NaN | NaN |
| 754 | We're accelerating towards the grand finale\n#... | NaN | NaN |
| 755 | The Great Indian Recipe Contest has started. \... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 756 | The amazing Egyptian artist and musician ‘Omar... | NaN | NaN |
| 757 | Liking this picture! Raising awareness of the ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [liking, lionhearted, lively, logical, long-la... |
| 758 | A global exhibition only means one thing for f... | NaN | NaN |
| 759 | The Australian Pavilion at #EXPO2020 is a rema... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 760 | Armenia’s Minister of Economy, visits the #UAE... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 761 | Student and inventor Ghala Hammoud Al-Enzi par... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [modern, modest, modesty, momentous, monumental] |
| 762 | I can't get enough of this spectacular, magica... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [phenomenal, phenomenally, picturesque, piety,... |
| 763 | Expo 2020 Dubai is Celebrating #Chinese New Ye... | NaN | NaN |
| 764 | Try Sushiro, popular sushi place next to us.Th... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 765 | Watch “Interdependence in Action: Practices of... | NaN | NaN |
| 766 | Some of the striking visuals at #expo2020 @ Ex... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [straightforward, streamlined, striking, strik... |
| 767 | Using #AlUla as inspiration for her designs, p... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magical, magnanimous, magnanimously, magnific... |
| 768 | Making the most of my #expo2020 season pass 😎 ... | NaN | NaN |
| 769 | Ending another edutainment week @expo2020dubai... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 770 | Ending another edutainment week @expo2020dubai... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 771 | #campusgermany #expo2020 #germanypavilion #s20... | NaN | NaN |
| 772 | Great discussions at today’s Healthcare System... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 773 | #campusgermany #expo2020 #s20fe @ Campus Germa... | NaN | NaN |
| 774 | Discover 'Studio Expo' at #Expo2020 #Dubai \n#... | NaN | NaN |
| 775 | How many Expo stamps did you collect so far? #... | NaN | NaN |
| 776 | Cristiano Ronaldo accepts Globe Soccer's Top S... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 777 | "I always felt that nature is peaceful. Once y... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 778 | The world`s youngest nation!! https://t.co/E8L... | NaN | NaN |
| 779 | "The future remain ours to make”, “Buildings a... | NaN | NaN |
| 780 | You can choose your favorite color and flavor ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [favorite, favorited, favour, fearless, fearle... |
| 781 | The official ceremony concluded with a vivid m... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 782 | Polish culture celebrated with a traditional d... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 783 | A warm welcome and lots of good wishes from ou... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 784 | Here are tips and tricks for perfect shot \n#E... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 785 | Israel's President Isaac Herzog arrives in the... | NaN | NaN |
| 786 | Eco-friendly artificial limb exhibited at the ... | NaN | NaN |
| 787 | Visit Expo 2020 Dubai, where creativity, innov... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 788 | "The way we built our cities before are way di... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 789 | "The health we know today is perhaps the bigge... | [(Slovenia pavilion), (Solomon Islands pavilio... | [achievable, achievement, achievements, achiev... |
| 790 | "They say that our health not only depends on ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [spellbound, spirited, spiritual, splendid, sp... |
| 791 | An automated pipeline for body composition ana... | NaN | NaN |
| 792 | Make a wish!\n\n#lecadeau #cake #cakeforbreakf... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 793 | "We embrace health from all sides that is why ... | NaN | NaN |
| 794 | "Weather says Winter, heart says Chaclet Hot C... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [hospitable, hot, hotcake, hotcakes, hottest] |
| 795 | Chaclet Winter Mix with Drinks\n\nEnjoy our Ch... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 796 | Enjoy our Chaclet Wonders with the 4 flavors (... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 797 | Customized silver tray mini chocolate\n\nLayer... | NaN | NaN |
| 798 | Customized Egg box\n\nLayer of chocolate mouss... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 799 | Tune in to our revamped flagship show “Studio ... | NaN | NaN |
| 800 | Who doesn’t want to jazz up their night with s... | [(Zambia pavilion), (Zimbabwe pavilion)] | [swanky, sweeping, sweet, sweeten, sweetheart] |
| 801 | Tune in to our revamped flagship show “Studio ... | NaN | NaN |
| 802 | Award-winner Tarek Yamani is all energy—a meld... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 803 | What's new in radiology #AI? Check out The Va... | NaN | NaN |
| 804 | His Excellency, Nasser Khalifa Al Budoor (Assi... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excelent, excellant, excelled, excellence, ex... |
| 805 | this is our time \n#expo2020 https://t.co/L7L8... | NaN | NaN |
| 806 | Love love just love how the kids were enjoying... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 807 | Expo2020 Dubai paid tribute at ' Celebrating u... | NaN | NaN |
| 808 | We maybe need an entire pavilion to learn how ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 809 | Kenyan 🇰🇪 Rapper \nrecording his new single 🍀\... | NaN | NaN |
| 810 | Kenyan 🇰🇪 Rapper \nrecording his new single 🍀\... | NaN | NaN |
| 811 | Aqua Fun is giving #Expo2020 #Dubai special tr... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 812 | "Clue No.1 🗝 She is powerful. She is fearless.... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 813 | Nobel Prize winning activist Malala Yousafzai ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [privileged, prize, proactive, problem-free, p... |
| 814 | VIPs from around the world visit the Japan Pav... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 815 | A pavilion with a twist. @brazilpavilion \n\n#... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 816 | #Expo2020 Tempered Glass For Samsung Galaxy ht... | NaN | NaN |
| 817 | Dubai Expo2020 San marina pavilion. I thoughts... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 818 | #Expo2020 #Dubai was really diverse, cool and ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [convienient, convient, convincing, convincing... |
| 819 | Have you checked out our live street art insta... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 820 | Let's get lost in the woods at Dubai Expo\n\n#... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [loses, losing, loss, losses, lost] |
| 821 | I love you 🥺😘\n#البرنسيسة #ديانا_حداد #princes... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 822 | Phase 2 Volunteers, you will be missed 💚! Than... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 823 | Pure Indigenous products are being showcased a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pure, purify, purposeful, quaint, qualified] |
| 824 | We are so excited to finally have @SIX60 and @... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 825 | If you can smell something in this infinite ro... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 826 | We're accelerating towards the grand finale! E... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [marvel, marveled, marvelled, marvellous, marv... |
| 827 | Join ‘Run the World’ Family Run Today at #Expo... | NaN | NaN |
| 828 | Have you checked out our #Expo2020 National Da... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 829 | @TheUAEnft Maybe you can add Twitter handle of... | NaN | NaN |
| 830 | H.E. Vahan Kerobyan, Armenia’s Minister of Eco... | NaN | NaN |
| 831 | @TheUAEnft Awesome, Lucky\n\n#NFT #NFTs #NFTco... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luckiest, luckiness, lucky, lucrative, luminous] |
| 832 | @TheUAEnft Awesome \n\n#NFT #NFTs #NFTcommun... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 833 | Our pavillon. Great! #expo2020 monaco can be p... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 834 | Proud to be health ambassador on behalf of #ch... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 835 | Fatty fish is a source of vitamin E which act ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 836 | Press Conference - Regional Day Abruzzo 👉 http... | NaN | NaN |
| 837 | We are delighted to be back at @expo2020dubai ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [patience, patient, patiently, patriot, patrio... |
| 838 | His Highness honored 🇩🇪 and @expo2020germany w... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [honorable, honored, honoring, hooray, hopeful] |
| 839 | Make iT Ignite!\nJoin our Registration Evening... | NaN | NaN |
| 840 | A peek to the #Expo2020Dubai from the garden i... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 841 | Just how important are architecture and urban ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 842 | Visit Sultanate of Oman Pavilion and be inspir... | [(Slovenia pavilion), (Solomon Islands pavilio... | [courtly, covenant, cozy, creative, credence] |
| 843 | Today’s business highlights at Expo 2020 Dubai... | NaN | NaN |
| 844 | Historic: #Israel's President @Isaac_Herzog &a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 845 | At #Expo2020 in #Dubai it takes only a few ste... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 846 | An unforgettable day, thank you to our graciou... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [graceful, gracefully, gracious, graciously, g... |
| 847 | Fighting Stigma : India bullish on medical va... | [(Slovenia pavilion), (Solomon Islands pavilio... | [brilliant, brilliantly, brisk, brotherly, bul... |
| 848 | The world at Dubai Expo2020 - Mobility Pavilio... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 849 | Oh hey @SIX60! Catch these legends on Jubilee ... | NaN | NaN |
| 850 | #ExperienceIndia at the Nakheel Mall in Palm J... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excites, exciting, excitingly, exellent, exem... |
| 851 | Happy National Day to all Aussies\n\n#Australi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 852 | Our guests receive unique virtual flowers from... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 853 | WHEN IN SOKOR. CHARS #Expo2020 https://t.co/gz... | NaN | NaN |
| 854 | First NFT with Armenian ornaments. \nGet if fr... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 855 | We set our sights high on ensuring your visit ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [jolly, jovial, joy, joyful, joyfully] |
| 856 | Fighting Stigma : Experts discuss regulatory ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [reform, reformed, reforming, reforms, refresh] |
| 857 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 858 | #MohammedAlattas catches #ArjunSingh off balan... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 859 | Women have been disproportionately affected by... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [invidiously, invidiousness, invisible, involu... |
| 860 | Join us @Expo2020Dubai as we examine lessons l... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 861 | In Russia Pavilion, don't forget to visit the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 862 | Good Morning 💖☀️☀️💛\n\n#NFT #NFTs #NFTcommunit... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 863 | Women's World Majlis just gets bigger and bett... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 864 | #DeepLearning locates landmarks to measure ver... | NaN | NaN |
| 865 | Health is wealth 👩⚕️ \n\nInterested in our fu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 866 | It's Health and Wellness Week at #Expo2020Duba... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 867 | Today we are excited to celebrate Armenia 🙌\n... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 868 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 869 | Visiting #expo2020 in Dubai has giving me so m... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 870 | Enter the weekly raffle draw to stand a chance... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 871 | #FrontPage today: #SheikhMohammed visits Germa... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 872 | @OManojKumar @poonamkachandd But the info woul... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 873 | RUSSIA PAVILION - EXPO2020\nA unique and a pow... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 874 | His Highness Sheikh Mohammed bin Rashid Al Mak... | NaN | NaN |
| 875 | Add a touch of nature with #Artificial #GrassC... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 876 | Choose from the widest collection of #CarpetsD... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 877 | #CarpetsDubai is one of the largest manufactur... | NaN | NaN |
| 878 | #InteriorDubai offers a wide range of Curtain ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 879 | #VinylFlooring supply quality #Acoustic #Vinyl... | NaN | NaN |
| 880 | #ParquetFlooring gives you best #Waterproof #F... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 881 | #ArtificialGrassDubai supplies the pleasant #C... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 882 | #LindiweSisulu is the epitome of Kakistrocracy... | [(Slovenia pavilion), (Solomon Islands pavilio... | [capability, capable, capably, captivate, capt... |
| 883 | Building Virtual Communities of Trust\nThursda... | [(Zambia pavilion), (Zimbabwe pavilion)] | [trump, trumpet, trust, trusted, trusting] |
| 884 | #SciBERT transformer accurately categorizes ca... | [(Slovenia pavilion), (Solomon Islands pavilio... | [accomplished, accomplishment, accomplishments... |
| 885 | Australia Celebrates its National Day at Expo ... | NaN | NaN |
| 886 | This week the Census Bureau served as the U.S.... | NaN | NaN |
| 887 | #DubaiExpo2020 #Expo2020 loading................. | NaN | NaN |
| 888 | You can obviously feel di riddim at the Jamaic... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 889 | Enter a world of imagination and explore endle... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 890 | African union: At the Expo2020 in Dubai, gende... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 891 | United we can prevail and be stronger to push... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [profusion, progress, progressive, prolific, p... |
| 892 | Enter a world of imagination and explore endle... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 893 | Thousands gather to greet Cristiano Ronaldo at... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 894 | All progress takes place outside the comfort z... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [profusion, progress, progressive, prolific, p... |
| 895 | The official ceremony at Al Wasl Plaza was cap... | [(Slovenia pavilion), (Solomon Islands pavilio... | [distinctive, distinguished, diversified, divi... |
| 896 | 📍 Venue: Multipurpose Room, Pakistan Pavilion ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [monumentally, morality, motivated, multi-purp... |
| 897 | @jacobcollier you are amazing👌👌😍😍😍😍😍😍😍 \nJ the... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 898 | Doing nothing all day at all then going to gym... | NaN | NaN |
| 899 | Well planned day at #Expo2020 \n\nHopefully se... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 900 | Emirates A380 with the colourful #expo2020 liv... | NaN | NaN |
| 901 | Expo 2020 Dubai Celebrates Australian National... | NaN | NaN |
| 902 | #Yellow_Sapphire \n\nYellow Sapphire \n5 Carat... | [(Marshall Islands pavilion), (Mauritania pavi... | [galore, geekier, geeky, gem, gems] |
| 903 | Meeting with the @sloveniapavilion to discuss ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 904 | Our Commissioner General Mr. Namory Camara was... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [nurturing, oasis, obsession, obsessions, obta... |
| 905 | Head of the Public Relations and Protocol Depa... | [(Zambia pavilion), (Zimbabwe pavilion)] | [supremacy, supreme, supremely, supurb, supurbly] |
| 906 | Noura Al Kaabi launches World Poetry Tree Anth... | NaN | NaN |
| 907 | Celebrating Australia #expo2020 https://t.co/f... | NaN | NaN |
| 908 | Youngest @NobelPrize Winner, Pakistani activis... | [(Zambia pavilion), (Zimbabwe pavilion)] | [win, windfall, winnable, winner, winners] |
| 909 | You can eventually learn how to dance salsa in... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 910 | Andorra Commends Expo 2020 Dubai’s ‘Unpreceden... | NaN | NaN |
| 911 | HCT Health Science student Farrah Aljneibi gra... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 912 | "Majestic Falcon of Dubai" in the air.\nPrice:... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magnificently, majestic, majesty, manageable,... |
| 913 | FREE NFT at the Australian Pavillon 🥰 #expo202... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 914 | 𝗔𝘁 ❤️ 𝗘𝘅𝗽𝗼 2020 𝘀𝗼𝗺𝗲𝘁𝗵𝗶𝗻𝗴 𝘄𝗼𝗿𝗹𝗱 𝗵𝗮𝘀 𝗻𝗲𝘃𝗲𝗿 𝘀𝗲𝗲... | NaN | NaN |
| 915 | My lovely princess👑😍\n#البرنسيسة #ديانا_حداد #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 916 | H.E. David Hurley, Governor-General of the Com... | NaN | NaN |
| 917 | @AmbRonAdam @YolandeMakolo @RwandaInUAE If in ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 918 | Nice @Malala 👏 \n\nWas there in October and I... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [neat, neatest, neatly, nice, nicely] |
| 919 | Rwanda National Day at #expo2020 is fast appro... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fascination, fashionable, fashionably, fast, ... |
| 920 | During Saudi Coffee Week our visitors have bee... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 921 | Reposted from Instagram @amberlab_nyuad \n\nCh... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 922 | Clay Ross was born in the upstate of SC but he... | NaN | NaN |
| 923 | No safity, no stability ; that is the UAE toda... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [stability, stabilize, stable, stainless, stan... |
| 924 | #Dubai has unveiled what is claimed to be the ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fast-paced, faster, fastest, fastest-growing,... |
| 925 | and she reiterated that not only must girls be... | NaN | NaN |
| 926 | Prison Tiktok teaching me how to cook any food... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 927 | They’re giving out free NFTs at the Australian... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 928 | Join #SAPServices at #expo2020dubai in the SAP... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 929 | @JenkinsSamael A uae thing…expo2020 dubai | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 930 | The Human Fraternity Festival is a message of ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 931 | The only rockstars you should be listening to ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [rockstar, rockstars, romantic, romantically, ... |
| 932 | THE KENYA PAVILLION AT #EXPO2020\nThe Kenya Pa... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 933 | @ProjectChaiwala I’m in Expo2020 and your coun... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [promoter, prompt, promptly, proper, properly] |
| 934 | Sard offers a unique experience that enriches ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 935 | Pakistani activist for female education Malala... | NaN | NaN |
| 936 | Khumariyaan have all of #EXPO2020 dancing. \n\... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [promoter, prompt, promptly, proper, properly] |
| 937 | Today at #EXPO2020 it's the incredible Khumari... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 938 | Tuvalu has got a message for us #expo2020 #Exp... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 939 | A very happy #Expo2020 National Days to our fr... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 940 | #NSTnation The Malaysian Rubber Council (#MRC)... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 941 | The #USAPavilion welcomed the delegates of the... | NaN | NaN |
| 942 | #AbuDhabiCarpets offers you Best #Laminate #Fl... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 943 | Volumetric deep convolutional network achieved... | [(Zambia pavilion), (Zimbabwe pavilion)] | [cancer, cancerous, cannibal, cannibalize, cap... |
| 944 | Buy high-quality and excessive best #Kilim #Ru... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 945 | Which theme would you focus on capturing at @e... | NaN | NaN |
| 946 | Which theme would you focus on capturing at @e... | NaN | NaN |
| 947 | @margbrennan With more than 18000 cases record... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 948 | Araku coffee can cost upto Rs 7000 per kg. Kno... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 949 | Coffee from the Araku valley was made a geogra... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 950 | It's hard not to be mesmerized by the Al Wasl ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [mesmerize, mesmerized, mesmerizes, mesmerizin... |
| 951 | In addition to that, they will also present th... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 952 | @expo2020_jp @expo2020dubai How's the neighbor... | [(Marshall Islands pavilion), (Mauritania pavi... | [noisy, non-confidence, nonexistent, nonrespon... |
| 953 | Read for yourself 🇦🇪.\n#expo2020 https://t.co/... | NaN | NaN |
| 954 | A bit about our first big trip international t... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 955 | Celebrating COVID-19 heroes at the Expo 2020 D... | NaN | NaN |
| 956 | 🦿 Discover the Bioman capsule which highlights... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 957 | HyperSport Responder — The world’s fastest amb... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fast-paced, faster, fastest, fastest-growing,... |
| 958 | Afrian child its possible, no amount of gate k... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 959 | Want to know how to make the delicious Dadinho... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 960 | while his melodies and tunes will take us on a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 961 | @c0ke21 I've been searching for it for years t... | NaN | NaN |
| 962 | POOL ACADEMY AQUATICS (ECA) 🏊\nJOIN & BOOK... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [mar, marginal, marginally, martyrdom, martyrd... |
| 963 | Check out the latest radiology #AI research! h... | NaN | NaN |
| 964 | Fantastic shots 👌🏻👏🏻🙏🏻\n\n@SamiYusuf #samiyusu... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fantastic, fantastically, fascinate, fascinat... |
| 965 | Great Grandpa... you're looking good!\n#egyptp... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 966 | Looking for #inspiration to be an agent for #c... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [insightfully, inspiration, inspirational, ins... |
| 967 | Coffee grown in the highlands of the Araku val... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [refreshed, refreshing, refund, refunded, regal] |
| 968 | Real niggas remember watching this show https:... | NaN | NaN |
| 969 | ➡️The Mercedes-Benz S-class is as much a perso... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 970 | Just how important are #architecture and #urba... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 971 | He was livebin Expo2020 Dubai https://t.co/58W... | NaN | NaN |
| 972 | "Clue No.1 🗝 She is powerful. She is fearless.... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 973 | :::TODAY:::\n#Australia at @Expo2020Dubai \n#E... | NaN | NaN |
| 974 | :::TODAY:::\n#Australia at @Expo2020Dubai \n#E... | NaN | NaN |
| 975 | :::TODAY:::\n#Australia at @Expo2020Dubai \n#E... | NaN | NaN |
| 976 | :::TODAY:::\n#Australia @Expo2020Dubai \n#Expo... | NaN | NaN |
| 977 | Express your ideas with gestures:\nExplorers a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [articulate, aspiration, aspirations, aspire, ... |
| 978 | Thank you Your Highness for honoring @expo2020... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [honorable, honored, honoring, hooray, hopeful] |
| 979 | Minister of State for Foreign Trade. The celeb... | NaN | NaN |
| 980 | Those who keep hope alive during times of cris... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 981 | Greetings to Australia on their National Day a... | NaN | NaN |
| 982 | Another busy week at #Expo2020 in Dubai for DM... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 983 | @elonmusk Thinking of mars at #Expo2020 https:... | NaN | NaN |
| 984 | Funnily enough I'm missing the robots that roa... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enlighten, enlightenment, enliven, ennoble, e... |
| 985 | 🌃5 Days Dubai Winter & Easter Packages🐣\n\... | NaN | NaN |
| 986 | Before #Expo2020 ends, we urge the #UAE govt t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 987 | Spotted the greatest Asian conquerer at #Mongo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 988 | We are the people of love...\n🪕♥️\n\nWatch now... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 989 | Ms. Lena Borno (Australian National University... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 990 | Expo 2020 Dubai begins the Camel Racing Festiv... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [reward, rewarding, rewardingly, rich, richer] |
| 991 | #Breaking - Cristiano Ronaldo has picked up th... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 992 | There are more and more new sources to collect... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 993 | Expo day 1 of volunteering! #Expo2020 \n@expo2... | NaN | NaN |
| 994 | Our PR ambassador, Yumi Wakatsuki (@WAKA_Y_off... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 995 | Minister of Economy Vahan Kerobyan will lead a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 996 | Red paths are softer #expo2020 #expodetails ht... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [snazzy, sociable, soft, softer, solace] |
| 997 | Today we are excited to celebrate Australia 🙌... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 998 | What an honour to meet the Nobel Peace Prize l... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [privileged, prize, proactive, problem-free, p... |
| 999 | Food For Future Summit \nDWTC has launched it... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1000 | Come to #Expo2020 with your family and get mes... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [mesmerize, mesmerized, mesmerizes, mesmerizin... |
| 1001 | Expo 2020’s UK pavilion showcases the first pr... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1002 | South African 🇿🇦 Rapper \nrecording his new si... | NaN | NaN |
| 1003 | South African 🇿🇦 Rapper \nrecording his new si... | NaN | NaN |
| 1004 | South African 🇿🇦 Rapper \nrecording his new si... | NaN | NaN |
| 1005 | Dubai Expo 2020\n\n"Connecting Minds, Creating... | NaN | NaN |
| 1006 | We can make your dreams come true. #Belarus #I... | NaN | NaN |
| 1007 | Let's take the first step together. #Uzbekista... | NaN | NaN |
| 1008 | Dubai ruler tours the pavilion of Germany at t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1009 | Discover Azerbaijan with Frisaga. #Ukraine #Uz... | NaN | NaN |
| 1010 | .\n\nThe fractional ownership investment at SL... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 1011 | A scale model of Hyperloop is at the Spain Pav... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1012 | It was an honor inviting our friends from USA ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 1013 | Al Ali Yacht Celebrating #50th #nationaldayuae... | NaN | NaN |
| 1014 | @AliZafarsays thank u for this... It was su h ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [memorable, merciful, mercifully, mercy, merit] |
| 1015 | #ExperienceIndia at the Nakheel Mall in Palm J... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excites, exciting, excitingly, exellent, exem... |
| 1016 | Zimbabwe Deputy Minister of Health and Child C... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1017 | Passionate dancers, romantic songs and delicio... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [paramount, pardon, passion, passionate, passi... |
| 1018 | Expo 2020 Dubai’s Pakistan pavilion welcomes a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [nicer, nicest, nifty, nimble, noble] |
| 1019 | "Breaking Barriers Through Digital Medicine" b... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1020 | Leading figure in Indipop and the Bollywood in... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luckiest, luckiness, lucky, lucrative, luminous] |
| 1021 | Really great time in Dubai with customers and ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 1022 | Register for AED 100 at https://t.co/gH7N3bOrP... | NaN | NaN |
| 1023 | Look: #Dubai gets Dh13-million ambulance respo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1024 | Discover ideas and innovations for a more sust... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 1025 | Self Storage Dubai provides flexible and conve... | [(Slovenia pavilion), (Solomon Islands pavilio... | [contribution, convenience, convenient, conven... |
| 1026 | Our world and our wellbeing are interconnected... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1027 | Expo 2020 Dubai hosts football legend Cristian... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fancier, fancinating, fancy, fanfare, fans] |
| 1028 | Look: #Dubai gets Dh13-million ambulance respo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1029 | Dubai reveals the world’s fastest and most exp... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fast-paced, faster, fastest, fastest-growing,... |
| 1030 | Golf meets @EXPO2020Dubai 👋\n\n@Collin_Morikaw... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1031 | Our exhibition is presented in a tour format a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1032 | They are talking about Asiwaju traveling abroa... | [(Zambia pavilion), (Zimbabwe pavilion)] | [youthful, zeal, zenith, zest, zippy] |
| 1033 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 1034 | Good Morning ☀️☀️☀️ \nWishing you a sunny brig... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1035 | At 10am we're ready to welcome you. Book ahead... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1036 | Chairman of Abu Dhabi Executive Office visits ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1037 | To all the explorers, wanderers and travelers ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [grand, grandeur, grateful, gratefully, gratif... |
| 1038 | Full Video Link : https://t.co/91DaOYmxfd\nCri... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1039 | The view from the Morocco Pavilion #Expo2020Du... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1040 | @Tourism_gov_za @LindiweSisuluSA @TeamSA_Expo2... | [(Slovenia pavilion), (Solomon Islands pavilio... | [beautifully, beautify, beauty, beckon, beckoned] |
| 1041 | Weakly supervised #DeepLearning models classif... | NaN | NaN |
| 1042 | We are excited to announce the participation o... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excite, excited, excitedly, excitedness, exci... |
| 1043 | 📽️ The moment Cristiano Ronaldo (@Cristiano) ... | NaN | NaN |
| 1044 | Join us at #expo2020 Dubai for a unique opport... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [insightfully, inspiration, inspirational, ins... |
| 1045 | Cristiano Ronaldo was given a warm welcome at ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1046 | #FrontPage today: Australian official praises ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wow, wowed, wowing, wows, yay] |
| 1047 | Dubai ruler meets with the Governor-General of... | NaN | NaN |
| 1048 | H.H. Sheikh Abdullah bin Zayed Al Nahyan, Mini... | NaN | NaN |
| 1049 | The National Day of principality of Andorra wa... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1050 | If a miner can successfully add a block to the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1051 | @Ina_aIi00 Man said 4 hours seexo man | NaN | NaN |
| 1052 | Somebody pinch me please!!!! #Expo2020Dubai #e... | NaN | NaN |
| 1053 | Stray kids Exp2020 Dubai 🇦🇪performance in fr... | NaN | NaN |
| 1054 | Those who are able to read between the lines o... | NaN | NaN |
| 1055 | We were already masked but my kids were really... | NaN | NaN |
| 1056 | Finally!!!\n\n#Expo2020 #Dubai #Dubai2020Expo ... | NaN | NaN |
| 1057 | What a fabulous way to end the week! Meeting t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [privileged, prize, proactive, problem-free, p... |
| 1058 | Automatic Localization and Brand Detection of ... | NaN | NaN |
| 1059 | Minister of State for Foreign Trade. The celeb... | NaN | NaN |
| 1060 | #Expo2020 | @IsaMunozM rounded off a busy day ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1061 | #Expo2020 | @IsaMunozM met with @seedgroupme, ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1062 | #Expo2020Dubai | @IsaMunozM toured #Expo2020. ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [appreciated, appreciates, appreciative, appre... |
| 1063 | Met @Cristiano Ronaldo dos Santos Aveiro😭 Neve... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [richly, richness, right, righten, righteous] |
| 1064 | A jewel in the desert \n\n#jewel #desert #duba... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1065 | Dubai is ahead of the world. here the economy... | NaN | NaN |
| 1066 | The one and only @BalqeesFathi !\nYou set the ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1067 | From that time till we did our part and being ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1068 | Visited Morocco again and it’s still one of my... | [(Palestine pavilion), (Panama pavilion), (Pap... | [favorite, favorited, favour, fearless, fearle... |
| 1069 | 'You are my motivation,' Ronaldo tells fans at... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fancier, fancinating, fancy, fanfare, fans] |
| 1070 | You don't want to be the guy telling people to... | NaN | NaN |
| 1071 | Great honor for me to accompany Madam Presiden... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [modern, modest, modesty, momentous, monumental] |
| 1072 | We are beyond excited to be part of “The year ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excite, excited, excitedly, excitedness, exci... |
| 1073 | Congrats to Kuwait for showcasing birds at #ex... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [heartwarming, heaven, heavenly, helped, helpful] |
| 1074 | Cristiano Ronaldo's Statements During his Visi... | NaN | NaN |
| 1075 | Grealish telling CR7 being his idol. Everyone ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1076 | Never met a sunset I didn’t like 🌅 #expo2020 #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1077 | Grealish at Expo 2020 Dubai now 😍\n#Grealish #... | NaN | NaN |
| 1078 | Sheikh Mohammed fulfils Emirati boy’s wish to ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1079 | Finishing up my trip to #Expo2020 thinking abo... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fancier, fancinating, fancy, fanfare, fans] |
| 1080 | 💢Cristiano Ronaldo talks about his love for #D... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1081 | Dubai Expo, paradise on earth #Expo2020Dubai #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pamperedly, pamperedness, pampers, panoramic,... |
| 1082 | In a nutshell: the aggression and the declarat... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1083 | A glimpse of the most beautiful moments that v... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 1084 | Discover what Scotland is doing to promote wel... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1085 | @NotHideko_ I actually wanna go xiis and check... | NaN | NaN |
| 1086 | Professor @jasonleitch at the Scotland Digital... | NaN | NaN |
| 1087 | #Bogota present at #Expo2020 through @investin... | NaN | NaN |
| 1088 | Accelerate #innovation in #HumanExperienceMana... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1089 | Thousand of Fans gathered to greet RONALDO at ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fancier, fancinating, fancy, fanfare, fans] |
| 1090 | Our visitors enjoyed exploring coffee colors a... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enjoyably, enjoyed, enjoying, enjoyment, enjoys] |
| 1091 | #RTA informs you about the updated buses’ oper... | NaN | NaN |
| 1092 | See it on https://t.co/iKOHLUidUv and stay tun... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1093 | The #KuwaitPavilion at #Expo2020Dubai through ... | NaN | NaN |
| 1094 | .@TheMinimalists would maybe love the Terra Pa... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1095 | Relax with the aroma of coffee blends and ench... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1096 | Join Professor @jasonleitch at the Scotland Di... | NaN | NaN |
| 1097 | What a pleasure it is to welcome @Malala, her ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pleasure, plentiful, pluses, plush, plusses] |
| 1098 | Take part in a variety of fun activities at th... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1099 | Dubai #Expo2020\n\nEveryone else: LOOK AT WHAT... | NaN | NaN |
| 1100 | The Black Eyed Peas MADE IT HAPPEN! The MEGA S... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1101 | In celebration of his country’s national day, ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1102 | Relax with the aroma of coffee blends and enc ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1103 | Ronaldo spoke about family, health, and motiva... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [reliable, reliably, relief, relish, remarkable] |
| 1104 | "Home is where love resides, memories are crea... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1105 | Emirates Airways Airbus A380-861 A6-EOT / ZRH ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [stronger, strongest, stunned, stunning, stunn... |
| 1106 | Such a fab afternoon at #Expo2020 and an absol... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1107 | My lovely handmade crochet blanket \nThis beau... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 1108 | We’re learning about women’s INCREDIBLE contri... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 1109 | How could i miss an opportunity to see this ma... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 1110 | Cristiano Ronaldo in #Dubai at the #expo2020 h... | NaN | NaN |
| 1111 | The Coffee Exhibition showcases the types of S... | NaN | NaN |
| 1112 | We're excited about @ScotExpo2020's Digital He... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1113 | 🗓️ Join WDO Member @AndreuWorld on 31 January ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1114 | @girney_expo2020 ouh i see. i got different is... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1115 | Football legend Cristiano Ronaldo was the big ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [attraction, attractive, attractively, attune,... |
| 1116 | Of course the South Africa Expo2020 stand has ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 1117 | {New Article}\n\nIf you are in UAE, don’t miss... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1118 | @MimieLeesya I can't use anything like I can't... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1119 | During Health and Wellness Week, Professor Kho... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1120 | Alira has a special show due to a special tale... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1121 | You can now order a memento of your visit to t... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1122 | Amazing! The incredible Cristiano Ronaldo made... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 1123 | Check out Noor & Hayat's new episode about... | NaN | NaN |
| 1124 | Who else was at #Expo2020 to see @Cristiano to... | NaN | NaN |
| 1125 | Meanwhile in #Dubai #Expo2020 https://t.co/kOp... | NaN | NaN |
| 1126 | Scotland is set to showcase our Digital Health... | NaN | NaN |
| 1127 | Ronaldo at Dubai 😍\nCraze Level Infinity 🔥\n\n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [crass, craven, cravenly, craze, crazily] |
| 1128 | @girney_expo2020 yeah my ig down also | NaN | NaN |
| 1129 | You can now order souvenirs from the #SaudiAra... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 1130 | #Cristiano_Ronaldo from #Expo2020 : I've neve... | NaN | NaN |
| 1131 | The Great Indian Recipe Contest has started. A... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1132 | Exciting news! In celebration of our milestone... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1133 | This! Was mad disappointed & very underwhe... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1134 | Record breaking goal scorer and legend footbal... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1135 | Waiting For @JackGrealish Entry \n\n#EXPO2020 ... | NaN | NaN |
| 1136 | Football legend Cristiano Ronaldo visits Expo ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [paramount, pardon, passion, passionate, passi... |
| 1137 | In partnership with @InsamlingChoice, we are t... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thoughtfulness, thrift, thrifty, thrill, thri... |
| 1138 | I would like to make the claim to fame that @N... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1139 | I would like to make the claim to fame that @N... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1140 | Watch: @Cristiano Ronaldo visits #Expo2020Duba... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1141 | Oh hey Grealish #Expo2020 https://t.co/7wxW5l8nvB | NaN | NaN |
| 1142 | Designed by #MatteoBelletti, a 24-year-old stu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1143 | During Health Week at Expo2020, we’re turning ... | NaN | NaN |
| 1144 | 🚨 The news we’ve all been waiting for! 🚨 Our E... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1145 | Sheikh Hamdan bin Mohammed, #crown #Prince of... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1146 | ben and ben sa EXPO2020 pls 😭🤞🏼 | NaN | NaN |
| 1147 | Our #eForce Student Formula Team will present ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1148 | Sheikh Hamdan bin Mohammed, Crown Prince of Du... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1149 | Kolhapuri chappals are Indian decorative hand-... | NaN | NaN |
| 1150 | The Sports Boulevard Project @SportsBlvdSA in ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [healthy, hearten, heartening, heartfelt, hear... |
| 1151 | Football legend Cristiano Ronaldo tours Expo 2... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [paramount, pardon, passion, passionate, passi... |
| 1152 | Coming up at @UKPavilion2020 on Thursday the 1... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1153 | Ronaldo just being Ronaldo. \n#ManUtd #Expo202... | NaN | NaN |
| 1154 | 🎉 🎉 🎉 The @ParksCanada mascot, Parka, is makin... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1155 | It was great to see Mariarosa Cutillo at #UNHu... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1156 | Important event re #UAE #Expo2020- not to miss... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 1157 | Small gems in small pavilions: Fiji, Montenegr... | [(Marshall Islands pavilion), (Mauritania pavi... | [galore, geekier, geeky, gem, gems] |
| 1158 | Automatic Diagnosis Labeling of Cardiovascular... | NaN | NaN |
| 1159 | KENYA MEANS BUSINESS AT #EXPO2020\nKenya plans... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1160 | Legend\n💎💎💎💎💎💎💎💎\n#بلقيس_اكسبو_دبي #Expo2020 h... | NaN | NaN |
| 1161 | Moving different living in Dubai 🇦🇪 not a vac... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1162 | The moment @Cristiano came up to the stage at ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fancier, fancinating, fancy, fanfare, fans] |
| 1163 | Beautiful @Talabat #Dubai #mydubai #talabat #t... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 1164 | Kolhapuri chappals are made from leather that ... | NaN | NaN |
| 1165 | How can a hospital be bigger without growing? ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [openly, openness, optimal, optimism, optimistic] |
| 1166 | Check out today's #FreeFriday @Radiology_AI ar... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [fatique, fatty, fatuity, fatuous, fatuously] |
| 1167 | i saw Cristiano Ronaldo today at Expo2020 Duba... | NaN | NaN |
| 1168 | Oh hey @Cristiano #Expo2020 https://t.co/Gkiya... | NaN | NaN |
| 1169 | Premier League Stars enjoying the winter break... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 1170 | @LynnHolliday8 @Dr_FarrisD These robots are al... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 1171 | Yellow Friday with Ronaldo @Cristiano 🐐!! 💛\n\... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wonderous, wonderously, wonders, wondrous, woo] |
| 1172 | Unreal scenes at Expo 2020 as Cristiano Ronald... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1173 | Get ready to celebrate our #Expo2020 National ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1174 | My GOAT @Cristiano 🤩#expo2020 https://t.co/nNm... | NaN | NaN |
| 1175 | Join us at Expo 2020 Dubai as we celebrate Spa... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 1176 | @Tourism_gov_za - is there a response to this ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1177 | On vacation with Cristiano Ronaldo live at Al ... | NaN | NaN |
| 1178 | Math notes \n#math #maths #distancelearning #e... | NaN | NaN |
| 1179 | A leader is someone who leads through example ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1180 | The India Pavilion at EXPO2020 Dubai will host... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prowess, prudence, prudent, prudently, punctual] |
| 1181 | With more than 770 life sciences organisations... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 1182 | Boost your signal with #Lamatel high gain &... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [humorous, humorously, humour, humourous, ideal] |
| 1183 | AIM 2022 Startup welcomes https://t.co/6ATiirg... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1184 | "Clue No.1 🗝 She is powerful. She is fearless.... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 1185 | That's it from the goat. Unreal scenes #Expo20... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unquestionably, unreal, unrestricted, unrival... |
| 1186 | The goat in Expo2020 😢🤍🤍 https://t.co/aQm7mcmTrc | NaN | NaN |
| 1187 | Our #SheerCurtains Abu Dhabi are famous for th... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [modern, modest, modesty, momentous, monumental] |
| 1188 | Upholstery Abu Dhabi is one of the best suppli... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1189 | #PersianRugs Abu Dhabi previously knots by nom... | NaN | NaN |
| 1190 | We sell numerous curtains in #DragonMart, whic... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1191 | We are skilled in repairing all types of beds,... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [sincere, sincerely, sincerity, skill, skilled] |
| 1192 | Cristiano Ronaldo live right now at @expo2020d... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [richly, richness, right, righten, righteous] |
| 1193 | #HotExpoOffers Clearance offer on a variety of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1194 | The first steps to a "breathtaking journey int... | [(Slovenia pavilion), (Solomon Islands pavilio... | [breathlessness, breathtaking, breathtakingly,... |
| 1195 | #MotorizedCurtains are a piece of delicately d... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1196 | If you want to give an absolute look to the in... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1197 | How Humans Heal — Expo 2020’s curated visitor ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [harmonize, harmony, headway, heal, healthful] |
| 1198 | #HotExpoOffers Clearance offer on a variety of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1199 | #capitalcom \n#winter\n#مرسول_بارك\n#AskShadab... | NaN | NaN |
| 1200 | Amazing Finnish pavilion, great iHAC space pro... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1201 | You couldn’t be more centrally located in Duba... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 1202 | Wizards, are you ready for the TCS IT Wiz - UA... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1203 | Discover Haus 51 bespoke services, call us on ... | NaN | NaN |
| 1204 | For a smooth, hassle free travel, Book an amaz... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1205 | Explore the world of sports and fitness at the... | NaN | NaN |
| 1206 | All of the UAE is at the #Expo2020 to see the... | NaN | NaN |
| 1207 | #Thailand invites #UAE to engage in contract #... | [(Slovenia pavilion), (Solomon Islands pavilio... | [bonus, bonuses, boom, booming, boost] |
| 1208 | **Travel news update**\n.\nThe United Arab Emi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1209 | @TalkitAfrica merch is ready\nY'all can start... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1210 | Celebrity Chef #CarlaHall is on #StudioExpo sh... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1211 | Five #Kiwi artists have joined forces at #Expo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1212 | Dubai Bags Record for World’s Largest Inflatab... | NaN | NaN |
| 1213 | MCCLAREN 720S SPIDER -Most convertible superc... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 1214 | Shankar–Ehsaan–Loy, the award-winning trio fro... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 1215 | Celebrating the dedication of #WorldSecurity e... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [outshone, outsmart, outstanding, outstandingl... |
| 1216 | Are you ready world? Tonight the Queen is goin... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1217 | As a homegrown company and one of the fastest ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 1218 | The #GCC Pavilion at #Expo2020 #Dubai conclude... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1219 | Day 120 of 182! Comment 🍃 if you’re planning t... | NaN | NaN |
| 1220 | Kolhapuri chappla can be dated back to the 13t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 1221 | Sheikh Hamdan visits DP World Pavilion at #Exp... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1222 | Join us for the long-awaited #SpainDay at #Exp... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1223 | Fire hydrants at Austria Pavilion are really i... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1224 | Delicious Curries #motimahal #bahrain #juffair... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 1225 | Stuffed Potatoes #motimahal #bahrain #juffair ... | NaN | NaN |
| 1226 | Sizzlings #motimahal #bahrain #juffair #dubai ... | NaN | NaN |
| 1227 | We Use Only Quality Natural Spices #motimahal ... | NaN | NaN |
| 1228 | :::TODAY:::\n#Andorra @Expo2020Dubai \n#Expo2... | NaN | NaN |
| 1229 | :::TODAY:::\n#Andorra @Expo2020Dubai \n#Expo2... | NaN | NaN |
| 1230 | At this week's @expo2020dubai, our VP of Sales... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1231 | Delicious Chicken Afghani #motimahal #bahrain ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 1232 | Delicious Goan Shrimp Curry #motimahal #bahrai... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 1233 | Delicious #motimahal #bahrain #juffair #dubai ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 1234 | Waiting for the GOAT #Expo2020 \nSUUUUUIIIIIII... | NaN | NaN |
| 1235 | 【Last Day】\nVisitors from all over the world s... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1236 | Quality First at #motimahal #bahrain #juffair ... | NaN | NaN |
| 1237 | Our Famous Fish Curry #motimahal #bahrain #juf... | [(Palestine pavilion), (Panama pavilion), (Pap... | [faithfulness, fame, famed, famous, famously] |
| 1238 | Quality First at #motimahal #bahrain #juffair ... | NaN | NaN |
| 1239 | World’s Highest SkyView Glass Slide and Glass ... | NaN | NaN |
| 1240 | 📢@EquidemOrg is launching a major report on ra... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1241 | Delicious Shrimp Lasooni #motimahal #bahrain #... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 1242 | Pleased to announce that we have filled this v... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 1243 | Introducing this week's theme week, "Health &a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 1244 | Quality First at #motimahal #bahrain #juffair ... | NaN | NaN |
| 1245 | A snap of architecture at @expo2020dubai has c... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1246 | Today we are excited to celebrate Andorra 🙌\n... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1247 | CR7, the international superstar @Cristiano is... | NaN | NaN |
| 1248 | #IndiaPavilion has had over 8,500,000 visitors... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 1249 | Participate in a unique on-site #HXM innovatio... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1250 | The stage is set. Waiting to catch a glimpse o... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1251 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | NaN | NaN |
| 1252 | #MTC #MalaysianTimberCouncil #KayuKayanKomodit... | NaN | NaN |
| 1253 | Black Eyed Peas sang "I got a feeling at #Expo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1254 | We partnered with Enterprise Estonia to host a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1255 | Participate in a unique on-site #HXM innovatio... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1256 | @COP26 Respect the rights of #indigenouspeople... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [reward, rewarding, rewardingly, rich, richer] |
| 1257 | AFRICAN COUNTRIES EMBRACE INTRA AFRICAN TRADE\... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1258 | Join #SAPServices at #expo2020dubai in the SAP... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1259 | The full video of #Solomon Pavilion - Ocean of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 1260 | We are proud to join Scotland's Digital Health... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 1261 | Expo 2020 Dubai Celebrates International Day o... | NaN | NaN |
| 1262 | Challenge your imagination, and see the wonder... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delightful, delightfully, delightfulness, dep... |
| 1263 | Challenge your imagination, and see the wonder... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delightful, delightfully, delightfulness, dep... |
| 1264 | @expo2020dubai @FrontlineUAE unfortunately the... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [keenly, keenness, kid-friendly, kindliness, k... |
| 1265 | The #GCC Pavilion at #Expo2020 #Dubai hosts a ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1266 | Explore the World`s newest republic - #Barbado... | NaN | NaN |
| 1267 | #جمعة_مباركة\n#يوم_الجمعة\n#ادعيه\n#مساء_الخير... | NaN | NaN |
| 1268 | The Sustainability Pavilion at #Expo2020 is a ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 1269 | Through the eyes of our special guests, here's... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1270 | Register and join the discussion at virtual Ex... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1271 | #AlibabaCloud's CDN isn't just helping MNC, In... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1272 | Head to our courtyard to see 🇳🇿 Chefs Kasey an... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1273 | The discussion session held at #Expo2020 on Sa... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [profusion, progress, progressive, prolific, p... |
| 1274 | Got your Expo Kids’ Camp stamp yet? This weeke... | [(Slovenia pavilion), (Solomon Islands pavilio... | [convienient, convient, convincing, convincing... |
| 1275 | The famous Maternity package at Finland Pavili... | [(Palestine pavilion), (Panama pavilion), (Pap... | [faithfulness, fame, famed, famous, famously] |
| 1276 | Buy and sell foreign currencies\nconfidently\n... | NaN | NaN |
| 1277 | The #UAE is hosting discussions on ways to bui... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 1278 | Kolhapuri chappals are Indian decorative hand-... | NaN | NaN |
| 1279 | Take part in the #UAE_Innovates events at Expo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1280 | NEW ROLE - Senior Marketing Manager – GCC\nAPP... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sweetly, sweetness, swift, swiftness, talent] |
| 1281 | Join the interactive and informative workshops... | NaN | NaN |
| 1282 | Kolhapuri chappals are Indian decorative hand-... | NaN | NaN |
| 1283 | Today’s business highlights at Expo 2020 Dubai... | NaN | NaN |
| 1284 | #Expo2020 \n#Expo2020\nthe best place to be @m... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1285 | Cristiano Ronaldo to visit the @expo2020dubai\... | NaN | NaN |
| 1286 | For the International Day of Education, Expo 2... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1287 | A very important moment for the Jewish communi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 1288 | #Expo2020 and event you really need to attend!... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1289 | What did the camel say to the Oasis? I’ll neve... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [nurturing, oasis, obsession, obsessions, obta... |
| 1290 | @Dr_FarrisD #Expo2020 has robots telling us to... | NaN | NaN |
| 1291 | @gccia Hosts Workshop on #Cyber #Security Str... | NaN | NaN |
| 1292 | Congratulations to @CrescentPetrol on going li... | [(Slovenia pavilion), (Solomon Islands pavilio... | [confident, congenial, congratulate, congratul... |
| 1293 | Share your photos or videos on Instagram with ... | NaN | NaN |
| 1294 | Off to #Expo2020 | NaN | NaN |
| 1295 | That’s Some of what’s special about us #learna... | NaN | NaN |
| 1296 | LET'S GET FILIPINO! The FIESTAVAGANZA at the B... | NaN | NaN |
| 1297 | One of the most beautiful and exciting places ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 1298 | AquaFun gave Expo 2020 Dubai special tribute i... | [(Slovenia pavilion), (Solomon Islands pavilio... | [achievable, achievement, achievements, achiev... |
| 1299 | Simply register at Premier Online and meet us ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 1300 | Training and having fun at the same time… 💜💜💜 ... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 1301 | Do you want to have an immersive experience at... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1302 | Good morning from #Expo2020 https://t.co/lUJNT... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1303 | So starts #expo2020 tweets \n\nParked at oppor... | NaN | NaN |
| 1304 | @GFItaliano @Agenzia_Ansa @ItalyExpo2020 @ITAD... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pleasure, plentiful, pluses, plush, plusses] |
| 1305 | Saudi’s largest-ever tech event, LEAP, to take... | NaN | NaN |
| 1306 | Here are top #Expo2020 #Dubai \n#Expo2020Dubai... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 1307 | Join the Health & Wellness Theme Week at @... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [lifeless, limit, limitation, limitations, lim... |
| 1308 | Sachin Nautiyal steps out of range of Sajid Ab... | NaN | NaN |
| 1309 | It’s time to open an account!\n#businessadviso... | NaN | NaN |
| 1310 | @Sepc_India takes a business delegation to Wor... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1311 | Good Morning to Ronaldo fans only and to the l... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luckiest, luckiness, lucky, lucrative, luminous] |
| 1312 | Expo 2020 Dubai’s Israel pavilion honours the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1313 | #DeepLearning to detect air-trapping in the lu... | NaN | NaN |
| 1314 | Are you ready to welcome CR7 in Dubai #Expo202... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1315 | Participate in a unique on-site #HXM innovatio... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1316 | FTA continues the review of redetermining pena... | NaN | NaN |
| 1317 | Our world and our wellbeing is interconnected ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1318 | We’re learning about Arab and Muslim women’s I... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 1319 | How is Scotland using technology to transform ... | NaN | NaN |
| 1320 | That's a good idea\n#uae #dubai #expo2020 #pla... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1321 | The #CommercialCarpentry Building Services are... | NaN | NaN |
| 1322 | Artificial Turf is made and composed of differ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1323 | https://t.co/73xWf33CHb has been serving as on... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1324 | #HotExpoOffers Clearance offer on a variety of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1325 | #ArtificialGrassDubai supply the variety of #V... | [(Slovenia pavilion), (Solomon Islands pavilio... | [distinctive, distinguished, diversified, divi... |
| 1326 | Hence out services are offered at #KitchenViny... | NaN | NaN |
| 1327 | Dubai Ruler, Crown Prince and football legend ... | NaN | NaN |
| 1328 | #HotExpoOffers Clearance offer on a variety of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1329 | #HotExpoOffers Clearance offer on a variety of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1330 | Our #LinoleumFloorings Abu Dhabi are best for ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1331 | The #LaboratoriesVinylFlooring also contains a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1332 | #HotExpoOffers Clearance offer on a variety of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1333 | #HotExpoOffers Clearance offer on a variety of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1334 | #HotExpoOffers Clearance offer on a variety of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1335 | #HotExpoOffers Clearance offer on a variety of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1336 | There are two basic ways the #MotorizedBlinds ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 1337 | https://t.co/2i9anusfQx present you latest #Ba... | NaN | NaN |
| 1338 | Dubai Expo 2020 includes some of the most inno... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1339 | At #DubaiInteriors we provide best quality #Bl... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1340 | #RisalaFurniture offers high quality #Shutter ... | NaN | NaN |
| 1341 | #CarpetsDubai have the most first rate excelle... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excellent, excellently, excels, exceptional, ... |
| 1342 | #InteriorsDubai is one of the largest supplier... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1343 | The perfect way for decorating your floor is t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 1344 | #ParquetFlooring is one of the largest manufac... | NaN | NaN |
| 1345 | If a miner can successfully add a block to the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1346 | If a miner can successfully add a block to the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1347 | Is anyone elses Instagram down | NaN | NaN |
| 1348 | If a miner can successfully add a block to the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1349 | If a miner can successfully add a block to the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1350 | If a miner can successfully add a block to the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1351 | Join #SAPServices at #expo2020dubai in the SAP... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 1352 | Expo2020 Dubai celebrates unsung frontline her... | NaN | NaN |
| 1353 | Can you name the brand of that cervical spine ... | NaN | NaN |
| 1354 | In Video: Visit Australian Pavilion at Expo 20... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enterprising, entertain, entertaining, entert... |
| 1355 | HE Noura bint Mohammed Al Kaabi Launches World... | NaN | NaN |
| 1356 | I'm happy to announce that together with piani... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 1357 | @MonicaK2511 @drshamamohd PM Modi was schedule... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1358 | Slovakia celebrates its National Day at #Expo2... | NaN | NaN |
| 1359 | @Cristiano \nThese children killed by UAE gove... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 1360 | January 27 was Slovakia's National Day at #Exp... | NaN | NaN |
| 1361 | Dr. @NayyarUjala traveled to #Expo2020 from #P... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [insightfully, inspiration, inspirational, ins... |
| 1362 | The largest spinning wheel in the world\n\n#ex... | [(Zambia pavilion), (Zimbabwe pavilion)] | [witty, won, wonder, wonderful, wonderfully] |
| 1363 | CR7, the international superstar, is visiting ... | NaN | NaN |
| 1364 | CR7, the international superstar, is visiting ... | NaN | NaN |
| 1365 | Sky above, sand below, peace within.\n\n#sky #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 1366 | Good night Dubai #Expo2020 #ExpoDubai2020 #MyD... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1367 | Sky above, sand below, peace within. \n\n#dese... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 1368 | @Contact_AMI #AMIPVC #pfas #pvc #foreverchemic... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 1369 | The heart of Expo, Al Wasl Plaza beats in blue... | NaN | NaN |
| 1370 | Only 3 days left until the 4th edition of #RTA... | NaN | NaN |
| 1371 | @drshamamohd Yes it's true i have been to the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1372 | Here are #Expo2020 moments \n#Expo2020Dubai \n... | NaN | NaN |
| 1373 | Man City star Ruben Dias visits #Expo2020 #Dub... | NaN | NaN |
| 1374 | @LahaneTanisha Well the opensea announcement h... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 1375 | Join us for “Preventing & Preparing to Bea... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1376 | @Bernie_Straw Nice, check out my collection\n\... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [neat, neatest, neatly, nice, nicely] |
| 1377 | The official ceremony in Al Wasl Plaza include... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 1378 | Pakistany Singer 🇵🇰 recording time 😎\n#gtrreco... | NaN | NaN |
| 1379 | Pakistany Singer 🇵🇰 recording time 😎\n#gtrreco... | NaN | NaN |
| 1380 | Pakistany Singer 🇵🇰 recording time 😎\n#gtrreco... | NaN | NaN |
| 1381 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1382 | UAE Minister of Climate Change and the Environ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 1383 | Dear @KHDA , genuine question…no drama…\n\nAny... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pretty, priceless, pride, principled, privilege] |
| 1384 | 🏴Scotland’s digital healthcare event @ex... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1385 | Relax with the aroma of coffee blends and ench... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1386 | David Russell from our team is looking forward... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [patience, patient, patiently, patriot, patrio... |
| 1387 | Me to the somaliland government so they can fr... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 1388 | Mahhddd o! 🤩💃🏾🔥🎆🤸🏾♀️🎇❣🎉👏🏾🎊👊🏾🎈⚽️🏆🥇👑🇦🇪\n\n@Cris... | NaN | NaN |
| 1389 | A gift from the heavens at the Czech Republic ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1390 | HH Sheikh Hamdan bin Mohammed bin Rashid: we l... | [(Slovenia pavilion), (Solomon Islands pavilio... | [achievable, achievement, achievements, achiev... |
| 1391 | 2/2 Learn more about it at the Morocco Pavillo... | NaN | NaN |
| 1392 | Interspersed with a series of events that adde... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 1393 | WHO WILL TAKE THE CROWN?\n\nTune in on the 28 ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1394 | As we wrap up the last day of #DIPMF, we would... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1395 | #USAPavilion Commissioner General Bob Clark an... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1396 | @RGVzoomin Dont get it in pic u are high or wh... | NaN | NaN |
| 1397 | Enjoy the closing performances of Saudi Coffee... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 1398 | Speaker National Assembly of Pakistan @AsadQai... | NaN | NaN |
| 1399 | During Saudi Coffee Week at the #SaudiArabia P... | [(Palestine pavilion), (Panama pavilion), (Pap... | [finely, finer, finest, firmer, first-class] |
| 1400 | CR7, the international superstar, is visiting ... | NaN | NaN |
| 1401 | What a sacred, Mind blowing composition! breat... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [masterfully, masterpiece, masterpieces, maste... |
| 1402 | With the delicious aromas and flavors of each ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 1403 | If a miner can successfully add a block to the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1404 | @Verofax & @distichain are excited to brin... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excites, exciting, excitingly, exellent, exem... |
| 1405 | As Expo 2020's premier technology partner, SAP... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 1406 | A nice visitor on a beautiful day at ZRH airpo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [neat, neatest, neatly, nice, nicely] |
| 1407 | Incredible - Holocaust Remembrance Ceremony in... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 1408 | @IrelandatExpo @expo2020dubai @NCH_Music What ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1409 | HAPPINESS comes from your own ACTION!\n\nThank... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 1410 | Incredible - Holocaust Remembrance Ceremony in... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 1411 | I love you 🥺😘\n#البرنسيسة #ديانا_حداد #princes... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1412 | Such a beauty is rare 💫🎶🌟! masterpieces! Breat... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [masterfully, masterpiece, masterpieces, maste... |
| 1413 | Incredible - Holocaust Remembrance Ceremony in... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 1414 | Incredible - Holocaust Remembrance Ceremony in... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 1415 | Want to go on a tour of the universe? We invit... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1416 | A huge worldwide THANK YOU to the Unsung Heroe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1417 | Today we were honoured with a special visit fr... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1418 | International Holocaust Remembrance Day is bei... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1419 | Mentioning the #HolocaustRemembranceDay at Isr... | [(Zambia pavilion), (Zimbabwe pavilion)] | [streamlined, striking, strikingly, striving, ... |
| 1420 | Bidriware is a metal handicraft from Bidar. Th... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1421 | One more for the #thursdayvibes #Expo2020 #Exp... | NaN | NaN |
| 1422 | Two weeks till UK National Day on 10 Feb 2022 ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1423 | We're delighted to be at the Digital Health &a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1424 | “There is nothing to despair about my age. Ple... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1425 | The session is free for Expo ticket holders. S... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 1426 | #WeRemember #israeli pavilion at #expo2020 obs... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1427 | On set again today with this awesome crew! Lot... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 1428 | #Expo2020\nSo proud 🇸🇦🤍 https://t.co/wuVJhmvZM1 | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 1429 | Dr Kandan was inspired in his design of the so... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [reform, reformed, reforming, reforms, refresh] |
| 1430 | Great things can be done when everyone works t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1431 | HM Ambassador highlighting what the U.K. has t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 1432 | Dive Through KSA Pavilion @expo2020dubai @ksaP... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1433 | Our encounter with Continental Asia establishe... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [god-given, god-send, godlike, godsend, gold] |
| 1434 | Join our Digital Health and Wellness virtual e... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1435 | Our 1-Day Expo Tickets are now ONLY AED 45! Vi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1436 | Day -5 to #Rwanda National Day at #Expo2020 \n... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excite, excited, excitedly, excitedness, exci... |
| 1437 | The intelligence agencies of the United Arab E... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1438 | Experience the UAEU Pavilion in 360 degree thr... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1439 | @aly_j15 @theafriyie_ Because there's a media ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1440 | Earlier this week, Dr Kandan spoke at #Expo202... | NaN | NaN |
| 1441 | All my #Indian fellows and friends do visit #E... | [(Zambia pavilion), (Zimbabwe pavilion)] | [worth, worth-while, worthiness, worthwhile, w... |
| 1442 | Rúben Dias—Manchester City and Portugal defend... | [(Slovenia pavilion), (Solomon Islands pavilio... | [defender, deference, deft, deginified, delect... |
| 1443 | A successful ending!\nThe sundown of Arab Heal... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1444 | I’m planning a trip to Expo with the family. W... | NaN | NaN |
| 1445 | Mr. Saqr Ereiqat, Co-Founder & Managing Pa... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [nurturing, oasis, obsession, obsessions, obta... |
| 1446 | Here are highlights from the keynote speech de... | NaN | NaN |
| 1447 | Dr. Tali Sharot, an academic and researcher in... | NaN | NaN |
| 1448 | Afghanistan pavilion features Jewish art #expo... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1449 | Such as preparing appropriate management strat... | [(Slovenia pavilion), (Solomon Islands pavilio... | [appreciated, appreciates, appreciative, appre... |
| 1450 | Tonight, at #Expo2020 in front of the spectacu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1451 | Jane Witherspoon will lead the ‘Stakeholder Ma... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prominent, promise, promised, promises, promi... |
| 1452 | @aajtakorgin Yemen has just started operations... | NaN | NaN |
| 1453 | @aajtakorgin Americans only were able to inter... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1454 | A great panel discussion highlighting how comb... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1455 | H.E. shared his experiences in the field while... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1456 | The Syrian Rhapsody by Iyad Rimawi\n\nDate: Fe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1457 | We are excited to have @BrianHills @DataLabSco... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excite, excited, excitedly, excitedness, exci... |
| 1458 | Upcoming events at #Expo2020 to focus on prepp... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1459 | Hopefully get to meet Ronaldo tomorrow. Beyond... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excite, excited, excitedly, excitedness, exci... |
| 1460 | Australian thought leaders and visionaries wil... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1461 | Teaming up with Scotland’s health tech ecosyst... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1462 | With aromas of the finest coffee and the melod... | [(Palestine pavilion), (Panama pavilion), (Pap... | [finely, finer, finest, firmer, first-class] |
| 1463 | The brightly colored Channapatna wooden toys h... | NaN | NaN |
| 1464 | Robotic Flowers In Expo 2020 Dubai with flower... | NaN | NaN |
| 1465 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1466 | The $150 million India-UAE VC (venture capital... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1467 | A Science Potion Image From Expo 2020 Dubai\n#... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1468 | Visit the #KuwaitPavilion at #Expo2020Dubai to... | NaN | NaN |
| 1469 | Upcoming events at #Expo2020 to focus on prepp... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1470 | SHE’S HERE! Don’t miss the chance to see pop s... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1471 | Malaysian Pavilion at Expo 2020 Dubai Invites ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1472 | Snack time - Expo moment\nDubai @ 12.12.2021\n... | NaN | NaN |
| 1473 | Eat and save! Go for these affordable must-try... | [(Slovenia pavilion), (Solomon Islands pavilio... | [affordable, affordably, afordable, agile, agi... |
| 1474 | Last meal in Dubai😭😭😭😭😭#Expo2020 https://t.co/... | NaN | NaN |
| 1475 | Looking forward to speaking at this today - Sh... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1476 | Discusses #project_management's capability and... | [(Slovenia pavilion), (Solomon Islands pavilio... | [capability, capable, capably, captivate, capt... |
| 1477 | As the Official Logistics Partner of #Expo2020... | [(Slovenia pavilion), (Solomon Islands pavilio... | [commitment, commodious, compact, compactly, c... |
| 1478 | It is hard to imagine how we will tackle the #... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1479 | The Great Indian Recipe Contest has started. A... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1480 | #AlWaslDome #Expo2020 latest most favorite pla... | [(Palestine pavilion), (Panama pavilion), (Pap... | [favorite, favorited, favour, fearless, fearle... |
| 1481 | With correct information, contributes to envis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1482 | Tomorrow at @ExpoUpdate in Dubai is Mölnlycke ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 1483 | LAMBORGHINI URUS MANSORY SOFT\nBODY KIT\n▪️YEA... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [snazzy, sociable, soft, softer, solace] |
| 1484 | A new flow of life coming soon. Alaya Beach at... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1485 | Kingdom of Saudi Arabia Pavilion. \n\nI wish I... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 1486 | All You Need to Know about Expo 2020 Dubai Mom... | NaN | NaN |
| 1487 | Who are set to share with the attendees and pa... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 1488 | Villanova-La Violeta featuring 3 and 4 bedroom... | NaN | NaN |
| 1489 | Assessing Methods and Tools to Improve Reporti... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 1490 | Sustainable architecture is under scrutiny in ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 1491 | Sustainable architecture is under scrutiny in ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1492 | Winners will be awarded during the #UAE Innova... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 1493 | AIM 2022 Startup welcomes AutoBI !\nAutoBI is ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1494 | euronews: Indian Pavilion at Expo 2020 Dubai h... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1495 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | NaN | NaN |
| 1496 | If Not Now Then When??\n.\n.\n.\n.\n#throwback... | NaN | NaN |
| 1497 | VIPs from around the world visit the Japan Pav... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1498 | India Pavilion celebrates 73rd Republic Day at... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1499 | Eat and save! Go for these affordable must-try... | [(Slovenia pavilion), (Solomon Islands pavilio... | [affordable, affordably, afordable, agile, agi... |
| 1500 | ‘Why? The Musical’ At Expo 2020 Dubai\n#WhyThe... | NaN | NaN |
| 1501 | In just under 30 minutes I’ll be back with @Ma... | NaN | NaN |
| 1502 | Channapatna toys are part of a two-century-old... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1503 | CR7CR7, the international superstar, is visiti... | NaN | NaN |
| 1504 | #ThrowbackThursday – A #DeepLearning method fo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1505 | So here I am, at the Mexico’s pavilion of the ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1506 | Sigh bwanaaa!! 🥺🙌🏾🙌🏾🙌🏾😩😩 Dubai here we come!! ... | NaN | NaN |
| 1507 | @drshamamohd What these fake....contd:\nF. Ind... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [fake, fall, fallacies, fallacious, fallaciously] |
| 1508 | #Expo2020 in #Dubai postponed some events afte... | NaN | NaN |
| 1509 | Transport Operations Team Leaders are always o... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1510 | Discover Haus 51 bespoke services, call us on ... | NaN | NaN |
| 1511 | It was a bittersweet decision. \n\nOn one hand... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1512 | #repost\n\n@expo2020dubai\n\nCR7, the internat... | NaN | NaN |
| 1513 | Christiano Ronaldo will be at #Expo2020Dubai t... | NaN | NaN |
| 1514 | When Women Thrive .. Humanity Thrive\n#Expo202... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thrilling, thrillingly, thrills, thrive, thri... |
| 1515 | We contribute towards Net Zero Emissions\n\n#s... | NaN | NaN |
| 1516 | This past Monday, on my flight to Dubai on my ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dedicated, defeat, defeated, defeating, defeats] |
| 1517 | Eyal Cohen was among yesterday's experts discu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [adulation, adulatory, advanced, advantage, ad... |
| 1518 | “We have an incredible gratitude to offer our ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 1519 | Dr Ajai Chowdhry, HCL Founder announces launch... | NaN | NaN |
| 1520 | @LottinPackeddd Just kidding bcoz its expo2020 | NaN | NaN |
| 1521 | HE Noura bint Mohammed Al Kaabi Meets UAE Thea... | NaN | NaN |
| 1522 | The brightly colored Channapatna wooden toys h... | NaN | NaN |
| 1523 | I visited the immense construction site of the... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [immaculately, immense, impartial, impartialit... |
| 1524 | “As a healthcare provider that day. It was my ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1525 | Meeting with the Presidential delegation of El... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1526 | Looking forward to attending @expo2020dubai to... | NaN | NaN |
| 1527 | “It is learned from the field that females are... | NaN | NaN |
| 1528 | @monscannapi introducing the Input Privacy-Pre... | NaN | NaN |
| 1529 | “Expo restored our hope that life is going bac... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [restful, restored, restructure, restructured,... |
| 1530 | "To be able to fight the unknown, that is a wh... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1531 | Attraction is key to gaining visitors. But if ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [attraction, attractive, attractively, attune,... |
| 1532 | How Do We Create Healthy & Happy World?\nF... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [healthy, hearten, heartening, heartfelt, hear... |
| 1533 | https://t.co/CXvfbTrZzM\n\nGarden in the Sky J... | NaN | NaN |
| 1534 | Manchester City and England midfielder Jack Gr... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fancier, fancinating, fancy, fanfare, fans] |
| 1535 | The story of Pamela Zeinoun, a nurse hero that... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [helping, hero, heroic, heroically, heroine] |
| 1536 | World Expo2020, Dubai @expo2020dubai https:/... | NaN | NaN |
| 1537 | Join #SAPServices at #expo2020dubai in the SAP... | [(Marshall Islands pavilion), (Mauritania pavi... | [innocuous, innovation, innovative, inpressed,... |
| 1538 | Wish I could visit #Expo2020 tomorrow just to ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1539 | ‘Why? The Musical’ is sweeping the audience aw... | [(Zambia pavilion), (Zimbabwe pavilion)] | [swanky, sweeping, sweet, sweeten, sweetheart] |
| 1540 | Home is fun when you have suitable facilities.... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [spacious, sparkle, sparkling, spectacular, sp... |
| 1541 | UK showcases new product at #Expo2020 https://... | NaN | NaN |
| 1542 | Big day at #Expo2020 tomorrow! https://t.co/Vx... | NaN | NaN |
| 1543 | Health Week begins today @expo2020dubai. As pa... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [profusion, progress, progressive, prolific, p... |
| 1544 | The “Eye and Stories” by an emirati artist cap... | NaN | NaN |
| 1545 | Join us for an unforgettable night with the su... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1546 | discussion panel at #DIPMF, offering innovativ... | [(Marshall Islands pavilion), (Mauritania pavi... | [innocuous, innovation, innovative, inpressed,... |
| 1547 | The world discovers Torino 2025! 👇\n\nhttps://... | NaN | NaN |
| 1548 | HE Zuzana Caputova, Madam President of the Slo... | NaN | NaN |
| 1549 | Expo 2020 - Filipino 'Ben and Ben' concert pos... | NaN | NaN |
| 1550 | Women Empowerment: Shared EU-GCC Experiences7/... | [(Palestine pavilion), (Panama pavilion), (Pap... | [empathy, empower, empowerment, enchant, encha... |
| 1551 | The eyewitness of Rashid Hussain baloch case, ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1552 | The eyewitness of Rashid Hussain baloch case, ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1553 | CR7, international superstar, is visiting #Exp... | NaN | NaN |
| 1554 | Join #UNxEdpo & #Norway at #Expo2020 Monda... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1555 | Are you at #EXPO2020 in Dubai? Don't miss the ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 1556 | India Pavilion celebrates 73rd Republic Day at... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1557 | Come and join us and we will assist you\n📞Call... | NaN | NaN |
| 1558 | Health & Wellness week until 2 February\n\... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 1559 | @EmCollingridge @manalajaj @UKPavilion2020 @vi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1560 | Bringing together everyday heroes from around ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [insightfully, inspiration, inspirational, ins... |
| 1561 | #Expo2020 amazing https://t.co/2QALThs18O | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1562 | At the 73rd Indian #RepublicDay cultural perfo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 1563 | Well. To be honest, I couldn’t help not to hv ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 1564 | My joy 🤍 can’t wait for tomorrows look!! I ado... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [jolly, jovial, joy, joyful, joyfully] |
| 1565 | Eleonora Borisova delighting the audience with... | NaN | NaN |
| 1566 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | NaN | NaN |
| 1567 | #DIPMF’s panel discussion entitled ‘Project Ma... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prominent, promise, promised, promises, promi... |
| 1568 | They need no introduction—Shankar–Ehsaan–Loy, ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 1569 | All my people in the #UAE get along to the Aus... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1570 | Experience traditional beauty of Japanese cult... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 1571 | Eleonora Borisova talked about the power of me... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [harmonize, harmony, headway, heal, healthful] |
| 1572 | "A few weeks into the pandemic, I could sense ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1573 | The young 🇳🇿 chefs from our restaurant #Tiaki ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1574 | "A few weeks into the pandemic, I could sense ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1575 | @WomenTribe_nfts 🚨EXCLUSIVE🚨 Put in your guess... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1576 | CR7, the international superstar, is visiting ... | NaN | NaN |
| 1577 | Looking for an ERP for your small or medium bu... | NaN | NaN |
| 1578 | Come check out some of 🇳🇿’s best street arts c... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1579 | We are excited to welcome @EndeavorJo as a com... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1580 | Third time visit lunch is always must be Korea... | NaN | NaN |
| 1581 | So you know, I come to expo to explore food in... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1582 | [Mohammed Bin Rashid Centre for Government Inn... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 1583 | Get 𝐎𝐍𝐄 𝐌𝐎𝐍𝐓𝐇 𝐅𝐑𝐄𝐄 when you sign up for an Ann... | NaN | NaN |
| 1584 | Find out how people, ideas & innovations c... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1585 | It’s Cristal clear that #UAE is not a peace lo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 1586 | The Art Listens created a curricular #mentalhe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1587 | American comedian and actor Chris Tucker visit... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1588 | Learn about the most prominent practices and a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prominent, promise, promised, promises, promi... |
| 1589 | India Pavilion celebrates 73rd Republic Day at... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1590 | 📸 from a visit to @expo2020dubai \n\nThere’s s... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 1591 | My love 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1592 | Be in awe of this experiment that has managed ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 1593 | At the @expo2020dubai we are showing the world... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 1594 | We don’t use tech because it’s fancy, we use i... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fancier, fancinating, fancy, fanfare, fans] |
| 1595 | Award-winning actor Bryan Cranston, star of po... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 1596 | @HastingsPizza @elonmusk Why everyone is looki... | [(Zambia pavilion), (Zimbabwe pavilion)] | [beggar, beggarly, begging, beguile, belabor] |
| 1597 | Work on Progress for UAE Innovates at EXPO2020... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [profusion, progress, progressive, prolific, p... |
| 1598 | Expo 2020 Dubai’s Malaysian pavilion hosts a k... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1599 | #istat today participates in #EXPO2020 'Mobili... | NaN | NaN |
| 1600 | Expo 2020 Dubai got the world under a roof Pho... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1601 | The sessions will be followed by a panel discu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1602 | Join us with Dr Keivan Javanshiri, MD, who wil... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1603 | BRAZIL @ LAS PAVILION!\n\n" Families like fudg... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1604 | It's not yet too late to hop in the yellow tra... | NaN | NaN |
| 1605 | Road to 2025 - #Fisu world university games wi... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1606 | PINS COLLECTOR @ LAS!\n\nCOLLECT things you LO... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1607 | Enhance your skills with the help of some work... | [(Palestine pavilion), (Panama pavilion), (Pap... | [energy-efficient, energy-saving, engaging, en... |
| 1608 | Hundreds of 'butterfly-shaped kites' to take t... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 1609 | BEYOND THE STARS: ❤️🔥\n\n ---✨🌟✨---\n\n... | NaN | NaN |
| 1610 | Empower employees for success with step-by-ste... | [(Palestine pavilion), (Panama pavilion), (Pap... | [empathy, empower, empowerment, enchant, encha... |
| 1611 | A new India-UAE VC Fund of $150 million was la... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1612 | A better future needs to be a healthier one. #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1613 | 2tec2 doesn’t sit still, more so, it keeps com... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 1614 | Britax Romer B-AGILE M Stroller for Group 01 ,... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 1615 | NEW ROLE - Application Specialist – Hematology... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sweetly, sweetness, swift, swiftness, talent] |
| 1616 | Black Eyed Peas @bep deliver a show in tune wi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1617 | The #Expo2020 exhibition in #Dubai has announc... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1618 | #Expo2020Duba is still free for nannies and #R... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 1619 | #GoldenJubileeTour — Cyclists pedal from Abu D... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1620 | Before #veganuary ends, you can still sample v... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1621 | @WiebeWkkr You'll love #Expo2020 it's amazing.... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1622 | Today’s business highlights at Expo 2020 Dubai... | NaN | NaN |
| 1623 | We would like YOU to join us at our #BigData e... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1624 | Absolutely right .. #Expo2020 #اكتفاء #دبي #ال... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [richly, richness, right, righten, righteous] |
| 1625 | Contact with self storage Dubai for storage an... | NaN | NaN |
| 1626 | The #UK Pavilion won our Best Exhibit award fo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1627 | 📣Announcing phase 3 of #EnRouteExpo2020 challe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1628 | #Expo2020Dubai's #NewZealandPavilion restauran... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1629 | Celebrating Slovakia National Day at Expo 2020... | NaN | NaN |
| 1630 | Learn more about the #Andorra Pavilion - Small... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1631 | We welcome each guest with a unique flower fro... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 1632 | Day 2 of the Main #Forum event includes a vari... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [nurturing, oasis, obsession, obsessions, obta... |
| 1633 | #HappeningNow\nDay 2 of the Cybersecurity Stra... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1634 | Rosewood inlay work is unique to the region of... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 1635 | Come and meet our team to explore our amazing ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gentle, gentlest, genuine, gifted, glad] |
| 1636 | Almost 300 years of workmanship and dedication... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 1637 | At #Expo2017, the #France Pavilion won our Edi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 1638 | Because children are from the sensory world #A... | NaN | NaN |
| 1639 | Tune in for a very special panel discussion on... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1640 | Mysore Rosewood Inlay dates back to the era of... | NaN | NaN |
| 1641 | "other SAFE, fun events." #UAE: your #Expo2020... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1642 | I go back to #Expo2020 to have the classic cus... | [(Slovenia pavilion), (Solomon Islands pavilio... | [clarity, classic, classy, clean, cleaner] |
| 1643 | Gaming His Way to Success\nMohammed Yaseen of ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prosperous, prospros, protect, protection, pr... |
| 1644 | YOUR VOTE MATTERS \n\nTune in on the 28 Januar... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1645 | Join us at Expo 2020 Dubai as we celebrate the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 1646 | Expect the best!\n#Dubai #Entrepreneur #busine... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1647 | @EmCollingridge @manalajaj @expo2020dubai @UKP... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1648 | Good morning from expo2020 again 🥱💗 | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1649 | The #USAPavilion welcomed delegates from the M... | NaN | NaN |
| 1650 | @ianetwork along with @ficci_india, MCA, and T... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1651 | Complimentary parking at Sustainability Premiu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 1652 | Join us at 13:45 UK time today for a panel dis... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1653 | Black Eyed Peas Headline in Expo 2020 Dubai’s ... | NaN | NaN |
| 1654 | A quick head’s up to all our wizards! Particip... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1655 | The Great Indian Recipe Contest has started. A... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1656 | At #Expo2010 in #Shanghai, #Denmark took top h... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dawn, dazzle, dazzled, dazzling, dead-cheap] |
| 1657 | #Dubai #UAE #Travel #Expo2020 \n\nCome to Duba... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magical, magnanimous, magnanimously, magnific... |
| 1658 | 🇪🇺How EU & Member States engage on #Global... | NaN | NaN |
| 1659 | Are you a startup or an entrepreneur? The Star... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1660 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 1661 | Join us at @Expo2020Dubai as we celebrate the ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 1662 | Here are the answers to all your Expo 2020 Dub... | NaN | NaN |
| 1663 | Don't forget to buy your Expo 2020 Dubai ticke... | NaN | NaN |
| 1664 | What is Microsoft Dynamics 365 Business Centra... | NaN | NaN |
| 1665 | Stay tuned for the coverage of the event. Ever... | NaN | NaN |
| 1666 | We are a worldwide and statewide network which... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1667 | #Winters mornings in #Dubai be like 👌😍🇦🇪\n#صبا... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1668 | We believe in our responsibility to contribute... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 1669 | Greetings to Slovakia on their National Day at... | NaN | NaN |
| 1670 | "Isophotes" are widely used in astronomy to de... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1671 | Today we are excited to celebrate Slovakia 🙌\... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1672 | 🦸♀️ From parents to school teachers/ sanitati... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [honorable, honored, honoring, hooray, hopeful] |
| 1673 | A cross-border India-UAE VC fund to invest in ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1674 | Innovation always needs human intelligence, en... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1675 | How do we create a healthy, happy world? Find ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [healthy, hearten, heartening, heartfelt, hear... |
| 1676 | Crown Prince of Dubai inaugurates the 7th Duba... | NaN | NaN |
| 1677 | “So on this song, in this country, right now, ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 1678 | At #Expo2012 in #Korea, the #Oman Pavilion won... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 1679 | DS1000Z-E series #digital #oscilloscope is des... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1680 | How do we create a healthy, happy world? Find ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [healthy, hearten, heartening, heartfelt, hear... |
| 1681 | The #UAE #Pavilions have won many Expo Awards ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1682 | Imagine reducing emissions just by breathing –... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [spacious, sparkle, sparkling, spectacular, sp... |
| 1683 | Find out why #SAPtraining is vital to digital ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [success, successes, successful, successfully,... |
| 1684 | Buy #Artificial #Lawn from #AbuDhabiCarpets to... | [(Slovenia pavilion), (Solomon Islands pavilio... | [attraction, attractive, attractively, attune,... |
| 1685 | #DubaiRugs provide a huge variety of #Sport #A... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1686 | The National Day of the Kingdom of Cambodia wa... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1687 | Empower employees for success with step-by-ste... | [(Palestine pavilion), (Panama pavilion), (Pap... | [empathy, empower, empowerment, enchant, encha... |
| 1688 | At #Expo2012 in #Korea, the #Philippines won B... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1689 | #indiarepublicday #Expo2020 #Expo2020Dubai #Du... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sumptuous, sumptuously, sumptuousness, super,... |
| 1690 | At #Expo2015 in #Italy, #China won Honorable M... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [honorable, honored, honoring, hooray, hopeful] |
| 1691 | The #Korea Pavilion took home top honors in ou... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1692 | #mentions\n\n#VenezuelaExpo2020Dubai #Venezue... | NaN | NaN |
| 1693 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1694 | @expo2020dubai Yemen military forces exchanges... | NaN | NaN |
| 1695 | Yemen military forces exchanges the name of EX... | NaN | NaN |
| 1696 | The Canada Pavilion located at @expo2020dubai ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1697 | How is Scotland using data intelligence to enh... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1698 | ✅ Shapes from Expo2020 is officially LIVE!\n\n... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [hospitable, hot, hotcake, hotcakes, hottest] |
| 1699 | #Expo2020 ...\nWith us, you may lose..Advise t... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1700 | We’re halfway through the @Siemens Future Worl... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1701 | discuss options to achieve de-escalation and s... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1702 | #Expo2020 is postponing events over "unforesee... | [(Slovenia pavilion), (Solomon Islands pavilio... | [contribution, convenience, convenient, conven... |
| 1703 | and siege on #Yemen, killing civilians and des... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1704 | Black Eyed Peas Deliver Electrifying Performan... | NaN | NaN |
| 1705 | @TheRoyalRani If you download the Expo2020 app... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1706 | He noted that the UAE does not need that suppo... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 1707 | case with the UAE.\nIn a tweet on his Twitter ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1708 | Both boys and girls, whose language is Arabic,... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 1709 | What’s the secret to Manchester City’s success... | [(Zambia pavilion), (Zimbabwe pavilion)] | [success, successes, successful, successfully,... |
| 1710 | We bring you the highlights of the events held... | NaN | NaN |
| 1711 | Emirati Talent Competitiveness Council Organis... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sweetly, sweetness, swift, swiftness, talent] |
| 1712 | The Brazilian space at the world exhibition in... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1713 | With aromas of the finest coffee and the melod... | [(Palestine pavilion), (Panama pavilion), (Pap... | [finely, finer, finest, firmer, first-class] |
| 1714 | Dubai is no longer safe... people should cance... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 1715 | This is an honour to have been invited for a l... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 1716 | At #Expo2015 in #Milan, #Belgium took home Hon... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [honorable, honored, honoring, hooray, hopeful] |
| 1717 | Your aggression, tyranny, criminality, and ugl... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1718 | The shoulders of men are made to bear arms. Ei... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1719 | @HamdanMohammed Excellent apart from last 3 mo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1720 | One special fun night at @expo2020dubai .. #in... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 1721 | Expo2020 comes ex. Po 🤣🤣 and soon after will b... | NaN | NaN |
| 1722 | A new date will be announced soon across our s... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1723 | A great great night with the global superstars... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1724 | #Expo2020 Dubai has recorded 10,836,389 #visit... | NaN | NaN |
| 1725 | 🔴 #UAE: #Expo2020 Dubai announces the postpone... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1726 | This Queen is going to set the stage on fire a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [loyalty, lucid, lucidly, luck, luckier] |
| 1727 | This week Yulia Poslavskaya (CMO) represented ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 1728 | The #Australia Pavilion won one of our #Expo20... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 1729 | Addressing all those who threaten to designate... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 1730 | @IndiaExpo2020 @sunjaysudhir @expo2020dubai @D... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 1731 | HH Sheikh Hamdan bin Mohammed bin Rashid Al Ma... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [honorable, honored, honoring, hooray, hopeful] |
| 1732 | FM:World Recognizes Legitimacy of Yemeni Retal... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1733 | Love ❤ Turkey 🇹🇷 ♥️\n#Expo2020\n#Turkey \n#Th... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1734 | @GregoryDEvans Do you got anything that can co... | NaN | NaN |
| 1735 | #YEMEN:Saudi -UAE Aggression Targets Telecommu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1736 | In 1966, Kasie Pattundeen, a meticulous bookke... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [meticulous, meticulously, mightily, mighty, m... |
| 1737 | #Dubai #Expo2020 #Expo2020Dubai started cancel... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1738 | We’re thrilled that our laser projection is pa... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [instantly, instructive, instrumental, integra... |
| 1739 | Health and Wellness Week at Expo 2020 Dubai\n#... | NaN | NaN |
| 1740 | It was a pleasure to participate in the Global... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pleasure, plentiful, pluses, plush, plusses] |
| 1741 | In Video: 73rd Republic Day of India Celebrati... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1742 | Guided by our beloved @arrahman, the Firdaus O... | [(Slovenia pavilion), (Solomon Islands pavilio... | [beckoning, beckons, believable, believeable, ... |
| 1743 | WHO WILL STEAL THE STAGE?\n\nTune in on the 28... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1744 | With the sweet aroma of Saudi coffee and its i... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 1745 | CNN: Slovenia's forested Expo pavilion is shad... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1746 | #COUNTRYBRANDING\n#Expo2020 Dubai celebrate In... | [(Slovenia pavilion), (Solomon Islands pavilio... | [colorful, comely, comfort, comfortable, comfo... |
| 1747 | From my visit to @expo2020dubai \nIt was a gre... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1748 | Shows on the #SaudiArabia Pavilion’s open squa... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1749 | Experience the UAEU Pavilion in 360 degree thr... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1750 | Young visitors at the #SaudiArabia Pavilion ca... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 1751 | Join us at #Expo2020 tomorrow at 9am (UK-GMT) ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1752 | Uh oh. Don't tell me this is a coincidence👀🚀🇾🇪... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1753 | Expo 2020 Exhibit Mashes Up Kiosk, AR, Selfies... | NaN | NaN |
| 1754 | At the Aus Pavillion @expo2020dubai Thank you ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 1755 | 🇸🇪 Ambassador of the Kingdom of Sweden in Saud... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1756 | Join us on the 29th of January 2022, from 5:30... | NaN | NaN |
| 1757 | Let Kuwaiti musical stars Mutref Al Mutref and... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1758 | Professor George Crooks @CrooksGeorge CEO of \... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1759 | As part of our activities during #Expo2020, on... | NaN | NaN |
| 1760 | How do we create a healthy, happy world? Find ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [healthy, hearten, heartening, heartfelt, hear... |
| 1761 | Happy to be at #Expo2020 in Dubai to discuss a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 1762 | In recognition of the Co-organizing and sponso... | NaN | NaN |
| 1763 | Join Akkad Holdings, Stephen Shaya, M.D., and ... | NaN | NaN |
| 1764 | Tourism sector acknowledges dynamic role playe... | [(Palestine pavilion), (Panama pavilion), (Pap... | [durable, dynamic, eager, eagerly, eagerness] |
| 1765 | See you tomorrow at the Youth Pavilion #Expo20... | [(Marshall Islands pavilion), (Mauritania pavi... | [innocuous, innovation, innovative, inpressed,... |
| 1766 | whereby participants were highly motivated to ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [monumentally, morality, motivated, multi-purp... |
| 1767 | We popped ‘down under’ to wish our wonderful n... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 1768 | Take the chance to meet with the leading exper... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1769 | At the end of the day,we share our reflections... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 1770 | Here are highlights from the diverse events an... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1771 | #Repost @expo2020dubai \n\nTo all our 30,000 a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1772 | Take the chance to meet with the leading exper... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1773 | Here are the highlights of the ‘Mega Projects ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1774 | “With the pandemic, we’ve learned that we need... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [instantly, instructive, instrumental, integra... |
| 1775 | Series of new events at #Expo2020 Dubai to fo... | NaN | NaN |
| 1776 | Learn about the nation's top projects by atten... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 1777 | #bitcoin surprises never end, be careful\n#Bit... | NaN | NaN |
| 1778 | 🌎 Join me to celebrate #UnsungHeroes: Everyday... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [insightfully, inspiration, inspirational, ins... |
| 1779 | It was absolutely an everlasting performance! ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 1780 | Gender equality is essential. The Women’s Pavi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1781 | The toxic relationship we have with the #techn... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 1782 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1783 | Praying 4 the gulf safety,God will punish Yeme... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1784 | Minister of Culture and Youth, visits #SouthKo... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1785 | Italy Pavilion hosts ‘Flying Society’ Event at... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1786 | Enjoy a whole new audience to explore at Alger... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1787 | World-renowned artists Black Eyed Peas celebra... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1788 | Expo 2020 Dubai approaches 11 million visits m... | NaN | NaN |
| 1789 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1790 | Visit the Maldives Pavilion (SA08-B) in the Su... | [(Zambia pavilion), (Zimbabwe pavilion)] | [win, windfall, winnable, winner, winners] |
| 1791 | At the @expo2020dubai — where innovation &... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 1792 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | NaN | NaN |
| 1793 | Join our Registration Evening on Monday, Janua... | NaN | NaN |
| 1794 | 🎀🎀🎀SPECIAL ANNOUNCEMENT🎀🎀🎀\nOn 2-2-22 (2nd Feb... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1795 | Adding to my CV under accomplishments survivin... | [(Slovenia pavilion), (Solomon Islands pavilio... | [accomplished, accomplishment, accomplishments... |
| 1796 | Real Madrid superstars at #Expo2020 #Dubai \n#... | NaN | NaN |
| 1797 | @Arab_Health and @MedlabSeries at the Dubai Wo... | NaN | NaN |
| 1798 | “Artificial intelligence applied to medicine: ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1799 | Korean Pavilion at Expo 2020 Dubai is a cultur... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1800 | However, we would like to reassure you there a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [reasonably, reasoned, reassurance, reassure, ... |
| 1801 | We would like to wish our neighbours @IndiaAtE... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1802 | The #USAPavilion welcomed Cabinet Assistant Se... | NaN | NaN |
| 1803 | #culture_facts \nAfter drinking the coffee in ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1804 | Rain Clouds over Mighty #BurjKhalifa 🇦🇪\n#Duba... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [meticulous, meticulously, mightily, mighty, m... |
| 1805 | Global music superstars #BlackEyedPeas rocked ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 1806 | APX NEXT XN is designed for effortless usabili... | [(Palestine pavilion), (Panama pavilion), (Pap... | [efficiently, effortless, effortlessly, effusi... |
| 1807 | On January 26, President of #StatisticsPoland ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 1808 | AIM2022 Startup welcomes Via Marina – Pitch Hu... | NaN | NaN |
| 1809 | CG Dr. Aman Puri unfurled the National Flag at... | NaN | NaN |
| 1810 | The #USAPavilion was honored to welcome the We... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [honorable, honored, honoring, hooray, hopeful] |
| 1811 | To register visit https://t.co/L51eOK6OWJ\n\n#... | NaN | NaN |
| 1812 | It was an honor to present our beliefs during ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 1813 | UK Pavilion to explore future of healthcare at... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1814 | My life 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | NaN | NaN |
| 1815 | Are you planning to visit #Expo2020? \n#DubaiM... | [(Slovenia pavilion), (Solomon Islands pavilio... | [contribution, convenience, convenient, conven... |
| 1816 | In which she stressed that the #Forum was cont... | [(Zambia pavilion), (Zimbabwe pavilion)] | [supported, supporter, supporting, supportive,... |
| 1817 | Grow Your Business with CYBRIX ERP!\nContact U... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 1818 | Join us on Sunday, 30 January, at 17:00 to hit... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 1819 | Check out the inventor Abdulaziz Al-Thekair’s ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [profusion, progress, progressive, prolific, p... |
| 1820 | Our experience with world VIPs and delegation ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [crisis, critic, critical, criticism, criticisms] |
| 1821 | “Have you seen David?”: #Expo2020's new campai... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dominate, dominated, dominates, dote, dotingly] |
| 1822 | @Economist_WOI @Tesco Burning ocean #plasticwa... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 1823 | Attend & Interact: https://t.co/WXo9yovKHw... | NaN | NaN |
| 1824 | Share your photos or videos on Instagram with ... | NaN | NaN |
| 1825 | At #HammourHouse at #Expo2020Dubai raises awar... | NaN | NaN |
| 1826 | Have you visited our pavilion shop yet? Whethe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1827 | .@iamkatieovery finds an interesting spot at t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1828 | #VIDEO | The Safety Ambassadors Council joined... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 1829 | #Expo2020Dubai is never short of celebrations.... | NaN | NaN |
| 1830 | WCS is free to all schools around the world. A... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 1831 | Pay with NBD at #Expo2020 #Dubai \n#Expo2020Du... | NaN | NaN |
| 1832 | Hope for #cancer patients in the Middle East a... | [(Zambia pavilion), (Zimbabwe pavilion)] | [cancer, cancerous, cannibal, cannibalize, cap... |
| 1833 | Enjoy discovering Saudi coffee and its traditi... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 1834 | Black Eyed Peas Full Concert at EXPO 2020 Duba... | NaN | NaN |
| 1835 | Think the best way to see @expo2020dubai is go... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1836 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | NaN | NaN |
| 1837 | At @ExpoDubai we visited the @swisspavilion an... | [(Marshall Islands pavilion), (Mauritania pavi... | [innocuous, innovation, innovative, inpressed,... |
| 1838 | Meet Chefs Kārena and Kasey Bird! \n\nThese ch... | [(Slovenia pavilion), (Solomon Islands pavilio... | [charisma, charismatic, charitable, charm, cha... |
| 1839 | Visit the Maldives Pavilion at the Sustainabil... | [(Slovenia pavilion), (Solomon Islands pavilio... | [audibly, auspicious, authentic, authoritative... |
| 1840 | At the UN Mobilizing Big Data and Data Science... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 1841 | @AravindRajaOff same happened in expo2020. it'... | NaN | NaN |
| 1842 | In the latest two episodes of #Expo2020 Dubai’... | NaN | NaN |
| 1843 | Dr Bushra Kaddoura, Early Childhood Education ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 1844 | You only realise The @expo2020dubai is serious... | NaN | NaN |
| 1845 | Anthony Abi Zeid, Senior Programs Associate at... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1846 | @LAS_Expo2020 Football is a universal language... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magical, magnanimous, magnanimously, magnific... |
| 1847 | Please note that the #Malawi Investment and Tr... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [profusion, progress, progressive, prolific, p... |
| 1848 | Visit Sultanate of Oman Pavilion and come acro... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 1849 | H.E. Ahmed Al Falasi visits El Salvador’s pavi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 1850 | Join #SAPServices at #expo2020dubai in the SAP... | [(Marshall Islands pavilion), (Mauritania pavi... | [innocuous, innovation, innovative, inpressed,... |
| 1851 | #GBFLATAM2022 by @DubaiChamber & @Expo2020... | NaN | NaN |
| 1852 | We still have some cool unpublished stuff from... | [(Slovenia pavilion), (Solomon Islands pavilio... | [convienient, convient, convincing, convincing... |
| 1853 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1854 | Distinguished panelists in the field of design... | [(Slovenia pavilion), (Solomon Islands pavilio... | [distinctive, distinguished, diversified, divi... |
| 1855 | Join us at MENASA – Emirati Design Platform fo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1856 | HIPA’s photography contests winners announced.... | [(Zambia pavilion), (Zimbabwe pavilion)] | [win, windfall, winnable, winner, winners] |
| 1857 | I had to fill in very personal details for the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1858 | Follow us at https://t.co/vyIPORKWxK or call u... | NaN | NaN |
| 1859 | The Pakistan Pavilion during the Travel and Co... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1860 | If you work in Life Sciences and want to find ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1861 | National Clinical Director Jason Leitch will d... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1862 | Respiratory Innovation Wales is thrilled to be... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1863 | The #GCC Pavilion at #Expo2020 #Dubai hosts th... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1864 | In the Pavilion’s immersive zone, our guests d... | [(Slovenia pavilion), (Solomon Islands pavilio... | [achievable, achievement, achievements, achiev... |
| 1865 | #Expo2020 #Dubai records 10,836,389 #visits as... | NaN | NaN |
| 1866 | Just start: #MachineLearning for national #Sta... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1867 | THE KENYA PAVILLION AT #EXPO2020\nThe Kenya Pa... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1868 | 🎉 700,000 VISITORS! 🎉 Kia ora to the 700k peop... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 1869 | Travel show «Heads and Tails» (Oryol i Reshka ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 1870 | NEW ROLE - Client Service Technician\nAPPLY HE... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sweetly, sweetness, swift, swiftness, talent] |
| 1871 | A photo has to educate —that’s the impact expe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1872 | A photo has to educate —that’s the impact expe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1873 | The KnE bag has had a wonderful time exploring... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [kindness, knowledgeable, kudos, large-capacit... |
| 1874 | Indian envoy to UAE said UAE is the safest cou... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1875 | FIFA Club World Cup UAE 2021™ Mobile Roadshow ... | NaN | NaN |
| 1876 | The @GdParisExpress in a nutshell: \n\n🛤200km ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1877 | SAP #S4HANA is revolutionizing how organizatio... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lean, led, legendary, leverage, levity] |
| 1878 | His Excellency Dr Thani bin Ahmed Al Zeyoudi, ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1879 | Wishing all Australians a Happy National Day!\... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 1880 | BEYOND THE STARS: ❤️🔥\n\n ---✨🌟✨---\n\n... | NaN | NaN |
| 1881 | #KeepingUpwithOpti to explore @expo2020dubai o... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 1882 | which were required skills that employ agile a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [affordable, affordably, afordable, agile, agi... |
| 1883 | We would like YOU to join us at our #BigData e... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1884 | We at VPS Healthcare are proud to partner with... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 1885 | Expo Dubai 2020 is the meeting of the future. ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1886 | #Repost @expo2020australia See YOU on Saturday... | NaN | NaN |
| 1887 | Today’s business highlights at Expo 2020 Dubai... | NaN | NaN |
| 1888 | Pay with an Emirates NBD debit or credit card ... | NaN | NaN |
| 1889 | @IndiaExpo2020 @expo2020dubai #UAEIsNotSafe Ye... | [(Zambia pavilion), (Zimbabwe pavilion)] | [boiling, boisterous, bomb, bombard, bombardment] |
| 1890 | What a day! Great to have our guests from @Eti... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1891 | @visitdubai @AquaFunME Don't visit Dubai. #Exp... | NaN | NaN |
| 1892 | #Expo2020 in #Dubai was threatened to be bomba... | NaN | NaN |
| 1893 | #Assalamualaikum #gooodmorningwithsadia from #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1894 | Celebrating the 13th anniversary of the 1st BT... | [(Slovenia pavilion), (Solomon Islands pavilio... | [chic, chivalrous, chivalry, civility, civilize] |
| 1895 | #Sustainability isn’t just an environmental or... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1896 | SAP #S4HANA is revolutionizing how organizatio... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lean, led, legendary, leverage, levity] |
| 1897 | The discussions allowed the participants to en... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 1898 | The participants are now arriving to #Expo2020... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1899 | Thank you for featuring our pavilion @visitdub... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 1900 | The #USAPavilion welcomed Hamoody Bamby, socia... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1901 | January 26th India celebrating Republic day\n.... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 1902 | Get straight connections to the Expo from Duba... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1903 | #Expo2020 crowds have been amazed by 🇳🇿's youn... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1904 | The event started with an opening address from... | [(Slovenia pavilion), (Solomon Islands pavilio... | [attraction, attractive, attractively, attune,... |
| 1905 | @rta_dubai is it mandatory to have @expo2020du... | NaN | NaN |
| 1906 | There is no need to worry about the threats of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1907 | We're live for Day-2 of the #FrenchHealthcare ... | NaN | NaN |
| 1908 | .@expo2020dubai records almost 11 million visi... | NaN | NaN |
| 1909 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1910 | Scotland has become a world leader in the deve... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 1911 | #Expo2020 | A young and skilled work force in ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1912 | #SEHA has updated the list of #COVID19 testing... | NaN | NaN |
| 1913 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 1914 | Two sensations, one frame” - A candid moment b... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1915 | As of January 24, Expo 2020 Dubai had received... | NaN | NaN |
| 1916 | Catch a recap here and keep your eyes on the b... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1917 | #ElSalvador has celebrated its national day at... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 1918 | Excellence always sells!\n#businessadvisory #b... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excelent, excellant, excelled, excellence, ex... |
| 1919 | CONGRATULATIONS, @expo2020dubai!\n\nThe mega e... | [(Slovenia pavilion), (Solomon Islands pavilio... | [confident, congenial, congratulate, congratul... |
| 1920 | Beachfront Living🏖️.\n.\nAn opulent experience... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [opulent, orderly, originality, outdo, outdone] |
| 1921 | SAP #S4HANA is revolutionizing how organizatio... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lean, led, legendary, leverage, levity] |
| 1922 | Loved by adults and children alike 🥰 a meet u... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1923 | Pay with an Emirates NBD debit or credit card ... | NaN | NaN |
| 1924 | UN Committee of Experts on Big Data and Data S... | NaN | NaN |
| 1925 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1926 | Joy in my heart! 🤣😂🙌🏾🙌🏾 #DubaiTripUpdate. Let’... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [jolly, jovial, joy, joyful, joyfully] |
| 1927 | @expo2020_jp plz i am China UN sg student.plz ... | NaN | NaN |
| 1928 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1929 | Massive stream of investment on cards in KP IT... | NaN | NaN |
| 1930 | Get straight connections to the Expo from Duba... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1931 | Thankyou so much @DubaiPoliceHQ for the good ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 1932 | We would like to thank the Deputy Minister of ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1933 | @7UAEHD @AnnelleSheline Are you able to freely... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 1934 | Starting in 2 hours at @expo2020dubai - new ha... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 1935 | Shekhar Kapur and A.R. Rahman recently premier... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1936 | ดู "01162022 FORESTELLA - The Unwritten Legend... | NaN | NaN |
| 1937 | ดู "01162022 FORESTELLA - The Unwritten Legend... | NaN | NaN |
| 1938 | Watch it from MTC YouTube Channel!\nhttps://t.... | NaN | NaN |
| 1939 | #Rosatom, a leading #globaltechnologycompany, ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1940 | #Watch the Voice of Youth - Wonderland : New Z... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sweetly, sweetness, swift, swiftness, talent] |
| 1941 | @apldeap @JReysoul @TabBep honor their Filipin... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 1942 | Gulf News: Dubai named most popular destinatio... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 1943 | @JobeerBa PARAPHRASING : The #Expo2020 exhibi... | [(Zambia pavilion), (Zimbabwe pavilion)] | [brazen, brazenly, brazenness, breach, break] |
| 1944 | Buy best quality #Roller #Blinds in Dubai only... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1945 | Choose from the widest collection of #CarpetsD... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 1946 | At #CapetsDubai you will find thousands of uni... | NaN | NaN |
| 1947 | At #InteriorDubai, #CarpetsDoha are the most #... | NaN | NaN |
| 1948 | #VinylFlooring provide the best #Luxurious #Vi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 1949 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 1950 | #ParquetFlooring provide finest quality #Vinyl... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 1951 | @IsfahanMusa @Aldanimarki It was suppose to ha... | NaN | NaN |
| 1952 | civilians in #Yemen, calling on foreign compan... | NaN | NaN |
| 1953 | Investors in #UAE Express Concerns after Sana’... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1954 | BEBOT with APLdeAp THE BLACK EYED PEAS LIVE IN... | NaN | NaN |
| 1955 | Black Eyed Peas - I GOT A FEELING LIVE in Conc... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1956 | #GIDLE #여자아이들 #GIDLE_IN_DUBAI #neverland @G_I_... | NaN | NaN |
| 1957 | #ISRAEL-UAE Israeli President Herzog will trav... | NaN | NaN |
| 1958 | When working on projects like the Dubai #expo2... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 1959 | Voice of youth - Wonderland - #Expo2020 https:... | NaN | NaN |
| 1960 | Those visiting #Expo2020 next week: come join ... | NaN | NaN |
| 1961 | Great @blackeyedpeas LIVE at @expo2020dubai to... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1962 | #UAE is not safe\n #إكسبو2020 #دبي #ابوظبي #ا... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 1963 | The 7th edition of Dubai International Project... | NaN | NaN |
| 1964 | El Salvador celebrates its National Day at #Ex... | NaN | NaN |
| 1965 | civilians in #Yemen, calling on foreign compan... | NaN | NaN |
| 1966 | @OccupyDemocrats 🚨Breaking\nYemeni Army's Spok... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1967 | ⭕️ Sanaa forces threaten to target the Expo in... | [(Slovenia pavilion), (Solomon Islands pavilio... | [bonus, bonuses, boom, booming, boost] |
| 1968 | Investors in #UAE Express Concerns after Sana’... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1969 | Our visitors have been discovering the delicio... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 1970 | UAE Government Launches ‘Big Data for Sustaina... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 1971 | Thread explaining #Dubai not covered by press ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 1972 | just having fun #expo2020 @expo2020dubai @ Ex... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 1973 | Want to be a part of history in the making, an... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1974 | Let's get it started! \n#BlackEyedPeas #Expo20... | NaN | NaN |
| 1975 | This was the scene before the Black Eyed Peas ... | NaN | NaN |
| 1976 | 🚨Deadline Looming: Don't miss the chance to en... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 1977 | Loved it ♥️\n#Pakistan #Expo2020 #Quran https:... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1978 | #blackeyedpeas rocking #expo2020 amazing to se... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 1979 | READ | https://t.co/nP4AdzZWz0\n\n#Dubai #Expo... | NaN | NaN |
| 1980 | Another great ride #onewheel #onewheelpintx #e... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 1981 | At the #Expo2020 #Dubai \n\n"Some of my favor... | [(Palestine pavilion), (Panama pavilion), (Pap... | [favorite, favorited, favour, fearless, fearle... |
| 1982 | Fearing a #Houthi attack, there is no doubt th... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 1983 | Be part of the virtual launch of the 2021/2022... | [(Marshall Islands pavilion), (Mauritania pavi... | [galore, geekier, geeky, gem, gems] |
| 1984 | Going to #UAE for #Visit #Expo2020 https://t.c... | NaN | NaN |
| 1985 | We invite you to participate in our program fo... | [(Palestine pavilion), (Panama pavilion), (Pap... | [empathy, empower, empowerment, enchant, encha... |
| 1986 | #Expo2020: Mohammed Abdulsalam: Yemen will con... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1987 | Darling, you gave me strength and I’m not afra... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 1988 | I love you because you’re the shoulder I lean ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1989 | My dear, I love you because I can always look ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 1990 | So happy to be in #Expo2020 watching Black Eye... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 1991 | Amb. @ehategeka and the pavilion team were hon... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [honorable, honored, honoring, hooray, hopeful] |
| 1992 | Just visited @SpaceX at Expo2020 Dubai\n@elonm... | NaN | NaN |
| 1993 | The Yemeni army spokesman warns companies and ... | NaN | NaN |
| 1994 | Dr. Pippa Malmgren, a technology entrepreneur ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 1995 | No one understands me better then you do, even... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 1996 | Join the festive international event on 5 Febr... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 1997 | The Yemeni army spokesman warns companies and ... | NaN | NaN |
| 1998 | HE Dr Nicole Hoffmeister-Kraut, Minister of Ec... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 1999 | Got Your Expo Passport Yet?\n#Expo2020 #Dubai ... | NaN | NaN |
| 2000 | Black Eyed Peas LIVE CONCERT IN EXPO 2020 DUBA... | NaN | NaN |
| 2001 | I call you my heart desire cuz you brought joy... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2002 | At #DIPMF, a number of leading experts in proj... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2003 | I love you because loving you automatically me... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2004 | Luxembourg Pavilion Expo 2020 Dubai | 360 Vide... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 2005 | @Ugandaexpo2020 Expo is among the military obj... | NaN | NaN |
| 2006 | @ESAExpo2020 Expo is among the military object... | NaN | NaN |
| 2007 | @hololive_En Expo is among the military object... | NaN | NaN |
| 2008 | AREKOPANENG LOCAL COMPETITION\n\nTHE TOP 10 AR... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2009 | Coffee is a symbol of culture all over the wor... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 2010 | If I tell you I don’t have a reason for loving... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2011 | @expo2020dubai Expo is among the military obje... | NaN | NaN |
| 2012 | @KSAExpo2020 Expo is among the military object... | NaN | NaN |
| 2013 | @skzempireturkey @Stray_Kids Expo is among the... | NaN | NaN |
| 2014 | @expo2020dubai @ESAExpo2020 Expo is among the ... | NaN | NaN |
| 2015 | The #GCC Pavilion at #Expo2020 #Dubai celebrat... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2016 | Where Is The Love?\n#BEP #BlackEyedPeas #Expo2020 | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2017 | At #DIPMF, a number of leading experts in proj... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2018 | Visitors at the #SaudiArabia Pavilion are lear... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 2019 | If you go to Expo2020 honestly don’t miss out ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 2020 | Learn about the nation's top projects by atten... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 2021 | Our #Dubai : Trying new foods at the #Vietname... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2022 | https://t.co/CLb7XJuQxy ... Human spirit of mu... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2023 | #Expo2020 serious threats by the #Houthi milit... | NaN | NaN |
| 2024 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2025 | Accelerate #innovation in #HumanExperienceMana... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2026 | The Yemeni army declares the UAE is not safe\n... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 2027 | UAE Minister of Culture and Youth H.E. Noura b... | NaN | NaN |
| 2028 | Frontiers is hosting a live review at @expo202... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2029 | The first-ever World Expo held in the Middle E... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2030 | Today in Dubai, an inauguration ceremony for t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 2031 | Number of companies withdraw from the fair aft... | [(Palestine pavilion), (Panama pavilion), (Pap... | [eyecatching, fabulous, fabulously, facilitate... |
| 2032 | #Expo2020 serious threats to attack by #Houthi... | [(Zambia pavilion), (Zimbabwe pavilion)] | [bewail, beware, bewilder, bewildered, bewilde... |
| 2033 | We are honoured to present our associate partn... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [modern, modest, modesty, momentous, monumental] |
| 2034 | Tomorrow @drjameswalters @AlkaSashin & @Pr... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thrilling, thrillingly, thrills, thrive, thri... |
| 2035 | We are honoured to present our event partner f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2036 | @expo2020dubai What honor it's to see our firs... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2037 | The Luxembourg National Day concluded with a L... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [memorable, merciful, mercifully, mercy, merit] |
| 2038 | BLACK EYED PEAS LIVE CONCERT IN EXPO 2020 #BLA... | NaN | NaN |
| 2039 | @Leonardo_live has sparked a debate on the fut... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2040 | The #SaudiArabia Pavilion is hosting a variety... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2041 | Expo 2020 Dubai: Malaysia’s journey towards s... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 2042 | Celebrating Baden-Wurttemberg National Day at ... | NaN | NaN |
| 2043 | #الإمارات_دويلة_غير_آمنه \n#الإمارات_غير_آمنة ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [aggravate, aggravating, aggravation, aggressi... |
| 2044 | Poetry is always celebrated on Burns Night. Ho... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2045 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2046 | The magical swings section at the #German pavi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magical, magnanimous, magnanimously, magnific... |
| 2047 | The #KuwaitPavilion at #Expo2020Dubai organize... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2048 | Captain Francis Foley, British Hero of the Hol... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [helping, hero, heroic, heroically, heroine] |
| 2049 | Tomorrow join our team to learn how #MachineLe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [benefit, benefits, benevolence, benevolent, b... |
| 2050 | Campus Director @_datasmith addresses #EXPO202... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 2051 | 🗓️26th - 27th January 2022\nTime : 11:00am - 4... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [monumentally, morality, motivated, multi-purp... |
| 2052 | It was an honor showing you our pavilion, Miss... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2053 | For More Details:\n📞 Call Our Hotline +9715259... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2054 | #BreakingNow Yemeni military spokesperson thre... | NaN | NaN |
| 2055 | Distinguished by its delicious taste and uniqu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [distinctive, distinguished, diversified, divi... |
| 2056 | Yemeni military spokesperson: Yehya Saree: Exp... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [loot, lorn, lose, loser, losers] |
| 2057 | What does the future of education look like? A... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2058 | We invite you to grow your business at the hea... | NaN | NaN |
| 2059 | #baecationgoals 😍 Plan your #valentines #stayc... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 2060 | @mary_ng Please ... For the love of god ... Ma... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2061 | URGENT HIRING – OFFICE BOY FOR DUBAI COMPANY h... | NaN | NaN |
| 2062 | Driver for light vehicle – For SHARJAH https:/... | NaN | NaN |
| 2063 | H.E. Dr. Nicole Hoffmeister-Kraut, Minister of... | NaN | NaN |
| 2064 | Amina Alabdouli & Maryam Albalushi have bo... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [seamless, seasoned, secure, securely, selective] |
| 2065 | Here is the original from @army21ye #Houthi S... | NaN | NaN |
| 2066 | The final session of the day saw @MaherNasserU... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [reaffirm, reaffirmation, realistic, realizabl... |
| 2067 | When today’s young learners become teachers an... | [(Slovenia pavilion), (Solomon Islands pavilio... | [breathlessness, breathtaking, breathtakingly,... |
| 2068 | 📆📣[#Conference]\nEnd of the first day of the #... | NaN | NaN |
| 2069 | The #SaudiCoffee2022 initiative is brought to ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2070 | The iconic Al Wasl Plaza \n#Expo2020Dubai #Exp... | NaN | NaN |
| 2071 | YAAS! @ANNARFMUSIC is coming back to perform a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [brilliant, brilliantly, brisk, brotherly, bul... |
| 2072 | Our first lady of #ElSlavador came with a lot ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [heartwarming, heaven, heavenly, helped, helpful] |
| 2073 | #أكسبو\nمعنا قد تخسر ..ننصح بتغير الوجهه ؟؟\n#... | [(Zambia pavilion), (Zimbabwe pavilion)] | [danger, dangerous, dangerousness, dark, darken] |
| 2074 | The wait is almost over! \n\nIn a few days, @B... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2075 | Offer end soon on Embroidery Digitizing, Logo ... | NaN | NaN |
| 2076 | Filipinos are soaring the skies with their bri... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2077 | The session is free for Expo ticket holders. S... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 2078 | We are so excited to have @SIX60 as our #Expo2... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2079 | #Expo2020Dubai #Expo2020 \nYou will lose ,,,... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [loot, lorn, lose, loser, losers] |
| 2080 | #أكسبو...\nمعنا قد تخسر ..ننصح بتغير الوجهه ؟؟... | [(Zambia pavilion), (Zimbabwe pavilion)] | [danger, dangerous, dangerousness, dark, darken] |
| 2081 | Next up in our #Expo2020 National Day line-up ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [beckoning, beckons, believable, believeable, ... |
| 2082 | We will be starting our #Expo2020 National Day... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2083 | Pencil 31 January in your calendars! Our #Expo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2084 | Visit MENASA – Emirati Design Platform to know... | NaN | NaN |
| 2085 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2086 | New date for the performance will be announced... | NaN | NaN |
| 2087 | The state of Goa is ready to showcase its tour... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2088 | During the Dubai #Expo2020, we call on the #Em... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 2089 | as attendants we've learned to build cultural ... | NaN | NaN |
| 2090 | Join us for a seminar on "Sustainability Devel... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [monumentally, morality, motivated, multi-purp... |
| 2091 | The Algeria Pavilion brings this genre to @exp... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2092 | Dubai Expo 2020 with my dearest @harbeenarora ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prodigious, prodigiously, prodigy, productive... |
| 2093 | Expo2020 Dubai gathered women innovators to di... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 2094 | Organized by the National Council for Culture,... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2095 | New date for the performance will be announced... | NaN | NaN |
| 2096 | #Video: Discover delicate #Emirati #crafts at ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 2097 | We invite you to grow your business at the hea... | NaN | NaN |
| 2098 | Everyday visitors from all over visit us. Wor... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 2099 | Expo 2020 Dubai records almost 11 million visi... | NaN | NaN |
| 2100 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | NaN | NaN |
| 2101 | Warm gatherings, delicious food, traditional f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 2102 | The kreon oran pendant stone, a range of penda... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2103 | AIM 2022 Startup welcomes AMPERIA - a kit for ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2104 | DMU's Dr Karthikeyan Kandan is in Dubai today,... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 2105 | Artist Derek Liddington layers fragmented imag... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [fragile, fragmented, frail, frantic, frantica... |
| 2106 | Celebrate the idea of a thriving future at Egy... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2107 | With the pandemic leading to huge increases in... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2108 | That one kid in your school who was musically ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gentle, gentlest, genuine, gifted, glad] |
| 2109 | As part of the #InternationalEducationDay cele... | NaN | NaN |
| 2110 | The HIT Music Festival is back for its second ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2111 | The event on its peak 👍\n@Arab_Health @expo202... | NaN | NaN |
| 2112 | FINLAND PAVILION EXPO2020 https://t.co/MGfPDjR... | NaN | NaN |
| 2113 | #Expo2020 Dubai visits near 11 million https:/... | NaN | NaN |
| 2114 | ASTON MARTIN VANQUISH VOLANTE\n▪️YEAR: 2016\n▪... | [(Slovenia pavilion), (Solomon Islands pavilio... | [convienient, convient, convincing, convincing... |
| 2115 | Saudi coffee: an iconic and distinctive symbol... | [(Slovenia pavilion), (Solomon Islands pavilio... | [distinctive, distinguished, diversified, divi... |
| 2116 | Dubai smart Police station provide #Expo2020 #... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [smart, smarter, smartest, smartly, smile] |
| 2117 | 🟡 25 January 6-8pm. Location: Jubilee Stage\n🟡... | NaN | NaN |
| 2118 | The Great Indian Recipe Contest has started. A... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2119 | Alan Williams, Vice President #Expo2020 Sponso... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 2120 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2121 | Thank you H.E. Mr. Robert Lauer for the invite... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 2122 | In this session, nutrition senior lecturer Dr ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enlighten, enlightenment, enliven, ennoble, e... |
| 2123 | Don't miss out the chance to win with #Expo202... | [(Zambia pavilion), (Zimbabwe pavilion)] | [win, windfall, winnable, winner, winners] |
| 2124 | ATVA GENERAL SECURITY GUARD SERVICE has accred... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pure, purify, purposeful, quaint, qualified] |
| 2125 | The Profilo Nano from Phonak uses transductive... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 2126 | Here’s @DMUDeanHLS explaining what this confer... | NaN | NaN |
| 2127 | The Pakistan Pavilion at Expo2020 is pleased t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2128 | Jack Grealish will be at @expo2020dubai on the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2129 | Launched for the first time in 2016, #AquaFun ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2130 | sanctuary \n\n#expo2020 #dubai #visuals https:... | NaN | NaN |
| 2131 | Minister of Interior visits Swiss pavilion at ... | NaN | NaN |
| 2132 | CSIYAN 6-16 PCS Knuckle Stacking Rings for Wom... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2133 | Taking advantage of our subsequent offers for ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [reaffirm, reaffirmation, realistic, realizabl... |
| 2134 | Shoutout to Eloho Owoferia, Ticketing Team Mem... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [outshone, outsmart, outstanding, outstandingl... |
| 2135 | The #SDGs are the blueprint to achieve a bette... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2136 | World-famous Khyber Pakhtunkhwa’s shawls and l... | [(Palestine pavilion), (Panama pavilion), (Pap... | [faithfulness, fame, famed, famous, famously] |
| 2137 | For latest updates on our programming, visit h... | NaN | NaN |
| 2138 | Simply show your student pass and valid studen... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 2139 | We would like YOU to join us at our #BigData e... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2140 | Invited by the Israel Ministry of Transport an... | NaN | NaN |
| 2141 | When we presented our campaign for @TierraGrat... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2142 | We believe tournaments are also meant to be fu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2143 | 🇱🇺 National Day [Afternoon Impressions] 🇱🇺 Af... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 2144 | We are live again today from #Expo2020 in Duba... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2145 | @DANIELG08148742 Hi Daniel, on Instagram you m... | NaN | NaN |
| 2146 | Black Eyed Peas say @expo2020dubai show is 'li... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2147 | Enter the weekly raffle draw to stand a chance... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 2148 | :::TODAY:::\n#BadenWürttemberg @Expo2020Dubai\... | NaN | NaN |
| 2149 | :::TODAY:::\n#BadenWürttemberg @Expo2020Dubai\... | NaN | NaN |
| 2150 | :::TODAY:::\n#BadenWürttemberg @Expo2020Dubai\... | NaN | NaN |
| 2151 | Khyber Pakhtunkhwa (#KP) to attract an estimat... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 2152 | @LAS_Expo2020 For sure. 😍 | NaN | NaN |
| 2153 | #Italy's Pavillion at #Expo2020 is one of the ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2154 | :::TODAY:::\n#ElSalvador at @Expo2020Dubai 202... | NaN | NaN |
| 2155 | :::TODAY:::\n#ElSalvador at @Expo2020Dubai 202... | NaN | NaN |
| 2156 | :::TODAY:::\n#ElSalvador at @Expo2020Dubai 202... | NaN | NaN |
| 2157 | Expo 2020 Dubai records almost 11 million visi... | NaN | NaN |
| 2158 | H.E. Gabriela Roberta Rodríguez de Bukele, Fir... | NaN | NaN |
| 2159 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | NaN | NaN |
| 2160 | Lebanese pavillion at #expo2020 was shortly c... | [(Zambia pavilion), (Zimbabwe pavilion)] | [crisis, critic, critical, criticism, criticisms] |
| 2161 | and Umar Khan (Operations, UPS)\n\n#Expo2020 #... | NaN | NaN |
| 2162 | World’s largest Holy Quran cast in aluminum an... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2163 | The central region of India is culturally rich... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2164 | Today we are excited to celebrate Baden-Wurtte... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2165 | Live @Expo2020Aus @CreationUAE Managing Direct... | NaN | NaN |
| 2166 | From bringing a tropical #rainforest canopy to... | [(Slovenia pavilion), (Solomon Islands pavilio... | [adulation, adulatory, advanced, advantage, ad... |
| 2167 | #PHOTOS: Part of the world’s largest Holy Qura... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2168 | @Economist_WOI No vision in #oceans filled wit... | NaN | NaN |
| 2169 | Visit the official #Expo2020 #Dubai store for ... | NaN | NaN |
| 2170 | What a day! Great to have our guests from Etis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2171 | Its #Expo2020 Day | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lean, led, legendary, leverage, levity] |
| 2172 | To mark Netaji's 125th birthday, the India Pav... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2173 | Will this be our first Royal spelfie!? @Kensin... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2174 | Innovation made in #BadenWuerttemberg: Rhonda ... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2175 | If you need high-quality professional carpet c... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2176 | We invite you to the night with the Polish Nat... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 2177 | Follow our page for weekly themes and updates.... | NaN | NaN |
| 2178 | Repair Plus is offering 𝐝𝐢𝐬𝐜𝐨𝐮𝐧𝐭𝐞𝐝 𝐩𝐫𝐢𝐜𝐞𝐬 on n... | NaN | NaN |
| 2179 | @EUintheUAE @francedubai2020 @expo2020se @Expo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2180 | Emirates News speaks with Japan Pavilion's arc... | NaN | NaN |
| 2181 | Health & Wellness ⚕️😷 week at #EXPO2020 ha... | NaN | NaN |
| 2182 | FOOTBALL, it's a feeling, a passion, and a lif... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [paramount, pardon, passion, passionate, passi... |
| 2183 | 💡 Tuesday Tips\n\nHow to Calculate Profit From... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2184 | Expo 2020 Dubai records nearly 11 million visi... | NaN | NaN |
| 2185 | Day 5 of #Kurdistan Week at @IraqExpo2020 in D... | [(Slovenia pavilion), (Solomon Islands pavilio... | [beautifully, beautify, beauty, beckon, beckoned] |
| 2186 | From our visit to #Expo2020 at Dubai #ArabPrem... | NaN | NaN |
| 2187 | Situated on the Jumeirah Village Circle, high ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 2188 | If you can't make it to Expo 2020 Dubai, don't... | NaN | NaN |
| 2189 | Meet the Team!\n\nPrisca Anyolo is a Journalis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [paramount, pardon, passion, passionate, passi... |
| 2190 | If you can't make it to Expo 2020 Dubai, don't... | NaN | NaN |
| 2191 | Another great run organised by @expo2020dubai ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2192 | Congratulations to the winners of the UN Big D... | [(Slovenia pavilion), (Solomon Islands pavilio... | [confident, congenial, congratulate, congratul... |
| 2193 | in addition to a range of interesting topics a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2194 | Fusing style with substance, the Breathe eQuad... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [precious, precise, precisely, preeminent, pre... |
| 2195 | Here are the highlights of the ‘Data Science i... | NaN | NaN |
| 2196 | Catch the Black Eyed Peas live at the #Expo202... | NaN | NaN |
| 2197 | All the states of India are powerhouses of cul... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2198 | You can participate in the 3 or 5 km run eithe... | NaN | NaN |
| 2199 | Digital health is a key enabler to improving o... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2200 | Everything starts with an idea! Everything sta... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2201 | Are you a student visiting Expo 2020 Dubai? Ge... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2202 | Save the date: 2-3 March 2022, Dubai, UAE.\nTh... | NaN | NaN |
| 2203 | We are live! Watch the French Healthcare confe... | NaN | NaN |
| 2204 | Dubai RTA warns of delays in the parking entra... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2205 | A tropical rainforest at the heart of #Expo202... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2206 | In an interview with #StudioExpo reporter @the... | NaN | NaN |
| 2207 | NEW ROLE - Sales Specialist – North Africa (De... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sweetly, sweetness, swift, swiftness, talent] |
| 2208 | At launch of UN Regional Hubs at #Expo2020 #Du... | NaN | NaN |
| 2209 | A tropical rainforest at the heart of #Expo202... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2210 | Expo 2020 Dubai is proud to mark the Internati... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2211 | Ministerial panel at UN Big Data conference at... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2212 | Warmest congratulations on your achievement. E... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [helping, hero, heroic, heroically, heroine] |
| 2213 | In partnership with @InsamlingChoice, we are t... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thoughtfulness, thrift, thrifty, thrill, thri... |
| 2214 | Get down to #Expo2020Dubai early for the #Blac... | NaN | NaN |
| 2215 | Black eyes peas mmaya sa expo😍 #Expo2020 #Infi... | NaN | NaN |
| 2216 | Together with @wartsilacorp we've brewed more ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2217 | Today’s business highlight at Expo 2020 Dubai!... | NaN | NaN |
| 2218 | Excited to be attending the launch of the UN R... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2219 | The event, titled ‘Women fighting climate chan... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 2220 | Expo 2020 is a World Expo to be hosted by Duba... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2221 | 200 + teachers have already signed up! \n#educ... | NaN | NaN |
| 2222 | On Day 2 of the 7th edition of #DIPMF, partici... | NaN | NaN |
| 2223 | The Chanderi dates back to the 13th century\nT... | NaN | NaN |
| 2224 | From the Amazon basin in Brazil to the nature ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 2225 | Get hold of the standard copyright services fr... | NaN | NaN |
| 2226 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2227 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 2228 | 5 minutes until the livestream of the High Lev... | NaN | NaN |
| 2229 | Available online and in all Official Stores ac... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 2230 | Your actions support your goals!\n#Dubai #Entr... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 2231 | #loymachedo shares \nSHOCKING Footage UAE Med... | NaN | NaN |
| 2232 | BUSINESS LICENSE WITH LIFETIME VISA\n\nBook an... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2233 | The session is free for Expo 2020 Dubai ticket... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 2234 | Yes, Outsourced Bookkeeping Services are perfe... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 2235 | Get to experience how the Mobility District cr... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 2236 | Gulfood🍽️ is only 3 weeks away!\n.\nMake your ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 2237 | Keeping your radio fleet up to date with the l... | NaN | NaN |
| 2238 | Good Morning 💛☀️💛☀️💛☀️\n\n#NFT #NFTs #UAE #DXB... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2239 | Today we are excited to celebrate El Salvador ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2240 | Business Experts Gulf has created verticals ke... | NaN | NaN |
| 2241 | We start with our national day and we want to ... | NaN | NaN |
| 2242 | These were probably my favourite designs from ... | [(Afghanistan pavilion), (Albania pavilion), (... | [best, best-known, best-performing, best-selli... |
| 2243 | Indian migrant workers at the Expo are compara... | [(Zambia pavilion), (Zimbabwe pavilion)] | [ugliness, ugly, ulterior, ultimatum, ultimatums] |
| 2244 | I'm attending Dubai Terry Fox run this Saturda... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2245 | Not a single female representative! \nBiased r... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2246 | LEADING THE WAY WITH COMPASSIONATE LEADERSHIP\... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2247 | The countries of aggression (US-Saudi-UAE) mus... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2248 | @Yahya_Saree tweets about #DubaiExpo2020..not ... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2249 | Vintage outings near Tuscany recently. I do ha... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2250 | A complete breakdown of Wolverinu for those th... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2251 | Kuwaiti engineer, Jenan alShehab, a participan... | [(Afghanistan pavilion), (Albania pavilion), (... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2252 | Kuwaiti engineer, Jenan alShehab, a participan... | [(Afghanistan pavilion), (Albania pavilion), (... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2253 | It is a great shame not to have a single woman... | [(Zambia pavilion), (Zimbabwe pavilion)] | [shaky, shallow, sham, shambles, shame] |
| 2254 | Kuwaiti engineer, Jenan alShehab, a participan... | [(Afghanistan pavilion), (Albania pavilion), (... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2255 | So George Thomas is dropped !! Big opportunity... | [(Afghanistan pavilion), (Albania pavilion), (... | NaN |
| 2256 | Expo 2020 Dubai has resumed Dubai school visit... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2257 | Professor @pasi_sahlberg says that in a time o... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2258 | The Jeep® Wrangler Sahara has been designed to... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2259 | The Jeep® Wrangler Sahara has been designed to... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2260 | What frame did put a 😊 on your face, non of it... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2261 | O summers , just can't wait for you 🙂. \n\nEag... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2262 | Can't we just slide into the DMs? 👀\nAs boycot... | [(Zambia pavilion), (Zimbabwe pavilion)] | [dirtbags, dirts, dirty, disable, disabled] |
| 2263 | Sick of these nasty KP Govt officials, mistrea... | [(Zambia pavilion), (Zimbabwe pavilion)] | [well-known, well-made, well-managed, well-man... |
| 2264 | #UAE, did you learn a lesson?\nAfter you, it i... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2265 | Hon’ble Minister, #MDoNER Shri @KishanReddyBJ... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2266 | #Yemen’s #Houthi group confirmed it had fired ... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2267 | Did you miss the @Cristiano Q&A session at... | [(Zambia pavilion), (Zimbabwe pavilion)] | [misrepresent, misrepresentation, miss, missed... |
| 2268 | A privilege to be part of the @dundeeuni sessi... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 2269 | Athena and the Robots 1: \n\nPlease meet the m... | [(Zambia pavilion), (Zimbabwe pavilion)] | [hallucination, hamper, hampered, handicapped,... |
| 2270 | Here’s a chance to showcase your innovation at... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2271 | Six Senses The Palm is a breathtaking luxury p... | [(Afghanistan pavilion), (Albania pavilion), (... | [breathlessness, breathtaking, breathtakingly,... |
| 2272 | It was a pleasure meeting #TeamWolf to make th... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2273 | A visit to the #DubaiExpo2020 https://t.co/Oth... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2274 | Promoting and growing ICT innovators & BPO... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2275 | Israel's president spoke at Dubai's Expo 2020 ... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2276 | Ballistic missiles over Abu Dhabi. \n\nA video... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2277 | There is a difference between being a victim a... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2278 | 📢#DubaiExpo2020 \nJoin @ECA_SRO_SA, @CouncilSa... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2279 | 📢#DubaiExpo2020 \nJoin @ECA_SRO_SA, @CouncilSa... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2280 | Seven years ago , they started war against Yem... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2281 | @Ostrov_A Yemen Welcome to the Zionists gang l... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 2282 | Maria is sending love and good wishes for a l... | [(Afghanistan pavilion), (Albania pavilion), (... | [balanced, bargain, beauteous, beautiful, beau... |
| 2283 | BREAKING: Ahead of Israel 🇮🇱 Day at the DubaiE... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 2284 | 🔴#UAE: Al-Mayadeen sources: The air movement i... | [(Zambia pavilion), (Zimbabwe pavilion)] | [streamlined, striking, strikingly, striving, ... |
| 2285 | A Glory And Achievements In Life https://t.co/... | [(Afghanistan pavilion), (Albania pavilion), (... | [achievable, achievement, achievements, achiev... |
| 2286 | #BREAKING: Ahead of #Israel Day at the #DubaiE... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 2287 | This piece totally touched my heart the perfec... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2288 | @krypto_tripp1 @AkiliaP1 #DubaiExpo WHAT A #Sh... | [(Afghanistan pavilion), (Albania pavilion), (... | [a+, abound, abounds, abundance, abundant] |
| 2289 | Sithini istory sale #DubaiExpo guys? Did we re... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2290 | Be surprised and amazed as you view Dubai from... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2291 | @BSCGemsAlert If you buy #WOLVERINU \n\nIts a ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2292 | Blowing and Connecting Minds . . . Learning ab... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2293 | What a performance by Khumariyaan in love Duba... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2294 | While we wait on video, some transcript snippe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2295 | Dubai expo is still on going, it's such a beau... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2296 | @AMG133 The thieving @myanc and their usless c... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2297 | I won't even write a caption 😄🥳 #Saitama is th... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2298 | The #EU’s permanent physical presence at the q... | [(Slovenia pavilion), (Solomon Islands pavilio... | [beautifully, beautify, beauty, beckon, beckoned] |
| 2299 | Taking A Road Trip From Dubai To Khasab By Car... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2300 | We continue to build the first professional NF... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2301 | Dubai’s a #realestate market ended 2021 at a r... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2302 | We're launching a collection of UAE themed NFT... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2303 | Yesterday we warmly welcomed @Malala to our #S... | [(Slovenia pavilion), (Solomon Islands pavilio... | [commitment, commodious, compact, compactly, c... |
| 2304 | y #uea h please #DubaiExpo2020 \ni believed U ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2305 | y #uea h please #DubaiExpo2020 \ni believed U ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2306 | @ShahzadYunasPTI Hey, we have common interests... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2307 | @SMEX Hey there, we are loving the posts you d... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2308 | @paradisegroupnm Hey, we have common interests... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2309 | @bocadolobo Hey there, we are loving the posts... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2310 | @abslmf Hey, we have common interests. You can... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2311 | @insightssuccess Hey there, we are loving the ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2312 | A #beachfront #property, renovated to feel lik... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 2313 | Analysis by a premier #dubailuxury #brokeragec... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 2314 | This is a call for Innovators & BPO Practi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 2315 | 😲 The Incredible @Cristiano made a kid's dream... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 2316 | Infused yourself to a different world of cultu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2317 | A short video of the SA stall at the #DubaiExp... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2318 | Cristiano Ronaldo received Globe Soccer's Top ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 2319 | A collaboration between #DubaiExpo2020 and Car... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dedicated, defeat, defeated, defeating, defeats] |
| 2320 | I can't help but feeling that #southafrica cou... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2321 | The ongoing $7bn #DubaiExpo2020 is a mere plat... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2322 | The #DubaiExpo2020 is a groundbreaking event ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 2323 | This has been a great event and Respiratory In... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 2324 | @McDonalds make Crypto Meals a thing, the adul... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2325 | @Shib_nobi the journey of $Shinja is glorious ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [glistening, glitter, glitz, glorify, glorious] |
| 2326 | @King2014David @Magda_Wierzycka What a disgrac... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2327 | .Join us at #DubaiExpo2020 as @ECA_SRO_SA,#Mau... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2328 | Thanks @tradegovuk for drinks at #dubaiexpo2... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2329 | @JakeGagain I agree ! It’s going recover soon ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [recommended, reconcile, reconciliation, recor... |
| 2330 | Here is the list Titanium sponsors for #DubaiE... | [(Slovenia pavilion), (Solomon Islands pavilio... | [brilliant, brilliantly, brisk, brotherly, bul... |
| 2331 | Thank whoever for half-baked mercies! \n\nLook... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2332 | ARIA – the analysis of voice data as the next ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2333 | Chef Vikas Khanna unveils new book from India ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2334 | The intelligence agencies of the United Arab E... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2335 | The intelligence agencies of the United Arab E... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2336 | The intelligence agencies of the UAE reportedl... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2337 | @drshamamohd Some years ago, there was a sloga... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2338 | Well @drshamamohd Remember "India is Indira, a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2339 | The intelligence agencies of the United Arab E... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2340 | Please help us to open our country Nigeria vis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prominent, promise, promised, promises, promi... |
| 2341 | @drshamamohd Here are some virtual glimpses of... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2342 | A New Flow of Life - Coming Soon\n\nAlaya Beac... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2343 | @GailAllan15 @Tourism_gov_za @LindiweSisuluSA ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2344 | Llusern Scientific - Lodestar DX - LAMP - base... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2345 | #NSTnation Zuraida, who is a strong advocate o... | [(Slovenia pavilion), (Solomon Islands pavilio... | [advantageously, advantages, adventuresome, ad... |
| 2346 | People's search for #holidayhomes often brough... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [hospitable, hot, hotcake, hotcakes, hottest] |
| 2347 | Another victory by Pakistan!\n\nPakistan has w... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [god-given, god-send, godlike, godsend, gold] |
| 2348 | $SHINJA will eat a zero by #DubaiExpo in March... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2349 | In case you missed the last weekly #ChihiroInu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2350 | Celebrating Australia day with a wonderful di... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2351 | A New Flow of Life - Coming Soon\n\nAlaya Beac... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2352 | Guess everyone wants free #SHINJA tokens 5% #R... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2353 | At Expo 2020 Dubai, a portion of the world’s l... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2354 | Up to 12 to 40 people can enjoy a cruise or a ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 2355 | Pakistan has won a gold medal in the World Sta... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [god-given, god-send, godlike, godsend, gold] |
| 2356 | Uganda has 53% of the World’s Gorilla Populati... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2357 | Prominent Pakistani businessman and philatelis... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prominent, promise, promised, promises, promi... |
| 2358 | That feeling of getting dressed for the Republ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [patience, patient, patiently, patriot, patrio... |
| 2359 | Wow , I am kind of lost for words how quickly ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2360 | Houthi spokesman Yahya Saree openly threatens ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2361 | From 8 AM - 2 PM GMT tomorrow:\n\nThe Life Sci... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2362 | Targeting the #DubaiExpo2020 would be a signif... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2363 | Get the chance of meeting with the founders fo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2364 | Book flights for you and your companions to Du... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2365 | The world’s greatest show brings friends toget... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2366 | Become a member of our Diamond club !!\nEnjoy ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2367 | Part of the world’s largest Holy Quran was rec... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2368 | Get a chance to meet the #pioneers behind the ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2369 | #DubaiExpo #KurdistanWeek \n\nThis week @expo2... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2370 | . @emirate passengers returning to or visiting... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2371 | The unveiling of a part of the world's largest... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2372 | Life in a galaxy\n\nhttps://t.co/BHRDFagFTR\n\... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2373 | @HasanIsmaik @Jerusalem_Post Hey, we have comm... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2374 | @NYC_Mackenzie Hey there, we are loving the po... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2375 | Dubai-based Safe Developers, a boutique real e... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2376 | The unveiling of a part of the world's largest... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2377 | @Chefjaydene Hey, we have common interests. Yo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2378 | @The_KariGhars Hey there, we are loving the po... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2379 | @RolandN Hey, we have common interests. You ca... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2380 | @conceptstr Hey there, we are loving the posts... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2381 | @HasanIsmaik @AnnaharAr Hey, we have common in... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2382 | @PearlsSalesRent Hey there, we are loving the ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2383 | @RuidazeLLC Hey, we have common interests. You... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2384 | @okt_ranking30 @KpakpoVillas Hey there, we are... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2385 | Was fortunate to be a part of the unveiling o... | [(Slovenia pavilion), (Solomon Islands pavilio... | [confident, congenial, congratulate, congratul... |
| 2386 | the Dubai property market is witnessing a rema... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [recovery, rectification, rectify, rectifying,... |
| 2387 | With ALahramat Company, we will guarantee your... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [promoter, prompt, promptly, proper, properly] |
| 2388 | Great way to celebrate\nBirthday,🎂🎁🎈\nEvent, 💃... | [(Afghanistan pavilion), (Albania pavilion), (... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2389 | Dubai Metro - One of the most advanced rail sy... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [radicals, rage, ragged, raging, rail] |
| 2390 | #Day 05 - Eminent Voices\n\nDr. Bobby Jose, MB... | [(Slovenia pavilion), (Solomon Islands pavilio... | [advocated, advocates, affability, affable, af... |
| 2391 | Thank you for the positive response and encour... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 2392 | Tonight on the show we will show you how Kenya... | [(Slovenia pavilion), (Solomon Islands pavilio... | [affirmation, affirmative, affluence, affluent... |
| 2393 | What an amazing experience at Dubai Expo 2020.... | [(Afghanistan pavilion), (Albania pavilion), (... | [amazed, amazement, amazes, amazing, amazingly] |
| 2394 | Amazing!👏🤗🎤🎹 @SamiYusuf #Live #DubaiExpo #trad... | [(Afghanistan pavilion), (Albania pavilion), (... | [amazed, amazement, amazes, amazing, amazingly] |
| 2395 | when #Khumariyaan performing how audience is n... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2396 | Amazing New Villas Project In Dubai\nBook Your... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2397 | Best song ever #ForTrueLover\nIt's really very... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2398 | @Properbuz Hi, your tweets are amazing. We are... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2399 | @panoramarbella Hi, your tweets are amazing. W... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2400 | @HoodedHorseInc Hi, your tweets are amazing. W... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2401 | @AlbertoEMachado @emirates @DigitalTrendsEs @F... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2402 | Amazing New Villas Project In Dubai\nBook Your... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2403 | @bryan_marota Hi, your tweets are amazing. We ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2404 | @1inch Hi, your tweets are amazing. We are hap... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2405 | @RClaremont Hi, your tweets are amazing. We ar... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2406 | @Immersys Hi, your tweets are amazing. We are ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2407 | @SBIDHyd Hi, your tweets are amazing. We are h... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2408 | Uganda’s participation in the #DubaiExpo2020 w... | [(Afghanistan pavilion), (Albania pavilion), (... | [articulate, aspiration, aspirations, aspire, ... |
| 2409 | Ronald accept Globe Soccer to scorer award >... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 2410 | Cristiano Ronaldo is in Dubai to receive Globe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 2411 | Cristiano Ronaldo accepts Globe Soccer's Top S... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 2412 | Cristiano Ronaldo accepts Globe Soccer's Top S... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 2413 | 2022 Chevy Camaro ZL1 isn't the most powerful ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 2414 | Pls visit our online store for retail purchase... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2415 | Alien ipod docks #DubaiExpo #uae #available #h... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [heroize, heros, high-quality, high-spirited, ... |
| 2416 | MERCEDES VITO -\nThe best choice for group and... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 2417 | #Rwanda National Day at #DubaiExpo2020.\nGet t... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 2418 | What an awesome experience \n#DubaiExpo #Dubai... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 2419 | https://t.co/pv5E9G6PWm\n\nPlease visit this l... | [(Afghanistan pavilion), (Albania pavilion), (... | [balanced, bargain, beauteous, beautiful, beau... |
| 2420 | @Dragon_Wanderer Wow golden temple of Amritsar... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wow, wowed, wowing, wows, yay] |
| 2421 | #Dubai memories from #BurjKhalifa . \n\nVisiti... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 2422 | 🚨 Undersecretary of the Ministry of Informatio... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 2423 | #GovernmentofGB never fails to surprise us wit... | [(Afghanistan pavilion), (Albania pavilion), (... | [beautifully, beautify, beauty, beckon, beckoned] |
| 2424 | 💯"The Secret Of Creativity"💫Atech Interiors LL... | [(Slovenia pavilion), (Solomon Islands pavilio... | [beautifully, beautify, beauty, beckon, beckoned] |
| 2425 | But there is another goal--which also benefits... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 2426 | privileged to hear from foreigners that #Pakis... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 2427 | I would like to work in the best restaurants i... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 2428 | Abu Dhabi 2* and 5* was our 2nd period of Show... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2429 | #Universe deserve to visit paradise\nto celebr... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 2430 | Just one more; It was super exciting having th... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2431 | Get best offers on Dubai Expo 2022 Special 6N/... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2432 | One of the best venues not to miss when in Dub... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2433 | Best Digital Marketing Tips for your online bu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2434 | 5 Best Pavilions Of Expo 2020 and Why?\n.\nhtt... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2435 | One of my best paintings ® Orginal copy can al... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2436 | Tailor made Dubai Holiday Packages : Explore t... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2437 | Saudi Arabia's Horror theme Restaurant: Name, ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [blockbuster, bloom, blossom, bolster, bonny] |
| 2438 | The #Dubairealestate market is experiencing an... | [(Afghanistan pavilion), (Albania pavilion), (... | [bonus, bonuses, boom, booming, boost] |
| 2439 | Pratyusha Gurrapu, said that #dubaivilla price... | [(Zambia pavilion), (Zimbabwe pavilion)] | [shamelessness, shark, sharply, shatter, shemale] |
| 2440 | Sustainable #business has helped #Dubai to re... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [heartwarming, heaven, heavenly, helped, helpful] |
| 2441 | My #Dubai days. Looking forward to be back the... | [(Zambia pavilion), (Zimbabwe pavilion)] | [misrepresent, misrepresentation, miss, missed... |
| 2442 | Cool breaze and brisk walks. Something that I ... | [(Afghanistan pavilion), (Albania pavilion), (... | [brilliant, brilliantly, brisk, brotherly, bul... |
| 2443 | #SHINJA AKA BULLISH BEHAVIOR💥\n ... | [(Afghanistan pavilion), (Albania pavilion), (... | [brilliant, brilliantly, brisk, brotherly, bul... |
| 2444 | We are #United to strengthen us all in this #C... | [(Afghanistan pavilion), (Albania pavilion), (... | [capability, capable, capably, captivate, capt... |
| 2445 | @JakeGagain We are #United to strengthen us al... | [(Afghanistan pavilion), (Albania pavilion), (... | [capability, capable, capably, captivate, capt... |
| 2446 | When you need to support soft image of Pakista... | [(Afghanistan pavilion), (Albania pavilion), (... | [capability, capable, capably, captivate, capt... |
| 2447 | Visited @expo2020singapore. Got some winter Me... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unusable, unusably, unuseable, unuseably, unu... |
| 2448 | 2/3.He made the remarks during Rwanda’s Nation... | [(Afghanistan pavilion), (Albania pavilion), (... | [celebrated, celebration, celebratory, champ, ... |
| 2449 | @AD_GQ Thank you so much my dear friend, we ar... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 2450 | Isaac Herzog visits Expo 2020 Dubai for Israel... | [(Afghanistan pavilion), (Albania pavilion), (... | [celebrated, celebration, celebratory, champ, ... |
| 2451 | celebration kicks off in Abu Dhabi all the way... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2452 | Deal of the day\niPhone 7 128 gb original neat... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [neat, neatest, neatly, nice, nicely] |
| 2453 | Award-winner Tarek Yamani is all energy—a meld... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [available, aver, avid, avidly, award] |
| 2454 | This is obscene 7000 dead on a vanity project... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2455 | Join @SwecareSweden, @SocialDep, Vision Zero C... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2456 | @HamdanMohammed @Light_DeFi we would like to i... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2457 | @HouseBuyFast @Feefo_Official Hey,we will be p... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2458 | @billionairetrib @YouTube Hey,we will be pleas... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2459 | @abslmf hey,we will be pleased if you visit ou... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2460 | Ethiopian Airlines is pleased to announce the ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2461 | @TheWilderGroup hey,we will be pleased if you ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2462 | @LuxuryGoesMLM hey,we will be pleased if you v... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2463 | @conceptstr hey,we will be pleased if you visi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2464 | @LeahPRealtor hey,we will be pleased if you vi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2465 | @value_sale hey,we will be pleased if you visi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2466 | @SSPHplus goes to #Expo2020: Pleased to contri... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2467 | We are pleased to welcome our distinguished gu... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prodigious, prodigiously, prodigy, productive... |
| 2468 | @SusheillaMehta hey,we will be pleased if you ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2469 | @REMAXofBoulder hey,we will be pleased if you ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [playful, playfully, pleasant, pleasantly, ple... |
| 2470 | What a magical week with @UN @TheGlobalGoals E... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pleasure, plentiful, pluses, plush, plusses] |
| 2471 | A pleasure to have UN Resident Coordinator for... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [propitious, propitiously, pros, prosper, pros... |
| 2472 | It was a great pleasure to meet with Sheikh Na... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pleasure, plentiful, pluses, plush, plusses] |
| 2473 | If you are at @expo2020dubai, join us at 3pm f... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [poetic, poeticize, poignant, poise, poised] |
| 2474 | Surat zari is a unique textile form of #Surat ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 2475 | Keep watching ,most favourite Very popular Mas... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 2476 | #GCC markets had a very positive 2021, support... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [recovery, rectification, rectify, rectifying,... |
| 2477 | We convened inspiring changemakers to share id... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 2478 | Are you looking for unique, powerful & cul... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 2479 | Are you looking for unique, powerful & cul... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [posh, positive, positively, positives, powerful] |
| 2480 | #TheBeyondStars Fascinating a precious, magica... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [precious, precise, precisely, preeminent, pre... |
| 2481 | Mercure Hotel - Barsha Heights\nPrestige Suite... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 2482 | Mercure Hotel - Barsha Heights\nPrestige Suite... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 2483 | We are proud of our Middle Eastern culture, an... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2484 | About us…\nCrypto Falconry #NFTs are about sha... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pretty, priceless, pride, principled, privilege] |
| 2485 | #SamiYusuf #Expo2020 ❤️\nWhat a privilege it w... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pretty, priceless, pride, principled, privilege] |
| 2486 | Pakistani activist for female education and No... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [privileged, prize, proactive, problem-free, p... |
| 2487 | 🎥 "Connecting beauty with sustainability &... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [privileged, prize, proactive, problem-free, p... |
| 2488 | @LGCAXIO It was nice meeting Dominic at the st... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prodigious, prodigiously, prodigy, productive... |
| 2489 | This was a wonderful and inspiring experience!... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [profusion, progress, progressive, prolific, p... |
| 2490 | New article: Luxembourg promises international... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prominent, promise, promised, promises, promi... |
| 2491 | Two days left till the official launch of #DIP... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prominent, promise, promised, promises, promi... |
| 2492 | 10 ways you can help protect the planet.\n\n@e... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prosperous, prospros, protect, protection, pr... |
| 2493 | @kalpana_designs @HiHyderabad @KTRTRS @arvindk... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prosperous, prospros, protect, protection, pr... |
| 2494 | #SaudiVision2030 follows the Sustainable Devel... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prosperous, prospros, protect, protection, pr... |
| 2495 | We are proud: from product vision to a success... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2496 | We are proud to launch our autonomous self-dri... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2497 | Lots of innovative life science solutions are ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2498 | @Lubna_ae in a small way i l can make a differ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2499 | Health Consciousness, Team Building, Networkin... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2500 | When women thrive, humanity thrives! like a gi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2501 | Crypto Falconry. \n\nWe are proud to bring the... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [proud, proven, proves, providence, proving] |
| 2502 | Pure genius exhibition by artist take a close ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pure, purify, purposeful, quaint, qualified] |
| 2503 | The Great Indian Recipe Contest has started. A... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2504 | I'm very hot and want to have sex with you, ho... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2505 | Are you ready to have your mind blown? 🤯\nAmir... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2506 | 🗓️Are you ready for this week’s activities?\n\... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2507 | 🗓️Are you ready for this week’s activities?\n\... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2508 | The Great Indian Recipe Contest has started. A... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2509 | Looking to rent an exceptional 1-4 bedroom apa... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2510 | We are within. \nDubai 2020 EXPO.\n\nJust like... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2511 | Break, shatter and de-stress yourself at The S... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2512 | The Great Indian Recipe Contest has started. A... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2513 | I'm available, I'm ready to serve, please mass... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2514 | Are you ready for a breathtaking trip? Keep yo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2515 | Get ready for Wonderland!🔥A snippet of what to... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2516 | LAMBORGHINI URUS - not like a sports car as Us... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2517 | I'm available, I'm ready to serve, please mass... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [razor-sharp, reachable, readable, readily, re... |
| 2518 | #RisalaFurniture provide best quality #Motoriz... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [reaffirm, reaffirmation, realistic, realizabl... |
| 2519 | #Dubai’s economy to take a massive dip in 2022... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [recommended, reconcile, reconciliation, recor... |
| 2520 | #UAEReleaseHafeezBaloch #DubaiExpo2020 \n@POTU... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [recovery, rectification, rectify, rectifying,... |
| 2521 | Expo 2020 Dubai global goals business forum em... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [reform, reformed, reforming, reforms, refresh] |
| 2522 | Your reliable partner in Azerbaijan. You can a... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [reliable, reliably, relief, relish, remarkable] |
| 2523 | Honey Types That Are Good For Skin\nIf you wan... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 2524 | Dubai has reinforced its status as a destinati... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 2525 | Chuckchilli is a unique Mzansi style home made... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2526 | Whether you need a quick deploying base statio... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2527 | Special incentives have been given to Cinema h... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [reverent, reverently, revitalize, revival, re... |
| 2528 | The government has taken concrete steps for th... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [reverent, reverently, revitalize, revival, re... |
| 2529 | Come and witness the rich heritage, culture an... | [(Slovenia pavilion), (Solomon Islands pavilio... | [beautifully, beautify, beauty, beckon, beckoned] |
| 2530 | Come and witness the rich heritage, culture an... | [(Slovenia pavilion), (Solomon Islands pavilio... | [beautifully, beautify, beauty, beckon, beckoned] |
| 2531 | Minister of State for Foreign Trade. The deleg... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2532 | Assistant Minister of Foreign Affairs and Inte... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2533 | @expo2020_jp Earn 7000 from our rich Arabic an... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [reward, rewarding, rewardingly, rich, richer] |
| 2534 | The official ceremony was capped off with a mu... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2535 | Culturally rich and art loving Pakistan 🇵🇰🇵🇰🇵🇰... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2536 | Looking to start your business in #Dubai ? Loo... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [richly, richness, right, righten, righteous] |
| 2537 | @parveen_mehnaz @RNAKOfficial @iAliTajGB Why d... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [richly, richness, right, righten, righteous] |
| 2538 | Wooden arch is on a roll - and we loved Moriya... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2539 | British actress Amy Jackson recalls fond memor... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [richly, richness, right, righten, righteous] |
| 2540 | 🎀🎀🎀SPECIAL ANNOUNCEMENT🎀🎀🎀\nOn 2-2-22 (2nd Feb... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2541 | 📢📢📢SPECIAL ANNOUNCEMENT📢📢📢\nOn 2-2-22 (2nd Feb... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2542 | 🎀🎀🎀SPECIAL ANNOUNCEMENT🎀🎀🎀\nOn 2-2-22 (second ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2543 | This Performance can make us emotional. The ex... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [rockstar, rockstars, romantic, romantically, ... |
| 2544 | All companies or countries with investments in... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 2545 | UAE\nWhere is Hafeez Baloch\n\n#Dubai \n#Dubai... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 2546 | UAE\nWhere is Hafeez Baloch\n\n#Dubai \n#Dubai... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 2547 | Where is #HafeezBaloch?\n#UAE #Dubai #DubaiExp... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 2548 | UAE\nWhere is Hafeez Baloch\n\n#Dubai \n#Dubai... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 2549 | @YaserAlyamani #UAE will be a conflict zone fo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2550 | @ACentaurMedia @NatashaTurak @CNBC #UAE will b... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2551 | @_HadleyGamble @CNBC @CNBCi @CNBCMiddleEast @H... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2552 | @Adinoadonai #UAE will be a conflict zone for ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2553 | @Ghada_Makhoul @GuruOfficial @ItsMePragya #UAE... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2554 | @mega_guide #UAE will be a conflict zone for a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2555 | @GoodnessUae #UAE will be a conflict zone for ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2556 | @TRintheworld #UAE will be a conflict zone for... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2557 | @Aslamiyaan @modgovae #UAE will be a conflict ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2558 | @VugarBayramov3 #UAE will be a conflict zone f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2559 | @DefenceInsight_ #UAE will be a conflict zone ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2560 | @qassim_mrs #UAE will be a conflict zone for a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2561 | @NorwayUN @UNinYE @NorwayMFA @UAEMissionToUN @... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2562 | @tVoiceOfCitizen #UAE will be a conflict zone ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2563 | @EDAC_EN #UAE will be a conflict zone for a fa... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2564 | @UAE_Forsan @KensingtonRoyal @expo2020dubai @U... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2565 | @JustineZwerling @ChabadUae @michaldivon @Ostr... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2566 | @TheNihariKing #UAE will be a conflict zone fo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2567 | @MariamAlmzrouei #UAE will be a conflict zone ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2568 | @MoustafaFahour #UAE will be a conflict zone f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2569 | @TheCradleMedia #UAE will be a conflict zone f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2570 | @LadyVelvet_HFQ #UAE will be a conflict zone f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2571 | @MalcolmNance It’s not #Iran, it’s #Yemen.We’r... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2572 | @aljundijournal #UAE will be a conflict zone f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2573 | @Sarahalii99 Not anymore. #UAE will be a confl... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2574 | @sirajnoorani #UAE will be a conflict zone for... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2575 | @HeshmatAlavi #UAE will be a conflict zone for... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2576 | @CyclistAnons #UAE will be a conflict zone for... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2577 | @magedmahmoudEGY #UAE will be a conflict zone ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2578 | @xhacka_olta @AlEmbassyUAE @MoFAICUAE #UAE wil... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2579 | @HalimaA69689825 #UAE will be a conflict zone ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2580 | @halimalmhiri Bla bla bla. #UAE will be a conf... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2581 | @HindNyadu #UAE will be a conflict zone for a ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2582 | @sadiq_zaf #UAE will be a conflict zone for a ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2583 | @SMQureshiPTI @ABZayed #UAE will be a conflict... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2584 | @Ostrov_A It is #Yemen bold head 😂. #UAE will ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2585 | @realbawamp #UAE will be a conflict zone for a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2586 | @Fatimalketbi1 #UAE will be a conflict zone fo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2587 | @shabzdxb #UAE will be a conflict zone for a f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2588 | @hellopixy Hilarious 😂. #UAE will be a conflic... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [heroize, heros, high-quality, high-spirited, ... |
| 2589 | @edrormba #UAE will be a conflict zone for a f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2590 | @_sangpuchangsan #UAE will be a conflict zone ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2591 | @RabbiPoupko @uaeinhebrew @UAEIsraelBiz @uae21... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2592 | @Krommsan #UAE will be a conflict zone for a f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2593 | @ZainabAlikd1 #UAE will be a conflict zone for... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2594 | @gyanjarahatke #UAE will be a conflict zone fo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2595 | @no_itsmyturn #UAE will be a conflict zone for... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2596 | @LMMiddleEast @OmranAlhammadi_ #UAE will be a ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2597 | @ZaidBenjamin5 #UAE will be a conflict zone fo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2598 | @Qasemebnlhasan #UAE will be a conflict zone f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2599 | @shieldintel #UAE will be a conflict zone for ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2600 | @AlMehairiAUH @etihad @AUH #AboDhabi is not th... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2601 | @hamzaxofficial #UAE will be a conflict zone f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2602 | @mujrn Not anymore. #UAE will be a conflict zo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2603 | @AminaJMohammed #UAE will be a conflict zone f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2604 | @Mohamma49356772 #UAE will be a conflict zone ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2605 | @affeu2 #UAE will be a conflict zone for a fat... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2606 | @AD_GQ #UAE will be a conflict zone for a fata... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2607 | @halimalmhiri #UAE will be a conflict zone for... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2608 | @HodoMure #UAE will be a conflict zone for a f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2609 | @viper202020 It is #Yemen. #UAE will be a conf... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2610 | @borneast55 #UAE will be a conflict zone for a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2611 | #UAE not safe anymore #Emirates #Expo2020 #D... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [roomier, roomy, rosy, safe, safely] |
| 2612 | Live@Expo: Belarus, Samoa, and Saint Lucia Pav... | [(Belarus pavilion), (Belgium pavilion), (Beli... | [sagacity, sagely, saint, saintliness, saintly] |
| 2613 | We salute the Architects of Modern India and t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [modern, modest, modesty, momentous, monumental] |
| 2614 | Dubai EXPO 2022 Holiday - Get Super Saver Pack... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [saver, savings, savior, savvy, scenic] |
| 2615 | End of Winter Season super saver Package to vi... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [saver, savings, savior, savvy, scenic] |
| 2616 | End of Winter Season super saver Package to vi... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [saver, savings, savior, savvy, scenic] |
| 2617 | This art form is made to show beautiful illust... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 2618 | India promoting Kashmir in #DubaiExpo #dubaiex... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dawn, dazzle, dazzled, dazzling, dead-cheap] |
| 2619 | #CROWNSUP! Phenomenal dance group The Royal Fa... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [phenomenal, phenomenally, picturesque, piety,... |
| 2620 | Meet the "faces" of our pavilion - frontliners... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2621 | It has been years in the planning so it was in... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2622 | In a world driven by technological innovation,... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2623 | AIM 2022 Startup welcomes AgroTop, an online p... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2624 | Congratulations Leading Hero of the Month. Rya... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2625 | @altcryptocom https://t.co/e8rRPV4Mnd\n#niros ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2626 | @rovercrc https://t.co/P8mlU72YVc Please Check... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2627 | @SharksCoins https://t.co/e8rRPV4Mnd\n#niros #... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2628 | @choocolatier https://t.co/e8rRPV4Mnd\n#niros ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2629 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2630 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2631 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2632 | @Crypto__emily https://t.co/e8rRPV4Mnd\n#niros... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2633 | @SharksCoins https://t.co/kR02ranic7 Please Ch... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2634 | @SharksCoins https://t.co/e8rRPV4Mnd\n#niros #... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2635 | @pushpendrakum https://t.co/kR02ranic7 Please ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2636 | @Whalesincoming @altcryptocom @Shibtoken @BscP... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2637 | @propeus00 https://t.co/e8rRPV4Mnd\n#niros #ni... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2638 | @propeus00 https://t.co/e8rRPV4Mnd\n#niros #ni... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2639 | @SharksCoins https://t.co/e8rRPV4Mnd\n#niros #... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2640 | @AltcoinAdvisor_ @GalaxyHeroesGHC @CheemsInu @... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2641 | @AltcoinAdvisor_ @GalaxyHeroesGHC @CheemsInu @... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2642 | @pushpendrakum https://t.co/e8rRPV4Mnd\n#niros... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2643 | @pushpendrakum https://t.co/e8rRPV4Mnd\n#niros... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2644 | @pushpendrakum https://t.co/e8rRPV4Mnd\n#niros... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2645 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2646 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2647 | @Whalesincoming https://t.co/e8rRPUNaYD\n#niro... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2648 | @davidgokhshtein Same here with \nhttps://t.co... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2649 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2650 | @pushpendrakum https://t.co/e8rRPV4Mnd\n#niros... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2651 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2652 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2653 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2654 | @CryptosBatman https://t.co/kR02ranic7 Please ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2655 | @CryptosBatman https://t.co/kR02ranic7 Please ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2656 | @pushpendrakum https://t.co/kR02ranic7 Please ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2657 | @CryptosBatman https://t.co/kR02ranic7 Please ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2658 | @CryptosBatman https://t.co/kR02ranic7 Please ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2659 | @pushpendrakum https://t.co/kR02ranic7 Please ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2660 | @pushpendrakum https://t.co/kR02ranic7 Please ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2661 | @pushpendrakum https://t.co/e8rRPV4Mnd Please ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2662 | #ItalyPavilion expresses #solidarity with #Ton... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2663 | @AuqustNX @Bitcoinsensus @alienworldwars @Niro... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2664 | @AuqustNX @BTCTN @NirosXFinance @NirosFinance ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2665 | @AuqustNX @dinaamattarr @NirosXFinance @NirosF... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2666 | @AuqustNX @JakeGagain @NirosXFinance https://t... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [solicitous, solicitously, solid, solidarity, ... |
| 2667 | “We are the people of love."\nDeep emotions! I... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [outshone, outsmart, outstanding, outstandingl... |
| 2668 | Immerse and indulge yourself in this spectacul... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 2669 | @Dubai_Calendar @WeAreAlsayegh https://t.co/WA... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [phenomenal, phenomenally, picturesque, piety,... |
| 2670 | Join for Global Goals week to see more spectac... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [spacious, sparkle, sparkling, spectacular, sp... |
| 2671 | Here are 10 photographs from @arrahman and @sh... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2672 | Ecstatic music,Spiritual journey breathtaking ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2673 | Expo 2020 to celebrate International Day of Ed... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2674 | US Commissioner-General Robert Clark & his... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [a+, abound, abounds, abundance, abundant] |
| 2675 | Sometimes a happy accident ends up creating a ... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [a+, abound, abounds, abundance, abundant] |
| 2676 | The Commissioner-General for Brazil at Expo 20... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [best, best-known, best-performing, best-selli... |
| 2677 | Need a break? We invite you to the Bosnia and ... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [a+, abound, abounds, abundance, abundant] |
| 2678 | Our guests spent some time at our elegant rest... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [audibly, auspicious, authentic, authoritative... |
| 2679 | We received a visit from Harsh Mehta, MD, Sanc... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [a+, abound, abounds, abundance, abundant] |
| 2680 | Then, at Igarapé Hall, the curator of “Beyond ... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [a+, abound, abounds, abundance, abundant] |
| 2681 | All #sports #fans were in for a treat because ... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [a+, abound, abounds, abundance, abundant] |
| 2682 | Come & discover the stunning Caatinga biom... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [accessable, accessible, acclaim, acclaimed, a... |
| 2683 | Expo 2020 Dubai hosted a great discussion on i... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2684 | We hosted a great discussion on inclusive and ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2685 | Don't miss out on mega-talent Jacob Collier, w... | [(Slovenia pavilion), (Solomon Islands pavilio... | [accessable, accessible, acclaim, acclaimed, a... |
| 2686 | Dubai expo run 2020/22\n10km goal accomplished... | [(Slovenia pavilion), (Solomon Islands pavilio... | [accomplished, accomplishment, accomplishments... |
| 2687 | Here are the highlights of the advanced Master... | [(Slovenia pavilion), (Solomon Islands pavilio... | [adulation, adulatory, advanced, advantage, ad... |
| 2688 | Recognizing the significance of gender equalit... | [(Slovenia pavilion), (Solomon Islands pavilio... | [advocated, advocates, affability, affable, af... |
| 2689 | Mission Possible\n\nGear used @pentax.photogra... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2690 | Mission Possible\n\nGear used @pentax.photogra... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2691 | I listening this exuberant masterpiece by hold... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [paramount, pardon, passion, passionate, passi... |
| 2692 | #DubaiExpo2020\nIt’s a Grand, beautiful and ey... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [grand, grandeur, grateful, gratefully, gratif... |
| 2693 | #Expo2020 Russian Pavilion was amazing! Concep... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2694 | What an amazing and fascinating place, unlike ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2695 | Oum - An amazing mix of hassani, #jazz, #gospe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2696 | Hanging out at @expo2020dubai with the amazing... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2697 | Ms. @midianalmeida, celebrated Brasilian singe... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [celebrated, celebration, celebratory, champ, ... |
| 2698 | #MomentsThatMatter presents to you “Creating o... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2699 | #MomentsThatMatter presents to you “Creating o... | [(Slovenia pavilion), (Solomon Islands pavilio... | [amazed, amazement, amazes, amazing, amazingly] |
| 2700 | @XxZroyaxX Hi, your tweets are amazing. We are... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2701 | @ZebraAlexandria Hi, your tweets are amazing. ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2702 | THE MOST ATTRACTIVE AND COLORFUL FACADE @expo2... | [(Slovenia pavilion), (Solomon Islands pavilio... | [colorful, comely, comfort, comfortable, comfo... |
| 2703 | Join us for a week of events and activities as... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2704 | Saudi coffee represents an ancient culture tha... | [(Slovenia pavilion), (Solomon Islands pavilio... | [audibly, auspicious, authentic, authoritative... |
| 2705 | At #Expo2015, #Brazil took home Honorable Ment... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [awarded, awards, awe, awed, awesome] |
| 2706 | Award-winning author #FlavelMonteiro is on #St... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 2707 | Welcomed by Filipino hospitality, James Deakin... | [(Slovenia pavilion), (Solomon Islands pavilio... | [commitment, commodious, compact, compactly, c... |
| 2708 | Meet Grace, a talented handicraft specialist f... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [courtly, covenant, cozy, creative, credence] |
| 2709 | Inspired by AlUla is a collection of retail ce... | [(Slovenia pavilion), (Solomon Islands pavilio... | [available, aver, avid, avidly, award] |
| 2710 | Congratulations to United World College ISAK J... | [(Slovenia pavilion), (Solomon Islands pavilio... | [confident, congenial, congratulate, congratul... |
| 2711 | Shahid Rassam, an award-winning artist and for... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [god-given, god-send, godlike, godsend, gold] |
| 2712 | Throughout this joyous day, we gave away speci... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [celebrated, celebration, celebratory, champ, ... |
| 2713 | GM🌗GE-#FAZZA🇦🇪😘1⃣🦅❤️\nWow😍Love the picture of ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2714 | Saudi Commissioner General pay respects for th... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 2715 | #DubaiExpo is simply awesome, the arrangements... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awarded, awards, awe, awed, awesome] |
| 2716 | A promotion which made me awestruck !!!\n@emir... | [(Slovenia pavilion), (Solomon Islands pavilio... | [awesomely, awesomeness, awestruck, awsome, ba... |
| 2717 | https://t.co/Xokv2QSrNZ\nIncredible arrangemen... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 2718 | The ‘Opportunity Gate’ looking beautiful at su... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 2719 | White sandy beaches, a beautiful coral reef an... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lush, luster, lustrous, luxuriant, luxuriate] |
| 2720 | @SamiYusuf 🎶🎼\nSo beautiful and so much\nLove ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2721 | The #SaudiArabia Pavilion presents timeless me... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 2722 | A beautiful design at the Dubai expo.\n#expo20... | [(Slovenia pavilion), (Solomon Islands pavilio... | [balanced, bargain, beauteous, beautiful, beau... |
| 2723 | #Repost @samiyusuf\n...\nO you who blame,\nDo ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2724 | @gvizor @MarlinProtocol Hey there, we are lovi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2725 | @cordeira_joe Hey there, we are loving the pos... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 2726 | Sign up for Canon Professional Services and st... | [(Slovenia pavilion), (Solomon Islands pavilio... | [benefit, benefits, benevolence, benevolent, b... |
| 2727 | Sign up for Canon Professional Services and st... | [(Slovenia pavilion), (Solomon Islands pavilio... | [benefit, benefits, benevolence, benevolent, b... |
| 2728 | Wow another one of my portfolio at the #DubaiE... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2729 | #AbuDhabiCarpets is the best place to look for... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2730 | Participate and share your experience for a ch... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2731 | UAE: How Dubai became world's best tourist des... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2732 | The RCA's @HHCDesign Director @RamaGheerawo wi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2733 | Celebrating #EducationDay I’m reminded of an e... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2734 | The ironic food on the table becomes more inti... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intimacy, intimate, intricate, intrigue, intr... |
| 2735 | Great start to the week, we are shooting world... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2736 | Now is the best time to come to Dubai, why?\n\... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [miracle, miracles, miraculous, miraculously, ... |
| 2737 | Get your Dubai Visa on best rates.\n\n#Dubai #... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2738 | More than 10 million visits to @expo2020dubai ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 2739 | Mercure Hotel - Barsha Heights\nDeluxe Suite\n... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2740 | Mercure Hotel - Barsha Heights\nDeluxe Suite\n... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2741 | Buy #AntiSlip #Vinyl from #VinylFlooring in Du... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2742 | At #ParquetFlooring we have the best and quali... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2743 | My first 3km run at Expo2020. Happy to give my... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2744 | Shukriya Dubai ! One of the best nights of my ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2745 | Together at the @expo2020dubai let's make the ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2746 | Explore the gateway to the world of future at ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [best, best-known, best-performing, best-selli... |
| 2747 | We came together as one to \nensure a better a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [brighten, brighter, brightest, brilliance, br... |
| 2748 | The bliss of Brazil comes to #IndiaPavilion.\n... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [blessing, bliss, blissful, blissfully, blithe] |
| 2749 | LIVE! Rosatom Week at #expo2020 is presenting ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [brave, bravery, bravo, breakthrough, breakthr... |
| 2750 | India’s tourism sector shines bright at @expo2... | [(Slovenia pavilion), (Solomon Islands pavilio... | [breathlessness, breathtaking, breathtakingly,... |
| 2751 | #ICYMI As part of #InternationalDayofEducation... | [(Slovenia pavilion), (Solomon Islands pavilio... | [brighten, brighter, brightest, brilliance, br... |
| 2752 | Capable of sorting 240 tonnes of multiple wast... | [(Slovenia pavilion), (Solomon Islands pavilio... | [commitment, commodious, compact, compactly, c... |
| 2753 | Today is #Luxembourg Day @expo2020dubai 🎆\nWe... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [grand, grandeur, grateful, gratefully, gratif... |
| 2754 | The most important day for #ElSalvador has com... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 2755 | Explore a range of events and activities at th... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2756 | Education is the passport to our future and th... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 2757 | Begin a new age of possibilities and celebrate... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2758 | Meet us at #Expo2020 in Dubai to celebrate Rwa... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2759 | Rwanda will celebrate it’s National Day on 1st... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2760 | To celebrate his country’s national day, HE Mo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2761 | We cannot contain our excitement! 🤩 We look fo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [carefree, cashback, cashbacks, catchy, celebr... |
| 2762 | Today we are excited to celebrate Luxembourg ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2763 | #IndiaPavilion at #Expo2020 #Dubai yesterday ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [patience, patient, patiently, patriot, patrio... |
| 2764 | If you believe you are an expert at SDGs and h... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2765 | #IndiaPavilion at @expo2020dubai celebrated ‘#... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2766 | #IndiaPavilion at #Expo2020 #Dubai yesterday c... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [patience, patient, patiently, patriot, patrio... |
| 2767 | India Pavilion at #Expo2020 Dubai yesterday c... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2768 | In celebration of his country’s national day, ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2769 | Celebration of #ParakramDiwas, #IndiaPavilion ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2770 | Highlights of Republic of Singapore’s National... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2771 | The #UAEPavilion celebrated the National Day o... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2772 | First impressions from the Luxembourg National... | [(Slovenia pavilion), (Solomon Islands pavilio... | [commitment, commodious, compact, compactly, c... |
| 2773 | Expo 2020’s UK National Day to have a Royal vi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [celebrated, celebration, celebratory, champ, ... |
| 2774 | The #IndiaPavilion and #BrasilPavilion both ce... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delightful, delightfully, delightfulness, dep... |
| 2775 | #ARRahman #KhatijaRahman #DubaiExpo2020\nthe l... | [(Slovenia pavilion), (Solomon Islands pavilio... | [charisma, charismatic, charitable, charm, cha... |
| 2776 | We’ll make sure you have a memorable experienc... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [memorable, merciful, mercifully, mercy, merit] |
| 2777 | What India shows at #DubaiExpo and what we sho... | [(Slovenia pavilion), (Solomon Islands pavilio... | [cleanest, cleanliness, cleanly, clear, clear-... |
| 2778 | 🇦🇪 @Emirates' colorful Airbus A380 (A6-EEU) wi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [colorful, comely, comfort, comfortable, comfo... |
| 2779 | Enjoy the freedom of movement with Bharat Thak... | [(Slovenia pavilion), (Solomon Islands pavilio... | [commitment, commodious, compact, compactly, c... |
| 2780 | Travel to and from Dubai via Abu Dhabi with Et... | [(Slovenia pavilion), (Solomon Islands pavilio... | [complemented, complements, compliant, complim... |
| 2781 | Congratulations on successful representation o... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magical, magnanimous, magnanimously, magnific... |
| 2782 | 🔔We are delighted to have been present at this... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 2783 | Congratulations to #Kazakhstan for the great p... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2784 | Congratulations Expo 2020 Dubai Employees of t... | [(Slovenia pavilion), (Solomon Islands pavilio... | [confident, congenial, congratulate, congratul... |
| 2785 | We congratulate @dmutanga for being the first ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magnificently, majestic, majesty, manageable,... |
| 2786 | This was my first time to watch Korea's tradit... | [(Slovenia pavilion), (Solomon Islands pavilio... | [convienient, convient, convincing, convincing... |
| 2787 | Expo 2020 Dubai to see India’s Jammu & Kas... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dawn, dazzle, dazzled, dazzling, dead-cheap] |
| 2788 | "I wish my death had been the decisive one."\n... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dead-on, decency, decent, decisive, decisiven... |
| 2789 | Additionally, in order to bring Indian Heritag... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dedicated, defeat, defeated, defeating, defeats] |
| 2790 | In the sleep of this separation blood-stained ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dedicated, defeat, defeated, defeating, defeats] |
| 2791 | Discover on the esplanade our new photo exhibi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dedicated, defeat, defeated, defeating, defeats] |
| 2792 | Welcome To Dubai:\nThe Future Starts Here @exp... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dedicated, defeat, defeated, defeating, defeats] |
| 2793 | We are delighted to host our session with @Pre... | [(Slovenia pavilion), (Solomon Islands pavilio... | [delicacy, delicate, delicious, delight, delig... |
| 2794 | So delighted to have spent time with our Zambi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [memorable, merciful, mercifully, mercy, merit] |
| 2795 | The Pakistan Pavilion at Expo2020 would be del... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [monumentally, morality, motivated, multi-purp... |
| 2796 | We buy and sell radiator and fan.\nContact us ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [destiny, detachable, devout, dexterous, dexte... |
| 2797 | "Dignity" (coming soon) Art that connects the ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [dextrous, dignified, dignify, dignity, dilige... |
| 2798 | The "dynamic role played by Minister @LindiweS... | [(Palestine pavilion), (Panama pavilion), (Pap... | [durable, dynamic, eager, eagerly, eagerness] |
| 2799 | #IndiaPavilion's one of the most dynamic perfo... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [durable, dynamic, eager, eagerly, eagerness] |
| 2800 | Get your mattresses shampooed by our professio... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2801 | Help full process for company formation in Dub... | [(Palestine pavilion), (Panama pavilion), (Pap... | [ecstatic, ecstatically, edify, educated, effe... |
| 2802 | Today we are featured in the Jamaica Gleaner f... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excellent, excellently, excels, exceptional, ... |
| 2803 | #LittleAngelsOfKorea #DubaiExpo #RepublicOfKor... | [(Palestine pavilion), (Panama pavilion), (Pap... | [elatedly, elation, electrify, elegance, elegant] |
| 2804 | Coming soon at Creek Beach - Rosewater, 3 eleg... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2805 | Empower employees for success with step-by-ste... | [(Palestine pavilion), (Panama pavilion), (Pap... | [empathy, empower, empowerment, enchant, encha... |
| 2806 | BOOK your DUBAI Tour now,\nCLICK here: https:/... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 2807 | #PrinceWilliam will visit the United Arab Emir... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 2808 | Are you at @expo2020dubai ?\nCome and enjoy ou... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 2809 | Innovation Factory will soon be inviting the w... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 2810 | #Travel dilemma: Can't make up my mind for the... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2811 | Elias Martins, Brazil Commissioner-General at ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [grand, grandeur, grateful, gratefully, gratif... |
| 2812 | Here is a glimpse of this morning’s Expo 2020 ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2813 | @expo2020dubai Thx for the task! I was at #ex... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2814 | Are you enjoying our content so far?\nLet us k... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [liking, lionhearted, lively, logical, long-la... |
| 2815 | Black Eyed Pea land in Dubai. I was lucky enou... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luckiest, luckiness, lucky, lucrative, luminous] |
| 2816 | Expo love. Can't get enough of this place \n#e... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2817 | His Highness Sheikh Mohamed bin Zayed Al Nahya... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excelent, excellant, excelled, excellence, ex... |
| 2818 | The growth is mainly due to the Expo 2020 exhi... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excellent, excellently, excels, exceptional, ... |
| 2819 | At #DubaiRugs, #Nain #Rug is our one of the ma... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [outshone, outsmart, outstanding, outstandingl... |
| 2820 | We take you behind the scenes of the kitchen o... | [(Palestine pavilion), (Panama pavilion), (Pap... | [festive, fidelity, fiery, fine, fine-looking] |
| 2821 | Don’t forget to be a part of our National Day ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2822 | Super excited to be at the @expo2020dubai toda... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excite, excited, excitedly, excitedness, exci... |
| 2823 | Limited Edition has a wide range of luxurious ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 2824 | Excited @UOW team heading out tomorrow #Expo2... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excite, excited, excitedly, excitedness, exci... |
| 2825 | .@UOW team Excited to be heading to #Dubai to ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excite, excited, excitedly, excitedness, exci... |
| 2826 | 'Unveiling opportunities of #GB' our exciting ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excites, exciting, excitingly, exellent, exem... |
| 2827 | Immerse yourself in sustainable technology. Fe... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excites, exciting, excitingly, exellent, exem... |
| 2828 | Another exciting week @expo2020dubai comes to ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2829 | Another exciting week @expo2020dubai comes to ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2830 | Embark on an exciting journey and explore Expo... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excites, exciting, excitingly, exellent, exem... |
| 2831 | Embark on an exciting journey and explore Expo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2832 | #ExperienceIndia at the BurJuman Mall in Bur D... | [(Palestine pavilion), (Panama pavilion), (Pap... | [excites, exciting, excitingly, exellent, exem... |
| 2833 | 20 exquisite #ODOP products from across the le... | [(Palestine pavilion), (Panama pavilion), (Pap... | [exonerate, expansive, expeditiously, expertly... |
| 2834 | Add me on whatspp for your massage and other e... | [(Palestine pavilion), (Panama pavilion), (Pap... | [exquisitely, extol, extoll, extraordinarily, ... |
| 2835 | Dubai is hosting the greatest world's fair yet... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2836 | Gujarat has given India a great heritage in em... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2837 | Gujarat has given India a great heritage in em... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2838 | Madhubani painting is one of the many famous I... | [(Palestine pavilion), (Panama pavilion), (Pap... | [faithfulness, fame, famed, famous, famously] |
| 2839 | @drshamamohd The description I heard was that ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2840 | New Zealand to host a fantastic live show at @... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2841 | The models displayed are fantastic at Dubai Ex... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fantastic, fantastically, fascinate, fascinat... |
| 2842 | At this fascinating World Majlis; ‘Extending t... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fantastic, fantastically, fascinate, fascinat... |
| 2843 | At this fascinating World Majlis, “Extending t... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fantastic, fantastically, fascinate, fascinat... |
| 2844 | #Women throughout history around the world hav... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2845 | Women throughout history have been champions o... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fantastic, fantastically, fascinate, fascinat... |
| 2846 | #Expo2020 USB For Fast Charger Charging Cable ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fascination, fashionable, fashionably, fast, ... |
| 2847 | @dubai_south is UAE's fastest-developing #smar... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2848 | Visiting #Dubai soon? Make sure to check out o... | [(Palestine pavilion), (Panama pavilion), (Pap... | [favorite, favorited, favour, fearless, fearle... |
| 2849 | Explore Your Favorite Travel Destination\n👇👇👇👇... | [(Palestine pavilion), (Panama pavilion), (Pap... | [favorite, favorited, favour, fearless, fearle... |
| 2850 | 10k run!! First one of the year and after a lo... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2851 | Storytelling is an art. And @DaniaDroubi is a ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [paramount, pardon, passion, passionate, passi... |
| 2852 | @drshamamohd As usual, you both seem to seeing... | [(Palestine pavilion), (Panama pavilion), (Pap... | [fortunately, fortune, fragrant, free, freed] |
| 2853 | Less than 12 hours until the 3 day event "Mobi... | [(Marshall Islands pavilion), (Mauritania pavi... | [fortunately, fortune, fragrant, free, freed] |
| 2854 | Tune in for today's free International Day of ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2855 | The Expo 2020 Kids’ Camp allows children to le... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2856 | Free WiFi @ Expo2020 Dubai. \nJust accept term... | [(Marshall Islands pavilion), (Mauritania pavi... | [fortunately, fortune, fragrant, free, freed] |
| 2857 | 24-hour #LiveEvent #ActNowVR World Premiere 36... | [(Marshall Islands pavilion), (Mauritania pavi... | [fortunately, fortune, fragrant, free, freed] |
| 2858 | It's free to attend with your Expo 2020 ticket... | [(Marshall Islands pavilion), (Mauritania pavi... | [fortunately, fortune, fragrant, free, freed] |
| 2859 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2860 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2861 | #GoaDiary_Goa_News_External Goa showcases in... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2862 | Post Edited: Goa Showcases Investment-friendly... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2863 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2864 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2865 | - Goa Showcases Investment-friendly Policies t... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2866 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2867 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2868 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2869 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2870 | Goa Showcases Investment-friendly Policies to ... | [(Marshall Islands pavilion), (Mauritania pavi... | [friendliness, friendly, frolic, frugal, fruit... |
| 2871 | JOIN #GEM #GlobalEntrepreneurshipMonitor \n\nA... | [(Marshall Islands pavilion), (Mauritania pavi... | [galore, geekier, geeky, gem, gems] |
| 2872 | I couldn’t travel for #ExpoLive #GlobalGoalsWe... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gentle, gentlest, genuine, gifted, glad] |
| 2873 | Glad to welcome this new exhibition by Swiss c... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gentle, gentlest, genuine, gifted, glad] |
| 2874 | The crowning glory of #Expo2020... Don't miss ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gloriously, glory, glow, glowing, glowingly] |
| 2875 | The world's largest, aluminium and gold-plated... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [god-given, god-send, godlike, godsend, gold] |
| 2876 | @bitone_twit good project!\n@doc0102 @dubaiexp... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2877 | Good morning #DubaiExpo https://t.co/SKT9XR1Lyn | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2878 | Good morning from @RafflesThePalm #Dubai @raff... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2879 | Just watched the @ParrisGoebel voices of youth... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2880 | Dear Pakistanio, we can generate good business... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2881 | Have good event my friends \nGood news for me ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2882 | Korea Team Performance \nGood one @expo2020dub... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [golden, good, goodly, goodness, goodwill] |
| 2883 | LIVE! The grand finale of Rosatom Week at #exp... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 2884 | In 1 hr! The grand finale of Rosatom Week at #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 2885 | Our new temporary exhibition "Grand Paris Expr... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [grand, grandeur, grateful, gratefully, gratif... |
| 2886 | Innovators should not miss this great opportun... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2887 | Don’t miss this great opportunity: \n#Rwanda ’... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2888 | #Expo2020Dubai focuses on #education this week... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2889 | #TeamTataCommunications is now officially at #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2890 | He was talking about beaches in Australia and ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2891 | A great event to be #dubai #expo2020 https://t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2892 | It was a great honour to have H.E @HHichilema ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2893 | Loved #expo2020 in Dubai. #UN SDGs framing bu... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 2894 | The @expo2020dubai @cartier #WomensPavilion co... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [gratitude, great, greatest, greatness, grin] |
| 2895 | #DubaiExpo2020 - The Greatest Show? - BBC Clic... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2896 | @richharvey Hey, this is an interesting tweet.... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2897 | @Duffernutter Hey, this is an interesting twee... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2898 | @uniper_energy @Microsoft Hey, this is an inte... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2899 | Happy Weekend everyone! #Dubai #weekendvibes #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2900 | @Meghna_venture @drshamamohd Basically She Is ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2901 | Happy customer review of our Dubai Expo tour i... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2902 | @ShannaCMA Hey, this is an interesting tweet. ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2903 | @bluecollections Hey, this is an interesting t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2904 | @GraanaCom Hey, this is an interesting tweet. ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2905 | @sojihausa @PaboskiW @AvantLacasa @harunbroker... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2906 | Burj khalifa Fireworks | Wish you Happy New Ye... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2907 | Today we are happy to introduce you to Thomas ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 2908 | 'Make A Wish' Makes Two Siblings Happy in the ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2909 | Happy to share that we are at the Arab Health ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2910 | The real happiness is when you do what you wan... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2911 | Play your part in making people happier at #Ex... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2912 | The #KuwaitPavilion at #Expo2020Dubai is happy... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [happier, happily, happiness, happy, hard-work... |
| 2913 | @CryptoPatron2 Hey, this is an interesting twe... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2914 | @MerckHealthcare Hey, this is an interesting t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2915 | Cambodia pavilion. Peace and harmony. \n#expo2... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 2916 | We eat well and rest well,healthy body is a he... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [jolly, jovial, joy, joyful, joyfully] |
| 2917 | Which platforms are helping to democratise inn... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [helping, hero, heroic, heroically, heroine] |
| 2918 | At “Helping Women Thrive,” we gathered women i... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [helping, hero, heroic, heroically, heroine] |
| 2919 | Which platforms are helping to democratise inn... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [helping, hero, heroic, heroically, heroine] |
| 2920 | Part of the world’s largest Holy Quran was rec... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2921 | World's Largest Holy Quran to go on display at... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [holy, homage, honest, honesty, honor] |
| 2922 | #tilalalfurjan comes hot on the heels of the s... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [hospitable, hot, hotcake, hotcakes, hottest] |
| 2923 | 🤔 #DYK that in the #UAE business leaders have ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [immaculately, immense, impartial, impartialit... |
| 2924 | As the world faces a climate crisis, KKL-JNF’s... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 2925 | 1/2 Morocco has become an important economic h... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impassioned, impeccable, impeccably, importan... |
| 2926 | Your account is impressive! To find more infor... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2927 | @uniper_energy Hey, your tweet is impressive! ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2928 | @yyachts Your account is impressive! To find m... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2929 | @ReidRankinHomes Your account is impressive! T... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2930 | @HSBC Hey, your tweet is impressive! To find m... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2931 | @FinNewsNow Your account is impressive! To fin... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2932 | @SAPropNetwork @DJBoonzaier001 Your account is... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2933 | @AmazingCoin7 Hey, your tweet is impressive! T... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2934 | Going to explore this impressive website at lu... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2935 | @TL_Briggs Your account is impressive! To find... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2936 | @RoyaARealEstate Your account is impressive! T... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2937 | @FernandezRealto Hey, your tweet is impressive... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2938 | @RoseLinda Your account is impressive! To find... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2939 | @jerrygoodejr Your account is impressive! To f... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2940 | @maryam_shabazz Hey, your tweet is impressive!... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2941 | @ID_razansh Your account is impressive! To fin... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2942 | @RemediosJude Your account is impressive! To f... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2943 | @Moderno_Decor Hey, your tweet is impressive! ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2944 | @goilaan @mophrd @GovtofPakistan @fawadchaudhr... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2945 | @cantatagame Hey, your tweet is impressive! To... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2946 | @NARINDIAtweets Your account is impressive! To... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2947 | @SBIDHyd Your account is impressive! To find m... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2948 | @JMREmarketing Hey, your tweet is impressive! ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2949 | @RichQuack Your account is impressive! To find... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2950 | @TurboXBT Hey, your tweet is impressive! To fi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2951 | @contract2close_ Your account is impressive! T... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2952 | @elliemcachren Your account is impressive! To ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [impressed, impresses, impressive, impressivel... |
| 2953 | Today, @Princymthombeni was one of the speaker... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 2954 | ⚛️Watch @SamaBilbao's speech at @RosatomGlobal... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 2955 | Empowering & emancipating the marginalized... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improve, improved, improvement, improvements,... |
| 2956 | #Armenia’s #NationalDay will be held at #Dubai... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 2957 | 😲 The Incredible @Cristiano\nat the @expo2020d... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [improving, incredible, incredibly, indebted, ... |
| 2958 | Apply today for the opportunity to showcase yo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [innocuous, innovation, innovative, inpressed,... |
| 2959 | Mr. Shubham Gautam, Director of Gfarms Private... | [(Marshall Islands pavilion), (Mauritania pavi... | [innocuous, innovation, innovative, inpressed,... |
| 2960 | Mr. Gaurav Shah, Co-founder and CIO of Communi... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2961 | The emerging innovation industry of Angola's P... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2962 | 🇨🇭 Switzerland values research! \n\nCheck out ... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2963 | Accelerate #innovation in #HumanExperienceMana... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2964 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2965 | Honoured to be interviewed live by @shahindadi... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2966 | A little over 2 months more to go!\nDon’t miss... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 2967 | Julie Russell - Business Development Manager t... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2968 | Respiratory Innovation Wales are thrilled to b... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2969 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2970 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2971 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2972 | Accelerate #innovation in #HumanExperienceMana... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2973 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2974 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2975 | Each country makes sure they transport you to ... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2976 | A masterpiece design. That's is all about, inn... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [masterfully, masterpiece, masterpieces, maste... |
| 2977 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2978 | @MultiChoiceGRP‘s Accelerator is an intensive ... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2979 | Don't miss the largest gathering for Jordanian... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2980 | Veehive is showcasing at the Innovation bus by... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2981 | @MultiChoiceGRP Accelerator is an intensive in... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2982 | Join #SAPServices at #expo2020dubai in the SAP... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2983 | As part of the #Expo2020 #GlobalGoalsWeek, we ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 2984 | Join us in conversation with industry leaders ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2985 | The Finland pavilion @expo2020dubai showcases ... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2986 | The Finland pavilion @expo2020dubai showcases ... | [(Côte d'Ivoire pavilion), (Croatia pavilion),... | [innocuous, innovation, innovative, inpressed,... |
| 2987 | Truly inspiring time at the @expo2020dubai #Du... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [insightfully, inspiration, inspirational, ins... |
| 2988 | Expo 2020 Dubai convened inspiring change make... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [insightfully, inspiration, inspirational, ins... |
| 2989 | #Art #Culture #Music on #EducationDay at #Duba... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [matchless, mature, maturely, maturity, meanin... |
| 2990 | Inspiring people to take meaningful action, br... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [matchless, mature, maturely, maturity, meanin... |
| 2991 | Expo 2020 Dubai has been global stage for SDGs... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [matchless, mature, maturely, maturity, meanin... |
| 2992 | Crypto Falconry represents: \n✅UAE Culture \n✅... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [insightfully, inspiration, inspirational, ins... |
| 2993 | How do we use storytelling to humanise the SDG... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [matchless, mature, maturely, maturity, meanin... |
| 2994 | Islamic values can be an integral source for s... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [instantly, instructive, instrumental, integra... |
| 2995 | @whsurveyors Your tweet seems so interesting. ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2996 | @GPN888 Your tweet seems so interesting. We ad... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2997 | @kimkomando Your tweet seems so interesting. W... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2998 | @windermere Your tweet seems so interesting. W... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 2999 | @sothebysrealty Your tweet seems so interestin... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 3000 | @RClaremont Your tweet seems so interesting. W... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 3001 | @gavingibbons Your tweet seems so interesting.... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 3002 | @IoTeX_Community @SumoTex @CoinMarketCap Your ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 3003 | The workshop specifically addressed challenges... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 3004 | @GiuPagnotta Hey, we have common interests. Yo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 3005 | @TelegramTycoon Your tweet seems so interestin... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 3006 | @kaziislamLREA Hey, we have common https://t.c... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [intelligence, intelligent, intelligible, inte... |
| 3007 | It can take upto 6 months to complete a Banara... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [meticulous, meticulously, mightily, mighty, m... |
| 3008 | AUDI A5 CONVERTIBLE-Rediscover the joy of driv... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3009 | Kindly contact with the details below:\nmobile... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [keenly, keenness, kid-friendly, kindliness, k... |
| 3010 | #InteriorsDubai is the most leading supplier o... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3011 | Women are leading the charge towards tomorrow ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 3012 | Women are leading the charge towards tomorrow.... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 3013 | #AbuDhabiCarpets is one of the leading manufac... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lawful, lawfully, lead, leading, leads] |
| 3014 | Dr. Bu Abdullah meets legendary bollywood actr... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [lean, led, legendary, leverage, levity] |
| 3015 | Ansar allah warns #DubaiExpo in crosshairs if ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lean, led, legendary, leverage, levity] |
| 3016 | Legendary & epic & rare 💎\nA concert b... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lean, led, legendary, leverage, levity] |
| 3017 | @Gemx10000 There is realy no one like #WOLVERI... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3018 | @richharvey Hello, we like to read your tweets... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3019 | @caribbeanmc Hello, we like to read your tweet... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3020 | @abslmf Hello, we like to read your tweets. If... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3021 | @GaylordHansen Hello, we like to read your twe... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3022 | @croatialuxrent Hello, we like to read your tw... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3023 | @conceptstr Hello, we like to read your tweets... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3024 | @theokriPro_show Hello, we like to read your t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3025 | @NewVisionAgent Hello, we like to read your tw... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3026 | My friend, rise up and see\n\nThere’s a light ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3027 | An event that considers what types of schools ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3028 | If you met your counterpart from another unive... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3029 | Win a @PlayStation store voucher.\nTo get chan... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3030 | @Ina_aIi00 You wouldn't be because alcohol tas... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3031 | 📸I told you that I have been busy... finally a... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3032 | When your spit goes down the wrong hole and yo... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3033 | @DrifterShoots You did all that for 12k likes | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3034 | @marchiarten Actually I woudn't call it law bu... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3035 | #charliebahama #ontheroadagain #dubai #desert ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lighter, likable, like, liked, likes] |
| 3036 | @Gigisellsnashvl Hello, we like to read your t... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3037 | Find a peaceful haven full of surprises at the... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 3038 | Am in love with the lady that interviewed CR7 ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3039 | We love you too bro\n#Expo2020 #Expo2020Dubai ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3040 | Our first release this year is the official an... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3041 | I absolutely LOVE this!\n\nWe are catching vib... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3042 | After utter failure of OLA/Uber drivers & ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3043 | Bro I love you both @HamdanMohammed @Cristiano... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3044 | @drshamamohd After utter failure of OLA/Uber d... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3045 | After utter failure of OLA/Uber drivers & ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3046 | @drshamamohd I don't know what they have got i... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3047 | Reasons to love #Expo2020 :\n\n1. The internat... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3048 | I love you 🥺😘\n#البرنسيسة #ديانا_حداد #princes... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3049 | Get in touch with us now! \n📞Call 800-INDUS (4... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3050 | LOVE desires that this secret should be reveal... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3051 | Loved visiting #Expo2020 - a wonderful concoct... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3052 | “We are the people of love.”\n \nMawwal is a v... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3053 | My love 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovable, lovably, love, loved, loveliness] |
| 3054 | My lovely princess 👑😍\n#البرنسيسة #ديانا_حداد ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [lovely, lover, loves, loving, low-cost] |
| 3055 | Crypto Falconry #99 Is your lucky number 99??\... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luckiest, luckiness, lucky, lucrative, luminous] |
| 3056 | The seat of luxury- Burj Al Arab. #dubaiexpo20... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3057 | A home with purely panoramic ocean views\n\nFu... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [pamperedly, pamperedness, pampers, panoramic,... |
| 3058 | Discover ideas and innovations for a more sust... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3059 | Discover Haus 51 bespoke services, call us on ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [luxurious, luxuriously, luxury, lyrical, magic] |
| 3060 | 🎯🎯Majestic Falcon of Dubai 🎯🎯\nPrice: 0.009 et... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magnificently, majestic, majesty, manageable,... |
| 3061 | Buyer of "Majestic Falcon" received "Crypto Fa... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magnificently, majestic, majesty, manageable,... |
| 3062 | First "Majestic Falcon" sold\n\nAs a gift, I w... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magnificently, majestic, majesty, manageable,... |
| 3063 | "Majestic Falcon of Dubai" \nPrice: 0.009 eth ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [magnificently, majestic, majesty, manageable,... |
| 3064 | "Masterpiece #2 by Dennis" collectible! https:... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [masterfully, masterpiece, masterpieces, maste... |
| 3065 | Our KG2 students are collecting recyclable pac... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [masterfully, masterpiece, masterpieces, maste... |
| 3066 | Join us at the front Courtyard of the Pakistan... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [memorable, merciful, mercifully, mercy, merit] |
| 3067 | Join us at the front Courtyard of the Pakistan... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [memorable, merciful, mercifully, mercy, merit] |
| 3068 | Burj Khalifa in all its mighty 💯 #tonight #Dub... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [meticulous, meticulously, mightily, mighty, m... |
| 3069 | Join us at the Pakistan Pavilion to explore th... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [monumentally, morality, motivated, multi-purp... |
| 3070 | Join us at the Pakistan Pavilion to explore th... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [monumentally, morality, motivated, multi-purp... |
| 3071 | Join us at the Pakistan Pavilion to explore th... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [monumentally, morality, motivated, multi-purp... |
| 3072 | Date: 31st January 2022\n\nTime: 3:00pm - 4:00... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [monumentally, morality, motivated, multi-purp... |
| 3073 | @fairytaegis subhanallah, i was looking at the... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [neat, neatest, neatly, nice, nicely] |
| 3074 | Charlie Moore scores seven quick points for Mi... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [lawful, lawfully, lead, leading, leads] |
| 3075 | UPSET WATCH: NCAA Basketball (I) - #168 ranked... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [lawful, lawfully, lead, leading, leads] |
| 3076 | @drshamamohd I visited the Indian pavellion af... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [resourceful, resourcefulness, respect, respec... |
| 3077 | okay 6 drinks in and im finally starting to fe... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [reclaim, recomend, recommend, recommendation,... |
| 3078 | @peace4_kashmir @Pharmacrobat @UN @guardian @S... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peace, peaceable, peaceful, peacefully, peace... |
| 3079 | Do you have the vigour to debate on issues our... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 3080 | Big experiences for the little ones 🤩\n\nFrom ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 3081 | @ItalyExpo2020 Thanks for one if the wonderful... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [peppy, peps, perfect, perfection, perfectly] |
| 3082 | Me trying #indian popular song from #pushpa\n... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [polished, polite, politeness, popular, portable] |
| 3083 | Don’t forget to visit Birko in the Food Safety... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [proud, proven, proves, providence, proving] |
| 3084 | Ready to go #WheelsUpHeelsUp to ATL. \n\nNo. 2... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [razor-sharp, reachable, readable, readily, re... |
| 3085 | At #Expo2015, the #Kuwait #Pavilion received H... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | [awarded, awards, awe, awed, awesome] |
| 3086 | The Kenya Pavilion honours Zahro Sadova who is... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | [enjoyably, enjoyed, enjoying, enjoyment, enjoys] |
| 3087 | Close to nature at Brazil pavilion. \n#expo202... | [(Palestine pavilion), (Panama pavilion), (Pap... | [enhanced, enhancement, enhances, enjoy, enjoy... |
| 3088 | Ole!!!😃💃🏼💥\nMost fun happens when there's no t... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 3089 | Had fun at the #Expo2020Run this morning! Firs... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 3090 | @Philipmarks87 Watched a bunch of old MAGA’s m... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 3091 | @M4dlyHatting THERES BACKWARDS ROCKIN ROLLER C... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 3092 | Hope to see the Cox Pavilion packed to support... | [(Marshall Islands pavilion), (Mauritania pavi... | [ftw, fulfillment, fun, futurestic, futuristic] |
| 3093 | SHOWDOWN INSIDE COX PAVILION: The @UNLVLadyReb... | [(Marshall Islands pavilion), (Mauritania pavi... | [gratitude, great, greatest, greatness, grin] |
| 3094 | The #Mexico Pavilion at #Expo2015 won Honorabl... | [(Marshall Islands pavilion), (Mauritania pavi... | [impressed, impresses, impressive, impressivel... |
| 3095 | I appreciate everyone's enthusiasm, and love f... | [(Marshall Islands pavilion), (Mauritania pavi... | [lovable, lovably, love, loved, loveliness] |
| 3096 | DONALD HAS RETURNED TO MEXICO AND \nJOY & ... | [(Marshall Islands pavilion), (Mauritania pavi... | [lovable, lovably, love, loved, loveliness] |
| 3097 | @USAExpo2020 \n“Life, Liberty and the Pursuit ... | [(Marshall Islands pavilion), (Mauritania pavi... | [magical, magnanimous, magnanimously, magnific... |
| 3098 | @SuperWeenieHtJr No they should add a new and ... | [(Marshall Islands pavilion), (Mauritania pavi... | [lighter, likable, like, liked, likes] |
| 3099 | No idea why, but I've always loved the feeling... | [(Marshall Islands pavilion), (Mauritania pavi... | [lovable, lovably, love, loved, loveliness] |
| 3100 | @SuperWeenieHtJr I would reckon, they’ll just ... | [(Marshall Islands pavilion), (Mauritania pavi... | [magical, magnanimous, magnanimously, magnific... |
| 3101 | 'Donald Duck Meet and Greet Returns to Mexico ... | [(Marshall Islands pavilion), (Mauritania pavi... | [razor-sharp, reachable, readable, readily, re... |
| 3102 | We appreciate the visit of the US Commissioner... | [(Palestine pavilion), (Panama pavilion), (Pap... | [appeal, appealing, applaud, appreciable, appr... |
| 3103 | #Pakistan's third consecutive victory. #PakU19... | [(Palestine pavilion), (Panama pavilion), (Pap... | [dedicated, defeat, defeated, defeating, defeats] |
| 3104 | @NemavholaIrene @MmusiMaimane Were you actuall... | [(Palestine pavilion), (Panama pavilion), (Pap... | [balanced, bargain, beauteous, beautiful, beau... |
| 3105 | The concept behind our pavilion, is that it co... | [(Palestine pavilion), (Panama pavilion), (Pap... | [best, best-known, best-performing, best-selli... |
| 3106 | Thanks @MaherNasserUN and @DrDenaAssaf for vis... | [(Palestine pavilion), (Panama pavilion), (Pap... | [commitment, commodious, compact, compactly, c... |
| 3107 | Don’t miss out on the NEW menu items at the Si... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [lighter, likable, like, liked, likes] |
| 3108 | Do these buildings remind you of the Singapore... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [lush, luster, lustrous, luxuriant, luxuriate] |
| 3109 | Slovenia's 🇸🇮 #Expo2020Dubai pavilion is a "fl... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3110 | All you need to do is go see South Africa's Pa... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3111 | Slovenia's forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3112 | Wonders of a non-literal transparency.\n\nAn a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3113 | Slovenia's forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3114 | CNN: Slovenia's forested @expo2020dubai is sha... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3115 | Slovenia’s forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3116 | Slovenia’s forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3117 | Slovenia’s forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3118 | Slovenia's forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3119 | @null Slovenia's forested Expo pavilion is sha... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3120 | @null Slovenia's forested Expo pavilion is sha... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3121 | Slovenia's forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3122 | Slovenia's forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3123 | Slovenia's forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3124 | Slovenia's forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3125 | Slovenia's forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3126 | Slovenia's forested Expo pavilion is shaded by... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3127 | @AnimalsHolbox: Slovenia's forested Expo pavil... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3128 | @Kevidently @parkscopejoe I wish they could do... | [(Slovenia pavilion), (Solomon Islands pavilio... | [audibly, auspicious, authentic, authoritative... |
| 3129 | For those who don't know, there are only a few... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3130 | At #DubaiRugs you can find a large variety of ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3131 | Lady at @Aquafina DROP at @expo2020dubai tells... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3132 | The second edition of Expo Run is a huge succe... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3133 | "Then He causes his death and provides a grave... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3134 | Our Social Enterprise @LinkYourPurpose is feat... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3135 | #Italy's Pavillion at #Expo2020 is one of the ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3136 | Did you participate in the 3rd phase of #EnRou... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3137 | EATS time foodies! Nomad Restaurant at Jumeira... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3138 | Our team will be at Expo 2020 this week delive... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3139 | Join the making of a new world. \n\nBook our E... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3140 | Join Us Today At #Expo2020 for a seminar on: "... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3141 | The name 'blue pottery' comes from the eye-cat... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3142 | #Estonia has always been a firm believer in #P... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3143 | Join Us Today At #Expo2020 for a seminar on: "... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3144 | In 1 hr! MSZ Machinery Manufacturing Plant vir... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3145 | Want to take stunning shots at @expo2020dubai?... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3146 | Want to take stunning shots @expo2020dubai? He... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3147 | NYE was bought to life at The Al Wasl Dome @ E... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3148 | Starting a new project today ✨ #dubai #uae #ar... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3149 | Before the curtains fall at Dubai Expo 2020, m... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3150 | The Sustainable City, the first sustainable co... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3151 | “once you occupy a leadership space, you have ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3152 | Expo 2020 Dubai transforms into a marathon tra... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3153 | 👏🥳Kudos Penang! The Penang State Government ha... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3154 | "Slovenia is one of the most forested countrie... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3155 | #CC2020Dubai #GoInternational\nToday, the @ccl... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3156 | Virat Kohli's Daughter Vamika First Look:\n\n ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3157 | Every night at #Expo2020 #Dubai, the Al Wasl P... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3158 | Roberto Carlos, Alvaro Arbeloa and Iker Casill... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3159 | If you are 13-18 yrs old with a drive for sust... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3160 | 1/2 Our official partner, @MasenOfficiel, part... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3161 | Hi All,\n\nWe know sometimes it is hard to kee... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3162 | Riyadh| A two-day #Saudi-#Sweden event at #Exp... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3163 | Be it our Sustain-a-Livity tree planting initi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3164 | Come to Dubai, the business center of the glob... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3165 | Expo 2020 adventures…Explore the awe-inspiring... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3166 | Expo 2020 adventures…Explore the awe-inspiring... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3167 | Sameer Muhammed connects with a punch to the f... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3168 | SL has a big mess in their priorities. We are ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3169 | Arrange a #CustomMade #Reception by #Artificia... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3170 | Investment opportunities in Saudi Arabia and S... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3171 | Invited to visit the Expo 2020 Dubai Slovenia ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3172 | Musical extravagant by @arrahman x @shekharkap... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3173 | It's the 4th weekend of 2022. Everyone is cele... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3174 | Hi All,\n\nWe know sometimes it is hard to kee... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3175 | Join us this Wednesday from #Expo2020 in Dubai... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3176 | Do you want to start your event management bus... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3177 | Come be a part of our flag hoisting ceremony a... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3178 | The wait is over! \nWe will be performing live... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3179 | MATI Consult, a service-oriented firm with hea... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3180 | The #CanadaPavilion at @expo2020dubai introduc... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3181 | #GlobalGoals Week is coming to an end after re... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3182 | Have you visited the UAEU Pavilion at Expo 202... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3183 | La Violeta at Villanova is a newly launched re... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3184 | La Violeta at Villanova is a residential devel... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3185 | Expo 2020 Dubai’s Pakistan pavilion hosts a fi... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3186 | The falcon has a vision for 2022. 👀\nBe a part... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3187 | There were 127.82 billion Dh worth of mortgage... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3188 | Abela's decision to cancel a long-awaited trip... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3189 | Ending #GlobalGoals week at #Expo2020 #Dubai o... | [(Slovenia pavilion), (Solomon Islands pavilio... | [a+, abound, abounds, abundance, abundant] |
| 3190 | Used as a prestigious and representative place... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [prefers, premier, prestige, prestigious, pret... |
| 3191 | 🤣😂🤣 It's beyond pathetic.. "excellence" on sho... | [(Zambia pavilion), (Zimbabwe pavilion)] | [partisans, passe, passive, passiveness, pathe... |
| 3192 | #armenianbreakingnews\n#Armenian stand at #Dub... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wonderous, wonderously, wonders, wondrous, woo] |
| 3193 | The Jamaica Pavilion receives over 84,000 in t... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3194 | Happy to see artists from GB in #DubaiExpo. Ex... | [(Zambia pavilion), (Zimbabwe pavilion)] | [propaganda, propagandize, proprietary, prosec... |
| 3195 | KP business community protest lack of represen... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [knock, knotted, kook, kooky, lack] |
| 3196 | Apply your Visa Change Inside Country today an... | [(Zambia pavilion), (Zimbabwe pavilion)] | [worrisome, worry, worrying, worryingly, worse] |
| 3197 | Hey #ShiryoArmy so@many account on Twitter cl... | [(Zambia pavilion), (Zimbabwe pavilion)] | [witty, won, wonder, wonderful, wonderfully] |
| 3198 | It is shame that their is no single woman part... | [(Zambia pavilion), (Zimbabwe pavilion)] | [shaky, shallow, sham, shambles, shame] |
| 3199 | @drshamamohd SHAME ON YOU for spreading lies. ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [lie, lied, lier, lies, life-threatening] |
| 3200 | SA's laughable spaza shop "display" at the glo... | [(Zambia pavilion), (Zimbabwe pavilion)] | [shameful, shamefully, shamefulness, shameless... |
| 3201 | @win_about_2_sin LOL I had some crackpot DM me... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thrash, threat, threaten, threatening, threats] |
| 3202 | @dubaiexpo_korea Hello.plz excue me.plz i am ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sorrow, sorrowful, sorrowfully, sorry, sour] |
| 3203 | Even the mountains ain't that steep.\n\n#shinj... | [(Zambia pavilion), (Zimbabwe pavilion)] | [steal, stealing, steals, steep, steeply] |
| 3204 | In February, head for the City of Lights and t... | [(Zambia pavilion), (Zimbabwe pavilion)] | [stew, sticky, stiff, stiffness, stifle] |
| 3205 | @drshamamohd Of the four floors, there's just ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [bewilderingly, bewilderment, bewitch, bias, b... |
| 3206 | Yemen AnsarAllah/Houthi Movement military spok... | [(Zambia pavilion), (Zimbabwe pavilion)] | [stringently, struck, struggle, struggled, str... |
| 3207 | Trying to listen in to #LHRC but keep losing s... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [loses, losing, loss, losses, lost] |
| 3208 | @HMhd202030 Now by @UAEExpo_2020 all Jewish by... | [(Zambia pavilion), (Zimbabwe pavilion)] | [dazed, dead, deadbeat, deadlock, deadly] |
| 3209 | Herzog will also visit the #DubaiExpo2020 tomo... | [(Zambia pavilion), (Zimbabwe pavilion)] | [attack, attacks, audacious, audaciously, auda... |
| 3210 | #DubaiExpo delays concert after Yemen Houthi t... | [(Zambia pavilion), (Zimbabwe pavilion)] | [delay, delayed, delaying, delays, delinquency] |
| 3211 | BREAKING NEWS 🔴 \n\nThe security situation in ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 3212 | Houthis spokesperson threatens #DubaiExpo2020.... | [(Zambia pavilion), (Zimbabwe pavilion)] | [attack, attacks, audacious, audaciously, auda... |
| 3213 | The technical rider which was not communicated... | [(Zambia pavilion), (Zimbabwe pavilion)] | [ultra-hardline, un-viewable, unable, unaccept... |
| 3214 | First overseas hit out since January 2020 - Du... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unexpected, unexpectedly, unexplained, unfair... |
| 3215 | #ALERT #URGENT #URGENT\nYemeni Armed Forces Sp... | [(Zambia pavilion), (Zimbabwe pavilion)] | [urgent, useless, usurp, usurper, utterly] |
| 3216 | @drshamamohd You are wrong. #getwellsoon #Duba... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wripping, writhe, wrong, wrongful, wrongly] |
| 3217 | At #Expo2020 we show how #EmpoweringMovement f... | [(Zambia pavilion), (Zimbabwe pavilion)] | [overzelous, pain, painful, painfull, painfully] |
| 3218 | @KetanJ0 Santos supports Aust pavilion @COP26;... | [(Antigua and Barbuda pavilion), (Argentina pa... | [corrosion, corrosions, corrosive, corrupt, co... |
| 3219 | @cchanniee97 Now I kinda feel sad if ever he s... | [(Antigua and Barbuda pavilion), (Argentina pa... | [sack, sacrificed, sad, sadden, sadly] |
| 3220 | (116) Albert Trott. Played for both England &a... | [(Antigua and Barbuda pavilion), (Argentina pa... | [tragic, tragically, traitor, traitorous, trai... |
| 3221 | @MarisePayne @DrSJaishankar @MEAIndia @AusHCIn... | [(Antigua and Barbuda pavilion), (Argentina pa... | [weep, weird, weirdly, wheedle, whimper] |
| 3222 | 'Health & Weakness Week' at #Expo2020 #Dub... | [(Zambia pavilion), (Zimbabwe pavilion)] | [weaken, weakening, weaker, weakness, weaknesses] |
| 3223 | CM Pinarayi Vijayan @vijayanpinarayi received ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [vibration, vice, vicious, viciously, viciousn... |
| 3224 | Those who are passive sports fans, come and ch... | [(Philippines pavilion), (Poland pavilion), (P... | [partisans, passe, passive, passiveness, pathe... |
| 3225 | We welcomed Ms Daniella Leite, the Director of... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [vibration, vice, vicious, viciously, viciousn... |
| 3226 | Let's welcome Paul Andrez, Equity Advisor Conn... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [risk, risks, risky, rival, rivalry] |
| 3227 | Join #SAPServices on-site at SAP House Dubai i... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sags, salacious, sanctimonious, sap, sarcasm] |
| 3228 | Having some jasmine green tea from Foojoy tea.... | [(China pavilion), (Colombia pavilion), (Comor... | [smell, smelled, smelling, smells, smelly] |
| 3229 | Our sweet, sweet reporter Amber volunteered to... | [(China pavilion), (Colombia pavilion), (Comor... | [smell, smelled, smelling, smells, smelly] |
| 3230 | This is big and disney can’t ignore it anymore... | [(China pavilion), (Colombia pavilion), (Comor... | [sorrow, sorrowful, sorrowfully, sorry, sour] |
| 3231 | @2020_pavilion Hello.plz excue me.plz i am Ch... | [(China pavilion), (Colombia pavilion), (Comor... | [sorrow, sorrowful, sorrowfully, sorry, sour] |
| 3232 | Fighting Stigma : Lunar New Year brings hope ... | [(China pavilion), (Colombia pavilion), (Comor... | [stifling, stiflingly, stigma, stigmatize, sting] |
| 3233 | Threat to US from China 'brutal, more damaging... | [(China pavilion), (Colombia pavilion), (Comor... | [thrash, threat, threaten, threatening, threats] |
| 3234 | @DisneyAnimation Build a Colombia pavilion in ... | [(China pavilion), (Colombia pavilion), (Comor... | [unnecessary, unneeded, unnerve, unnerved, unn... |
| 3235 | HE @epsycampbell, Vice President of Costa Rica... | [(China pavilion), (Colombia pavilion), (Comor... | [vibration, vice, vicious, viciously, viciousn... |
| 3236 | 📢@EquidemOrg is live!\n\nOur latest report hig... | [(Zambia pavilion), (Zimbabwe pavilion)] | [raked, rampage, rampant, ramshackle, rancor] |
| 3237 | Dirty, hi-carbon fossilfuel plastic/biomass 'e... | [(Zambia pavilion), (Zimbabwe pavilion)] | [washed-out, waste, wasted, wasteful, wasteful... |
| 3238 | @TeamSA_Expo2020 ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unbearable, unbearablely, unbelievable, unbel... |
| 3239 | UK Pavilion at Expo 2020 Dubai - https://t.co/... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3240 | There’s only two months left for #Expo2020 and... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sack, sacrificed, sad, sadden, sadly] |
| 3241 | ** Let’s celebrate 1948 Nakba!! .. \nKilling ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [touted, touts, toxic, traduce, tragedy] |
| 3242 | Unfortunately, migrant workers employed at #Ex... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unfit, unforeseen, unforgiving, unfortunate, ... |
| 3243 | Ministry of Defense of the United Arab Emirate... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thrash, threat, threaten, threatening, threats] |
| 3244 | My heart vibrating while listening your melodi... | [(Zambia pavilion), (Zimbabwe pavilion)] | [vexingly, vibrate, vibrated, vibrates, vibrat... |
| 3245 | Saying boyfriend weak as hell. Let’s elope at ... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [hegemonism, hegemonistic, hegemony, heinous, ... |
| 3246 | Here's an insight into the workshops we held a... | [(Zambia pavilion), (Zimbabwe pavilion)] | [payback, peculiar, peculiarly, pedantic, peeled] |
| 3247 | Is the #DubaiExpo2020 a showcase of the techno... | [(Zambia pavilion), (Zimbabwe pavilion)] | [snarky, snarl, sneak, sneakily, sneaky] |
| 3248 | The project "I'm sorry about the garden" will ... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [sorrow, sorrowful, sorrowfully, sorry, sour] |
| 3249 | Unfortunately, Corona strikes again. Stay up-t... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [unfit, unforeseen, unforgiving, unfortunate, ... |
| 3250 | His Highness Sheikh Mohammed bin Rashid Al Mak... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [vibration, vice, vicious, viciously, viciousn... |
| 3251 | His Highness Sheikh Mohammed bin Rashid Al Mak... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [vibration, vice, vicious, viciously, viciousn... |
| 3252 | Mohammed bin Rashid visits Germany Pavilion at... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [vibration, vice, vicious, viciously, viciousn... |
| 3253 | “Your majesty, he’s a young trainee from the R... | [(Guyana pavilion), (Haiti pavilion), (Holy Se... | [weaken, weakening, weaker, weakness, weaknesses] |
| 3254 | What's wrong with people when it comes to food... | [(Zambia pavilion), (Zimbabwe pavilion)] | [wripping, writhe, wrong, wrongful, wrongly] |
| 3255 | @drshamamohd I agree and I live in Dubai, It i... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3256 | I endorse the observation. Indian pavilion is ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3257 | @drshamamohd What did ur husband ji expect ?\n... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3258 | @drshamamohd I absolutely agree. It's Modi pav... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3259 | @drshamamohd https://t.co/nN0YP1zo96\n\nShame ... | [(India pavilion), (Indonesia pavilion), (Iran... | [disgustful, disgustfully, disgusting, disgust... |
| 3260 | @drshamamohd What is wrong in showing our PM’s... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3261 | @mysterious_tri @drshamamohd Very Impressive I... | [(India pavilion), (Indonesia pavilion), (Iran... | [musty, mysterious, mysteriously, mystery, mys... |
| 3262 | Shama, I saw multiple images of the India pavi... | [(India pavilion), (Indonesia pavilion), (Iran... | [cheating, cheats, checkered, cheerless, cheesy] |
| 3263 | @yogye @RSingh6969a One more to Sunil Manohar ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3264 | @NaorGilon Sir @IsraelExpoDubai proudly congra... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [confuse, confused, confuses, confusing, confu... |
| 3265 | @drshamamohd Its the worst pavilion... modi is... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3266 | @CDawgVA @AbroadInJapan in case you need to fe... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [outraged, outrageous, outrageously, outrageou... |
| 3267 | @Israel The Palestine pavilion at #ExpoDubai20... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3268 | Poor from @ThunderBBL. Jordan Silk comes out t... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [loot, lorn, lose, loser, losers] |
| 3269 | @WDWNT Dude was smoking in the Japan pavilion ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [sack, sacrificed, sad, sadden, sadly] |
| 3270 | @SenatorIvy @DetroitQSpider @zoomerbread @Bulu... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [frets, friction, frictions, fried, friggin] |
| 3271 | Israeli presidential visit went ahead in spite... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3272 | this is so stupid why is there an israel pavil... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3273 | It's Israel 🇮🇱 Day at Expo Dubai 2020!\n\nWhil... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3274 | @NickJBrumfield It's too early to draw conclus... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3275 | Organised ‘under gunfire’, Kazakhstan announce... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | NaN |
| 3276 | This year’s commissioner for Kazakhstan's pavi... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | NaN |
| 3277 | |https://t.co/yX6oZ2Qno6| This year’s commissi... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | NaN |
| 3278 | COUNTY FOCUS - EXPORT AGENDA KE\nHon. Joshua K... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | [ridicules, ridiculous, ridiculously, rife, rift] |
| 3279 | https://t.co/akoQqVEF90\nDalal Abu Amna Palest... | [(Zambia pavilion), (Zimbabwe pavilion)] | [refused, refuses, refusing, refutation, refute] |
| 3280 | #Palestinian singer Dalal Abu Amna has refused... | [(Zambia pavilion), (Zimbabwe pavilion)] | [refused, refuses, refusing, refutation, refute] |
| 3281 | .@Mustafa_Qadri: "The entire international com... | [(Zambia pavilion), (Zimbabwe pavilion)] | [savages, scaly, scam, scams, scandal] |
| 3282 | The 🇱🇺Pavilion made it into @CosmoMiddleEast :... | [(Liberia pavilion), (Libya pavilion), (Lithua... | [smell, smelled, smelling, smells, smelly] |
| 3283 | #Palestinian singer Dalal Abu Amna has refused... | [(Zambia pavilion), (Zimbabwe pavilion)] | [refused, refuses, refusing, refutation, refute] |
| 3284 | Hey people saying they should put Encanto in t... | [(Marshall Islands pavilion), (Mauritania pavi... | [problematic, problems, procrastinate, procras... |
| 3285 | @TheHorizoneer well i mean they can’t do that ... | [(Marshall Islands pavilion), (Mauritania pavi... | [warmly, warmth, wealthy, welcome, well] |
| 3286 | Can someone please find out how much it cost u... | [(Zambia pavilion), (Zimbabwe pavilion)] | [rotten, rough, rremediable, rubbish, rude] |
| 3287 | We’re excited to host the SAP Seaports Innovat... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sags, salacious, sanctimonious, sap, sarcasm] |
| 3288 | Mexico! The pavilion stars and water ride smel... | [(Marshall Islands pavilion), (Mauritania pavi... | [smell, smelled, smelling, smells, smelly] |
| 3289 | @thatsso_kiki First. Thanks for the reminder o... | [(Marshall Islands pavilion), (Mauritania pavi... | [soapy, sob, sober, sobering, solemn] |
| 3290 | The Mexico Pavilion stole my heart today along... | [(Marshall Islands pavilion), (Mauritania pavi... | [stodgy, stole, stolen, stooge, stooges] |
| 3291 | @TOCPE82 No, I was in the Mexico Pavilion drin... | [(Marshall Islands pavilion), (Mauritania pavi... | [work, workable, worked, works, world-famous] |
| 3292 | @Magda_Wierzycka Truly sad, we would have love... | [(Mozambique pavilion), (Myanmar pavilion), (N... | NaN |
| 3293 | Can't regret this love @kruzdahypeman\nYou are... | [(Netherlands pavilion), (New Zealand pavilion... | [regressive, regret, regreted, regretful, regr... |
| 3294 | @drshamamohd In the Indian pavilion if not Ind... | [(North Macedonia pavilion), (Norway pavilion)... | [sinful, sinfully, sinister, sinisterly, sink] |
| 3295 | I made sure to visit @expo2020dubai and was ov... | [(North Macedonia pavilion), (Norway pavilion)... | [overthrows, overturn, overweight, overwhelm, ... |
| 3296 | The Pakistan Pavilion is happy to announce tha... | [(North Macedonia pavilion), (Norway pavilion)... | [overwhelming, overwhelmingly, overwhelms, ove... |
| 3297 | The Pakistan Pavilion is pleased to announce t... | [(North Macedonia pavilion), (Norway pavilion)... | [overwhelming, overwhelmingly, overwhelms, ove... |
| 3298 | #Palestinian singer \nDalal Abu Amna has refus... | [(Zambia pavilion), (Zimbabwe pavilion)] | [refused, refuses, refusing, refutation, refute] |
| 3299 | @BlankSamuel @JudyWinslow_fm @DizDerek Exactly... | [(North Macedonia pavilion), (Norway pavilion)... | [froze, frozen, fruitless, fruitlessly, frustr... |
| 3300 | Kafi Group is attending Gulfood (Sun, Feb 13, ... | [(North Macedonia pavilion), (Norway pavilion)... | [stale, stalemate, stall, stalls, stammer] |
| 3301 | Jazaa is participating in Gulfood 2022, the wo... | [(North Macedonia pavilion), (Norway pavilion)... | [stale, stalemate, stall, stalls, stammer] |
| 3302 | A new pavilion for spectators, a separate seat... | [(North Macedonia pavilion), (Norway pavilion)... | [tanked, tanks, tantrum, tardy, tarnish] |
| 3303 | SPOTLIGHT: One of the team members that worked... | [(North Macedonia pavilion), (Norway pavilion)... | [work, workable, worked, works, world-famous] |
| 3304 | Did you ever do an Aquavit shot in Epcot's Nor... | [(North Macedonia pavilion), (Norway pavilion)... | [worrisome, worry, worrying, worryingly, worse] |
| 3305 | @drshamamohd Your husband should have visited ... | [(North Macedonia pavilion), (Norway pavilion)... | [wripping, writhe, wrong, wrongful, wrongly] |
| 3306 | If at 4th of February you happen to be at #Dub... | [(Slovenia pavilion), (Solomon Islands pavilio... | [ruining, ruinous, ruins, rumbling, rumor] |
| 3307 | UAE Vice President receives Kerala CM ... - ht... | [(Zambia pavilion), (Zimbabwe pavilion)] | [vibration, vice, vicious, viciously, viciousn... |
| 3308 | Great hearing from our expert panel on the lat... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sags, salacious, sanctimonious, sap, sarcasm] |
| 3309 | HMA Offers All Types of PRO Services to Assist... | [(Zambia pavilion), (Zimbabwe pavilion)] | [senselessly, seriousness, sermonize, servitud... |
| 3310 | The Emconic collection ’s highlights also incl... | [(Thailand pavilion), (Timor-Leste pavilion), ... | [tumultuous, turbulent, turmoil, twist, twisted] |
| 3311 | Space is well-crafted and uniquely suited for ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [tiring, tiringly, toil, toll, top-heavy] |
| 3312 | @LindiweSisuluSA @MYANC @PresidencyZA this is ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [urgent, useless, usurp, usurper, utterly] |
| 3313 | Dubai Metro - One of the most advanced rail sy... | [(Zambia pavilion), (Zimbabwe pavilion)] | [radicals, rage, ragged, raging, rail] |
| 3314 | HH Sheikh Hamdan bin Mohammed: Today I met wit... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3315 | Unveiling a multilingual robot at UAEU pavilio... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3316 | @AmrullahSaleh2 How’s Dubai jigar? \nHave you ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3317 | Grab your #Expo2020 tickets to see the VALE ex... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3318 | Join YouTuber Dhruv Rathee as he explores the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3319 | From enjoying immersive experiences at the Emi... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3320 | “I am so close, I may look distant.\nSo comple... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3321 | Our Head of Protocol, Fabiola Cavallini with A... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3322 | Georgia has some gorgeous silver jewelry … The... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3323 | It may be one of the small pavilions in #Expo2... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3324 | #Expo2020 #Dubai #expo Nowadays everything loo... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3325 | The #GCC Pavilion at #Expo2020 #Dubai offers i... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3326 | The #GCC Pavilion at #Expo2020 #Dubai holds th... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3327 | The Pakistan Pavilion at Expo2020 would like t... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3328 | Join us for a live talk on traditional archite... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3329 | Presenting the opening ceremony of Gilgit - Ba... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3330 | ✈️ @Emirates x @Expo2020Dubai \n \n😍 The boys ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3331 | Prime Minister of #Spain, visits the #UAE Pavi... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3332 | College of Medicine and Health Sciences organi... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3333 | @emirates , the premier partner and official a... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3334 | Great to see @UOWD President’s name on the w... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3335 | Day 1 : Swecare together with the Swedish Mini... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3336 | Day 1 : Swecare together with the Swedish Mini... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3337 | The Youth Pavilion @expo2020 hosted H.E. Ghann... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3338 | Did you know that many of us are multilingual ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3339 | @JEK_Psych God bless her . Hopefully the Immun... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3340 | Expo 2020 Dubai’s Emirates pavilion hosts the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3341 | Come visit us today at the Pakistan Pavilion.\... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3342 | Come visit the Maldives Pavilion and celebrate... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3343 | Relationship between humanity and artificial i... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3344 | Holland pavilion #Expo2020 https://t.co/jSj7zI... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3345 | Dubai's Minister of Foreign Affairs and Intern... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3346 | #USAPavilion Youth Ambassadors take the runway... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3347 | To all foosball fans out there! Don’t miss the... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3348 | @expo2020_jp I tried to book today at 12 pm an... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3349 | In Unlimited Space, you’re set to explore the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3350 | #GoGB is the first edition of an #investmentco... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3351 | The Jamaica Pavilion has welcomed 84,683 visit... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3352 | Dasman Diabetes Institute participates in the ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3353 | #DubaiExpo 2020 #Pakistan pavilion is making s... | [(Zambia pavilion), (Zimbabwe pavilion)] | [streamlined, striking, strikingly, striving, ... |
| 3354 | Welcome to Expo #Dubai 2020 Gilgit-Baltistan, ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 3355 | Prayed Sonobe Handpan at Afganistan Pavilion D... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3356 | Prayed Didge at Somalia Pavilion Dubaiexpo2020... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3357 | Discover Afghanistan at Expo 2020. You can lea... | [(Afghanistan pavilion), (Albania pavilion), (... | NaN |
| 3358 | #DubaiExpo: Gombe Governor Visits Nigerian Pav... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3359 | Watch: Israel celebrates India's Republic Day ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3360 | The world’s largest Quran is on display in the... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3361 | Our very own Dr. Philip Webb is in the line up... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3362 | Visited with pleasure and honour pavilion “Aze... | [(Azerbaijan pavilion), (Bahamas pavilion), (B... | [vouch, vouchsafe, warm, warmer, warmhearted] |
| 3363 | The Belarus Pavilion at EXPO 2020 congratulate... | [(Belarus pavilion), (Belgium pavilion), (Beli... | NaN |
| 3364 | Al Kaabi :Gabon Pavilion at Expo a space to re... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | NaN |
| 3365 | The @ArchMOC Commission is working to document... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3366 | Greek 🇬🇷 pavilion at the Cairo international B... | [(Greece pavilion), (Grenada pavilion), (Guate... | NaN |
| 3367 | #Greece is the Country of Honour at the 53rd C... | [(Greece pavilion), (Grenada pavilion), (Guate... | NaN |
| 3368 | @KashoonLeeza @ForeignOfficePk @mincompk Bhikh... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3369 | Today I met with Pinarayi Vijayan, Chief Minis... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3370 | @ndtvfeed @ndtv finally , Air India back to pa... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3371 | Traditional Cultural Performance by Ladakh || ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3372 | Traditional Cultural Performance by Ladakh || ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3373 | Today I met with Pinarayi Vijayan, Chief Minis... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3374 | Outside the Sweden Pavilion "The Forest" at Ex... | [(Sweden pavilion), (Switzerland pavilion), (S... | NaN |
| 3375 | 02 February 2022: Screenprinting and Graphics ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3376 | 29th @Convergenc India Expo & 7th @smartci... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3377 | 7th @smartcitiesind expo and 29th @Convergenc ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3378 | @vijayanpinarayi @expo2020dubai What is kerala... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3379 | Kerala Week will begin on February 4 in the In... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3380 | Expo 2020 Dubai: India Pavilion to host Kerala... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3381 | Expo 2020 Dubai: India Pavilion to host Kerala... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3382 | Dikshu Kukreja, key Architecht of India Pavili... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3383 | CHECK IN Announcement\nOFFICIAL INDIA PAVILION... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3384 | CHECK IN Announcement\nOFFICIAL INDIA PAVILION... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3385 | I am so destined to find the best butter chick... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3386 | Start your day with nokume...\nhttps://t.co/Oz... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3387 | @ndtv This oldie is the biggest spinner in the... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3388 | Indian Chamber of Commerce along with Departme... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3389 | On a session on Medical Value Travel and telem... | [(India pavilion), (Indonesia pavilion), (Iran... | [work, workable, worked, works, world-famous] |
| 3390 | START YOUR DAY WITH NOKUME\nhttps://t.co/OzZx1... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3391 | Expo 2020 Dubai: Sheikh Hamdan visits DP World... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3392 | In the latest 'Opening This Week' entry we fea... | [(India pavilion), (Indonesia pavilion), (Iran... | [lackluster, lacks, laconic, lag, lagged] |
| 3393 | #FlyWithIX : Hey #Dubai!\n\nFly with us to Dub... | [(India pavilion), (Indonesia pavilion), (Iran... | [win, windfall, winnable, winner, winners] |
| 3394 | START YOUR DAY WITH NOKUME\nhttps://t.co/OzZx1... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3395 | START YOUR DAY WITH NOKUME\nhttps://t.co/OzZx1... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3396 | India Pavilion hosts discussion on MedTech sec... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3397 | @drshamamohd Your husband is not the only one ... | [(India pavilion), (Indonesia pavilion), (Iran... | [mislead, misleading, misleadingly, mislike, m... |
| 3398 | Explore the emerging trends at the Wood & ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3399 | OpIndia: Congress spokesperson lies about Indi... | [(India pavilion), (Indonesia pavilion), (Iran... | [burns, bust, busts, busybody, butcher] |
| 3400 | Honoured to meet H.E. Lee Seok-gu, Republic of... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3401 | Department of Commerce and Industry is organiz... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | NaN |
| 3402 | Indian Chamber of Commerce along with Departme... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3403 | #ASSOCHAM with the support of @DoC_GoI is org... | [(Mozambique pavilion), (Myanmar pavilion), (N... | [superbly, superior, superiority, supple, supp... |
| 3404 | PART-IV REF 9903\nConclusion is 35% raised at ... | [(India pavilion), (Indonesia pavilion), (Iran... | [dazed, dead, deadbeat, deadlock, deadly] |
| 3405 | @Meghna_venture @drshamamohd Ummmm.... honey? ... | [(India pavilion), (Indonesia pavilion), (Iran... | [work, workable, worked, works, world-famous] |
| 3406 | I will be visiting Dubai Expo by the end of th... | [(North Macedonia pavilion), (Norway pavilion)... | [togetherness, tolerable, toll-free, top, top-... |
| 3407 | This sky over the India Gate was a lovely fini... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3408 | @drshamamohd Why do u find reasons to defame I... | [(India pavilion), (Indonesia pavilion), (Iran... | [defamation, defamations, defamatory, defame, ... |
| 3409 | @drshamamohd Am here in Dubai for quite some t... | [(India pavilion), (Indonesia pavilion), (Iran... | [arrogantly, ashamed, asinine, asininely, asin... |
| 3410 | @getnagu @bahl65 @oldschoolmonk @__Hegde @Neta... | [(India pavilion), (Indonesia pavilion), (Iran... | [doubt, doubtful, doubtfully, doubts, douchbag] |
| 3411 | Indian Chamber of Commerce along with Departme... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3412 | @drshamamohd A big lier your husband is. Visit... | [(India pavilion), (Indonesia pavilion), (Iran... | [lie, lied, lier, lies, life-threatening] |
| 3413 | We were thrilled to visit @IndiaExpo2020 where... | [(India pavilion), (Indonesia pavilion), (Iran... | [thoughtfulness, thrift, thrifty, thrill, thri... |
| 3414 | @drshamamohd He is lying for sure. Anyway we c... | [(India pavilion), (Indonesia pavilion), (Iran... | [lying, macabre, mad, madden, maddening] |
| 3415 | Aster Volunteers conduct Basic Life Support aw... | [(India pavilion), (Indonesia pavilion), (Iran... | [superbly, superior, superiority, supple, supp... |
| 3416 | Map of india , Jammu and Kashmeer in Indian pa... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3417 | In her chronic hate for Modi, the Congress spo... | [(India pavilion), (Indonesia pavilion), (Iran... | [choke, choleric, choppy, chore, chronic] |
| 3418 | .@HOSTSalford has been announced as the Lead S... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3419 | India is huge but mostly a boasting pavilion w... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3420 | @shelo9 Visit USA , a walk and opposite India ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3421 | @drshamamohd https://t.co/pptWXjiBnE\nthis sho... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3422 | Happening Now!\n@Sepc_India Chairman, Shri Sun... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3423 | START YOUR DAY WITH NOKUME*\nhttps://t.co/OzZx... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3424 | @BoredMallu @drshamamohd Her husband must be a... | [(India pavilion), (Indonesia pavilion), (Iran... | [supported, supporter, supporting, supportive,... |
| 3425 | @drshamamohd I was wondering why are you lying... | [(India pavilion), (Indonesia pavilion), (Iran... | [defamation, defamations, defamatory, defame, ... |
| 3426 | Congress spokesperson lies about India Pavilli... | [(India pavilion), (Indonesia pavilion), (Iran... | [burns, bust, busts, busybody, butcher] |
| 3427 | @drshamamohd This Means Ur Hubby dint Visit An... | [(India pavilion), (Indonesia pavilion), (Iran... | [supremacy, supreme, supremely, supurb, supurbly] |
| 3428 | @drshamamohd Maybe your husband was hallucinat... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3429 | No wonder more than 8 Lakh people have visited... | [(India pavilion), (Indonesia pavilion), (Iran... | [witty, won, wonder, wonderful, wonderfully] |
| 3430 | World Showcase (3/3) new pavilion elaboration,... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3431 | @loraxstanclub I’ll drop you off India Pavilio... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3432 | Bhag!\n\nHere’s India Pavilion @ Dubai Expo. I... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3433 | @drshamamohd There's hardly any pictures of th... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3434 | @drshamamohd Maybe that why the longest queues... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3435 | OpIndia: Congress spokesperson lies about Indi... | [(India pavilion), (Indonesia pavilion), (Iran... | [burns, bust, busts, busybody, butcher] |
| 3436 | @MonicaK2511 She’s as dumb if not more like he... | [(India pavilion), (Indonesia pavilion), (Iran... | [dull, dullard, dumb, dumbfound, dump] |
| 3437 | Congress spokesperson lies about India Pavilli... | [(India pavilion), (Indonesia pavilion), (Iran... | [burns, bust, busts, busybody, butcher] |
| 3438 | @drshamamohd I have visited the Dubai Expo 4 t... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3439 | Congress spokesperson lies about India Pavilli... | [(India pavilion), (Indonesia pavilion), (Iran... | [burns, bust, busts, busybody, butcher] |
| 3440 | Congress spokesperson lies about India Pavilli... | [(India pavilion), (Indonesia pavilion), (Iran... | [burns, bust, busts, busybody, butcher] |
| 3441 | @Sweet_HoneygaI I have been to the India pavil... | [(India pavilion), (Indonesia pavilion), (Iran... | [swanky, sweeping, sweet, sweeten, sweetheart] |
| 3442 | @drshamamohd Yaass... thats reality all the pa... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [work, workable, worked, works, world-famous] |
| 3443 | Chef Vikas Khanna unveils new book from India ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3444 | Chef Vikas Khanna unveils new book from India ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3445 | Aster DM Healthcare launches its corporate boo... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3446 | @drshamamohd Ma'am I will try to find out whic... | [(North Macedonia pavilion), (Norway pavilion)... | [fear, fearful, fearfully, fears, fearsome] |
| 3447 | A highly rated and well respected Global Leade... | [(India pavilion), (Indonesia pavilion), (Iran... | [warmly, warmth, wealthy, welcome, well] |
| 3448 | @drshamamohd @cgidubai false information about... | [(India pavilion), (Indonesia pavilion), (Iran... | [falls, false, falsehood, falsely, falsify] |
| 3449 | @cgidubai kindly look into this false informat... | [(India pavilion), (Indonesia pavilion), (Iran... | [falls, false, falsehood, falsely, falsify] |
| 3450 | Chef Vikas Khanna unveils new #book from India... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3451 | Absolute nonsense. India pavilion is one of th... | [(India pavilion), (Indonesia pavilion), (Iran... | [noisy, non-confidence, nonexistent, nonrespon... |
| 3452 | If #RahulGandhi was PM, \nShama:“My husband lo... | [(India pavilion), (Indonesia pavilion), (Iran... | [warmly, warmth, wealthy, welcome, well] |
| 3453 | @drshamamohd Anyone who is reading this, just ... | [(India pavilion), (Indonesia pavilion), (Iran... | [idiocy, idiot, idiotic, idiotically, idiots] |
| 3454 | @drshamamohd Madam don’t lie . Indian pavilion... | [(India pavilion), (Indonesia pavilion), (Iran... | [lie, lied, lier, lies, life-threatening] |
| 3455 | @drshamamohd What these fake....contd:\nD. For... | [(India pavilion), (Indonesia pavilion), (Iran... | [fake, fall, fallacies, fallacious, fallaciously] |
| 3456 | Shama, your husband & you have no sense of... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3457 | @drshamamohd I've been at the Dubai Expo for f... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3458 | Expo 2020 Dubai: India pavilion hosts power-pa... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3459 | Aster DM Healthcare launches its corporate boo... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3460 | @drshamamohd Wat he said he so true..none of t... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3461 | I asked my husband about Dubai Expo, especiall... | [(India pavilion), (Indonesia pavilion), (Iran... | [warmly, warmth, wealthy, welcome, well] |
| 3462 | #Repost @IndiaExpo2020 \n\nIndia Pavilion capt... | [(India pavilion), (Indonesia pavilion), (Iran... | [valuable, variety, venerate, verifiable, veri... |
| 3463 | .@euronews: India’s Pavillion at @expo2020duba... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3464 | Explore new opportunities with a Lighting-focu... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3465 | .@euronews: India’s Pavillion at @expo2020duba... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3466 | At the EXPO India Pavilion, I caught up with ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3467 | START YOUR DAY WITH NOKUME\nhttps://t.co/OzZx1... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3468 | Indian Chamber of Commerce along with Departme... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3469 | The Brighton Pavilion-Construction work began ... | [(India pavilion), (Indonesia pavilion), (Iran... | [work, workable, worked, works, world-famous] |
| 3470 | @TraderHarneet @velumania It's there in India ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3471 | @velumania Good photoshop at India pavilion Ex... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3472 | @AMP86793444 And thats out yes its all over th... | [(India pavilion), (Indonesia pavilion), (Iran... | [victory, viewable, vigilance, vigilant, virtue] |
| 3473 | Republic Day @timesofindia special featured Ho... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3474 | A great gesture from true friend of India #Isr... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3475 | #RepublicDayIndia: #India pavilion at #Expo202... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3476 | #RepublicDayIndia: #India pavilion at #Expo202... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3477 | Celebration of #RepublicDay at Indian pavilion... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3478 | India's 73rd #RepublicDay at #India Pavilion i... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3479 | Happy Republic Day Everyone 🇮🇳 \n\nSharing a f... | [(India pavilion), (Indonesia pavilion), (Iran... | [worth, worth-while, worthiness, worthwhile, w... |
| 3480 | On India’s 73rd Republic Day, We Congratulate ... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3481 | #RepublicDayIndia: Artists perform cultural da... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3482 | #RepublicDayIndia: The Consul General of India... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3483 | #RepublicDayIndia: The Consul General of India... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3484 | Tourism is an important part of India's econom... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3485 | @HinaRKhar @Expo2020Pak @expo2020dubai Did you... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3486 | - India Pavilion Crosses 800K Footfall Milesto... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3487 | HP Pavilion 15, Omen 15 Gaming Laptops Launche... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3488 | The India pavilion at Expo 2020 has been attra... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3489 | I'm at India Pavilion in Dubai https://t.co/QF... | [(India pavilion), (Indonesia pavilion), (Iran... | NaN |
| 3490 | #FlyWithIX : Expo 2020 Dubai!\n\nJust a Flight... | [(India pavilion), (Indonesia pavilion), (Iran... | [win, windfall, winnable, winner, winners] |
| 3491 | @EmiratiPatriot She was born in Israel, and ed... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3492 | @Celebrty_0 She was born in Israel, and educat... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3493 | In response to her boycott of Expo 2020, I enc... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3494 | #Israel's President @Isaac_Herzog opened Isra... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3495 | #Israel's President @Isaac_Herzog opened Isra... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3496 | Israel and UAE discuss use of AI and Cybersecu... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3497 | so expo has a israel pavilion now… | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3498 | Israel\nIsraeli President Herzog opened the co... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3499 | We had the honour of welcoming H.E. Isaac Herz... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3500 | Israel's President Herzog visits Expo 2020 Dub... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3501 | @Israel @expo2020dubai @IsraelExpoDubai @Israe... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3502 | Israel's President Isaac Herzog was in Dubai t... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3503 | Blue and white, shining so bright! \n\nWhat a ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3504 | It’s Israel Day at @IsraelExpoDubai! \n\nFollo... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3505 | WOAH! Now that's an impressive pavilion! 😮🇮🇱😍@... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3506 | Israel National Day party at the Israeli Pavil... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3507 | Blue and white, #ExpoDubai tonight. \n\nNothin... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3508 | #Israel #UAE : Inside #Israel’s pavilion at #E... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3509 | jan wrap up\n• ten myths about israel\n• templ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3510 | @HHShkMohd on Monday met @Isaac_Herzog at the ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3511 | President Isaac Herzog is joined by Expo 2020 ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3512 | @Israel No it’s what Arab hospitality bought w... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3513 | Today we’re celebrating peace, success and pro... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [success, successes, successful, successfully,... |
| 3514 | 🇮🇱 “Israel is a country in which obstacles bec... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [talented, talents, tantalize, tantalizing, ta... |
| 3515 | Mohammed bin Rashid meets with President of #I... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3516 | The Israeli pavilion at Expo 2020 Dubai hosts ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [valuable, variety, venerate, verifiable, veri... |
| 3517 | 🔴 As Herzog visits, UAE intercepts ballistic m... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3518 | Our pavilion at @expo2020dubai is in full swin... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3519 | The Israeli pavilion at Expo 2020 Dubai will h... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3520 | Today we’re covering Israel Day at @expo2020du... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3521 | The Israeli Pavilion at Expo 2020 will play ho... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3522 | @SaulWahlK It's unreal https://t.co/ASyHgC1qsK | [(Israel pavilion), (Italy pavilion), (Jamaica... | [unquestionably, unreal, unrestricted, unrival... |
| 3523 | Please just boycott Dubai Expo one time. They ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [boycott, braggart, bragger, brainless, brainw... |
| 3524 | Israel Pavilion at Dubai Expo Commemorates the... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3525 | The #UAE hosts its first-ever #InternationalHo... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3526 | Visitors observed the International Holocaust ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3527 | Visitors observed the International Holocaust ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3528 | Our Commissioner General, Mr @JThesleff, parti... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3529 | #Israel Pavilion at #Expo2020Dubai marks #Inte... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3530 | International Holocaust Remembrance Day - Janu... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3531 | The #Israel Pavilion enchanted attendees at #E... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [winning, wins, wisdom, wise, wisely] |
| 3532 | But all thy gates; that received of the LORD, ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3533 | @Our_Levodopa The Israel pavilion is next to t... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3534 | "Israel's President Visits United Arab Emirate... | [(Israel pavilion), (Italy pavilion), (Jamaica... | NaN |
| 3535 | For the first time ever, the pavilion of #Kaza... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | NaN |
| 3536 | After a False Start in 2019, Kazakhstan Has An... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | NaN |
| 3537 | After a false start in 2019, Kazakhstan has an... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | NaN |
| 3538 | After a False Start in 2019, Kazakhstan Has An... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | NaN |
| 3539 | We are honored to welcome in Moldova Pavilion ... | [(Moldova pavilion), (Monaco pavilion), (Mongo... | [warmly, warmth, wealthy, welcome, well] |
| 3540 | Expo 2020 Dubai: Mr.Sheikh Hamdan meets Chief ... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3541 | HE Fatmire Isaki, Deputy Minister of Foreign A... | [(North Macedonia pavilion), (Norway pavilion)... | [sustainability, sustainable, swank, swankier,... |
| 3542 | Learn all about traditional architecture style... | [(Zambia pavilion), (Zimbabwe pavilion)] | NaN |
| 3543 | Philippines Pavilion at Expo 2020 Dubai highli... | [(Philippines pavilion), (Poland pavilion), (P... | NaN |
| 3544 | Philippines Pavilion at Expo 2020 Dubai highli... | [(Philippines pavilion), (Poland pavilion), (P... | NaN |
| 3545 | Philippines Pavilion at Expo 2020 Dubai highli... | [(Philippines pavilion), (Poland pavilion), (P... | NaN |
| 3546 | The healthcare sector is the 2nd largest expor... | [(Sweden pavilion), (Switzerland pavilion), (S... | NaN |
| 3547 | Applause to Sweden pavilion for organising and... | [(Sweden pavilion), (Switzerland pavilion), (S... | NaN |
| 3548 | 1-2 Feb: Opening of 🇸🇪 Pavilion #Expo2020Swede... | [(Sweden pavilion), (Switzerland pavilion), (S... | NaN |
| 3549 | Sweden is in the frontline in healthcare. Toda... | [(Sweden pavilion), (Switzerland pavilion), (S... | NaN |
| 3550 | I’m surprised NO ONE took pictures of the Geme... | [(Sweden pavilion), (Switzerland pavilion), (S... | NaN |
| 3551 | We are in 2022.\nAny updates. \nWere the produ... | [(Palestine pavilion), (Panama pavilion), (Pap... | [dungeons, dupe, dust, dusty, dwindling] |
| 3552 | Someone has to say it.. the U.K. stand at #Exp... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [humid, humiliate, humiliating, humiliation, h... |
| 3553 | Slavery does not stop at construction labor ex... | [(Zambia pavilion), (Zimbabwe pavilion)] | [absurdness, abuse, abused, abuses, abusive] |
| 3554 | That one time when Kim Jibeom noticed me , Ist... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [failure, failures, faint, fainthearted, faith... |
| 3555 | Sources to MTV: The situation at #DubaiExpo is... | [(Zambia pavilion), (Zimbabwe pavilion)] | [falls, false, falsehood, falsely, falsify] |
| 3556 | Deal of the day\nPS2 Fat 1tb loaded with 250 g... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [fastuous, fat, fat-cat, fat-cats, fatal] |
| 3557 | If u can't do hard workout just stopped going ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [hard, hard-hit, hard-line, hard-liner, hardball] |
| 3558 | Nicole Smith Ludvik is back on top of #BurjKha... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 3559 | Earl Brooks Jr. big up yourself brother . #Dub... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [insane, insanely, insanity, insatiable, insec... |
| 3560 | H.E Jakov Milatovic, Minister of Economic Deve... | [(Marshall Islands pavilion), (Mauritania pavi... | [isolation, issue, issues, itch, itching] |
| 3561 | Lie machine - @INCIndia - says #DubaiExpo #Ind... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [lie, lied, lier, lies, life-threatening] |
| 3562 | @Ina_aIi00 You've lost the argument at that point | [(Serbia pavilion), (Seychelles pavilion), (Si... | [loses, losing, loss, losses, lost] |
| 3563 | Pump it loud with the Black Eyed Peas at Expo ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [loud, louder, lousy, loveless, lovelorn] |
| 3564 | Dubai Events Mar 2022\nExpo until 31st \nhttps... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [mar, marginal, marginally, martyrdom, martyrd... |
| 3565 | VIDEO LINK 👉https://t.co/ruPufkcBu2\nCLICK THE... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 3566 | Apparently missed the gig by #BlackEyedPeas in... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 3567 | Don’t miss this #SDG event tomorrow, live from... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thrilling, thrillingly, thrills, thrive, thri... |
| 3568 | Here are highlights from Day 1 of the Mastercl... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 3569 | Expand your network of connections in the bigg... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 3570 | Not only did I miss the expo itself, but I als... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 3571 | Don't miss out \nEgyptian band Cairokee will ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 3572 | The #InvestinDubai Trade Mission at #Expo2020 ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [misrepresent, misrepresentation, miss, missed... |
| 3573 | Monster bali island #12\nSpecial tour off duba... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [monster, monstrosities, monstrosity, monstrou... |
| 3574 | Monster bali island #12\nSpecial tour off duba... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [monster, monstrosities, monstrosity, monstrou... |
| 3575 | Expo 2020 Dubai invited Sima Dance Company to ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [narrower, nastily, nastiness, nasty, naughty] |
| 3576 | Crowd goes wild as #AliZafar rocks the Jubilee... | [(Marshall Islands pavilion), (Mauritania pavi... | [noisy, non-confidence, nonexistent, nonrespon... |
| 3577 | “THE HVAC HIGHLIGHT IS THE LACK OF HVAC ” \nTh... | [(Antigua and Barbuda pavilion), (Argentina pa... | [sustainability, sustainable, swank, swankier,... |
| 3578 | Check out my latest article: DITF pavilion or ... | [(Azerbaijan pavilion), (Bahamas pavilion), (B... | [eyesore, f**k, fabricate, fabrication, faceti... |
| 3579 | @drshamamohd Absolutely correct.\nONLY Pavilio... | [(Azerbaijan pavilion), (Bahamas pavilion), (B... | [farfetched, fascism, fascist, fastidious, fas... |
| 3580 | DO NOT MISS: Coppersmith handicraft & arti... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [misrepresent, misrepresentation, miss, missed... |
| 3581 | Fried gnocchi poutine. 🔥 \n\nThank you, Canada... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [thank, thankful, thinner, thoughtful, thought... |
| 3582 | Together with 8 Canadian companies, the Consul... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [infamy, infected, infection, infections, infe... |
| 3583 | 📅Feb. 8-10: Don't miss the @IntlBldrsShow in #... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [misrepresent, misrepresentation, miss, missed... |
| 3584 | Canada’s #OceanTech community is #MakingWaves ... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [misrepresent, misrepresentation, miss, missed... |
| 3585 | #广州美术学院 走进#迪拜 #世博会,“艺齐#抗疫 ”作品\nAnti-epidemic t... | [(China pavilion), (Colombia pavilion), (Comor... | [antagonism, antagonist, antagonistic, antagon... |
| 3586 | @BTBullion Agreed. 💯 \n\nBecause now it’s not ... | [(North Macedonia pavilion), (Norway pavilion)... | [sumptuous, sumptuously, sumptuousness, super,... |
| 3587 | @JasonRempala And those would probably be just... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [froze, frozen, fruitless, fruitlessly, frustr... |
| 3588 | @EmmaReillyTweet @UNHumanRights @mbachelet @UN... | [(China pavilion), (Colombia pavilion), (Comor... | [disgustful, disgustfully, disgusting, disgust... |
| 3589 | @DOB23 @HyVee There are a couple of things in ... | [(China pavilion), (Colombia pavilion), (Comor... | [misrepresent, misrepresentation, miss, missed... |
| 3590 | @MyChinaTrip Thank you ~I think that the Jin M... | [(China pavilion), (Colombia pavilion), (Comor... | [thank, thankful, thinner, thoughtful, thought... |
| 3591 | @joshgad @Lin_Manuel @thejaredbush @ByronPHowa... | [(Russia pavilion), (Rwanda pavilion), (Saint ... | [lackadaisical, lacked, lackey, lackeys, lacking] |
| 3592 | Hot dog! I’ll be at the #EPCOT International F... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [lifeless, limit, limitation, limitations, lim... |
| 3593 | Postcards have arrived! Check out the #WonderG... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [lifeless, limit, limitation, limitations, lim... |
| 3594 | Photonics Finland Pavilion is building up at t... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [misrepresent, misrepresentation, miss, missed... |
| 3595 | @NCAA @MarchMadnessMBB GEORGIA TECH IS PUMPING... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [nitpick, nitpicking, noise, noises, noisier] |
| 3596 | Dear @expo2020dubai, I visited the pavilions. ... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [sustainability, sustainable, swank, swankier,... |
| 3597 | Home sweet home 🏡 \n\n🆚 No. 15 Georgia\n📍Oxfor... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [swanky, sweeping, sweet, sweeten, sweetheart] |
| 3598 | @KennyWCarson @YolettMcCuin @OleMissWBB @OleMi... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [misrepresent, misrepresentation, miss, missed... |
| 3599 | So #Israel-i enemy PM has been well received t... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 3600 | @ReginaldPFunk @Timcast Dude went from saying ... | [(India pavilion), (Indonesia pavilion), (Iran... | [bemoan, bemoaning, bemused, bent, berate] |
| 3601 | Pssst, did you know...\n\nThat @HiltonHotels w... | [(India pavilion), (Indonesia pavilion), (Iran... | [misrepresent, misrepresentation, miss, missed... |
| 3602 | Famous for its saliya or massive fishing nets,... | [(India pavilion), (Indonesia pavilion), (Iran... | [misrepresent, misrepresentation, miss, missed... |
| 3603 | @sincerelyivy It would honestly be so fun if h... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [irreformable, irregular, irregularity, irrele... |
| 3604 | So #Israel-i enemy PM has been well received t... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 3605 | Mexican studio Gerardo Broissin have designed ... | [(Marshall Islands pavilion), (Mauritania pavi... | [eyesore, f**k, fabricate, fabrication, faceti... |
| 3606 | Checking in from Cox Pavilion, where UNLV is p... | [(Marshall Islands pavilion), (Mauritania pavi... | [loses, losing, loss, losses, lost] |
| 3607 | I really hope this image clears everything up:... | [(Marshall Islands pavilion), (Mauritania pavi... | [backwardness, backwood, backwoods, bad, badly] |
| 3608 | @SuperWeenieHtJr I actually had a talk once wi... | [(Moldova pavilion), (Monaco pavilion), (Mongo... | [insular, insult, insulted, insulting, insulti... |
| 3609 | Things happening at Dubai Expo\n\nLeft: SA pav... | [(Moldova pavilion), (Monaco pavilion), (Mongo... | [misstatement, mist, mistake, mistaken, mistak... |
| 3610 | Construction of Pavilion by "Digital Lifestyle... | [(Netherlands pavilion), (New Zealand pavilion... | [complained, complaining, complains, complaint... |
| 3611 | Discover their unique heritage, vibrant energy... | [(Netherlands pavilion), (New Zealand pavilion... | [versatile, versatility, vibrant, vibrantly, v... |
| 3612 | @RIPcotCenter Its not a recent thing...\n\nEve... | [(North Macedonia pavilion), (Norway pavilion)... | [misrepresent, misrepresentation, miss, missed... |
| 3613 | Culture of the village life in the Pakistan th... | [(North Macedonia pavilion), (Norway pavilion)... | [witty, won, wonder, wonderful, wonderfully] |
| 3614 | "If the goal is to give people a taste of some... | [(North Macedonia pavilion), (Norway pavilion)... | [froze, frozen, fruitless, fruitlessly, frustr... |
| 3615 | The former post-show theater for Maelstrom in ... | [(North Macedonia pavilion), (Norway pavilion)... | [froze, frozen, fruitless, fruitlessly, frustr... |
| 3616 | We would like to remind guests that seats are ... | [(North Macedonia pavilion), (Norway pavilion)... | [lifeless, limit, limitation, limitations, lim... |
| 3617 | That Maelstrom mural was a thing of beauty and... | [(North Macedonia pavilion), (Norway pavilion)... | [misrepresent, misrepresentation, miss, missed... |
| 3618 | @sebstrades @deltaonearb @TheEthicalTout Big s... | [(Palestine pavilion), (Panama pavilion), (Pap... | [knock, knotted, kook, kooky, lack] |
| 3619 | #Dubai #DubaiExpo #AbuDhabi Welcome to the gat... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 3620 | @apldeap @JReysoul and @TabBep honor their Fil... | [(Philippines pavilion), (Poland pavilion), (P... | [misrepresent, misrepresentation, miss, missed... |
| 3621 | CEO Clubs Network is proud to announce another... | [(Russia pavilion), (Rwanda pavilion), (Saint ... | [lifeless, limit, limitation, limitations, lim... |
| 3622 | A funky installation I saw in the Dubai expo, ... | [(Samoa pavilion), (San Marino pavilion), (São... | [fundamentalism, funky, funnily, funny, furious] |
| 3623 | @MadiBoity This pic is cut in half. Go on yout... | [(Slovenia pavilion), (Solomon Islands pavilio... | [boredom, bores, boring, botch, bother] |
| 3624 | Eduardo Paniagua, who visited the #SpainPavili... | [(South Sudan pavilion), (Spain pavilion), (Sr... | [misrepresent, misrepresentation, miss, missed... |
| 3625 | Health and Wellness Week at the #swisspavilion... | [(Sweden pavilion), (Switzerland pavilion), (S... | [warmly, warmth, wealthy, welcome, well] |
| 3626 | The one of the most beautiful pieces from “Col... | [(Thailand pavilion), (Timor-Leste pavilion), ... | [humid, humiliate, humiliating, humiliation, h... |
| 3627 | The art of storytelling in motion comes to the... | [(Uzbekistan pavilion), (Vanuatu pavilion), (V... | [misrepresent, misrepresentation, miss, missed... |
| 3628 | I went to Thailand 🇹🇭 pavilion today in dubai ... | [(Thailand pavilion), (Timor-Leste pavilion), ... | [misrepresent, misrepresentation, miss, missed... |
| 3629 | Unidentified Artist, Charity, Hospitals: Unite... | [(Ukraine pavilion), (United Arab Emirates pav... | [nuisance, numb, obese, object, objection] |
| 3630 | Pray for the peoples of Vanuatu and those who ... | [(Uzbekistan pavilion), (Vanuatu pavilion), (V... | [falls, false, falsehood, falsely, falsify] |
| 3631 | Don’t miss them if you’re around too! #LifeSci... | [(Zambia pavilion), (Zimbabwe pavilion)] | [misrepresent, misrepresentation, miss, missed... |
| 3632 | @HHichilema An opportunity to connect young m... | [(Zambia pavilion), (Zimbabwe pavilion)] | [misrepresent, misrepresentation, miss, missed... |
| 3633 | @BTBullion Ok, I guess I’m kinda gross but I’d... | [(Palestine pavilion), (Panama pavilion), (Pap... | [gripe, gripes, grisly, gritty, gross] |
| 3634 | Stunning visuals, immersive audio, interactive... | [(Zambia pavilion), (Zimbabwe pavilion)] | [stronger, strongest, stunned, stunning, stunn... |
| 3635 | The Al Wasl Plaza is stunning. Everyone night ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 3636 | How to be successful in life?\n\n#AustralianOp... | [(Zambia pavilion), (Zimbabwe pavilion)] | [success, successes, successful, successfully,... |
| 3637 | Find out why #SAPtraining is vital to digital ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [success, successes, successful, successfully,... |
| 3638 | #SaudiArabia is one of the world's largest cof... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sufficed, suffices, sufficient, sufficiently,... |
| 3639 | The #ActNow Live #VR Experience and Global Fes... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 3640 | #منى_زكي\n\n#SBISIALI Support The Arab Actress... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3641 | Andorra Pavilion | World Expo in Dubai! \n\nHe... | [(Afghanistan pavilion), (Albania pavilion), (... | [sustainability, sustainable, swank, swankier,... |
| 3642 | You can virtually follow it at https://t.co/bX... | [(Afghanistan pavilion), (Albania pavilion), (... | [sustainability, sustainable, swank, swankier,... |
| 3643 | When you are at @expo2020 in Dubai, and you ge... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 3644 | Mobilizing Big Data and Data Science for the S... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 3645 | Here is how Islam Inspires sustainable develop... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 3646 | Expo 2020 sustainability pavilion project.\nEx... | [(Zambia pavilion), (Zimbabwe pavilion)] | [sustainability, sustainable, swank, swankier,... |
| 3647 | 🇦🇪Dubai Visa\n\nVISA TYPE:\n\nVisit Visa , Tou... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 3648 | Thank you #Expo2020 https://t.co/lyfpLiRa9D | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 3649 | Well done KP, Pakistan.....\nthank you Expo202... | [(Russia pavilion), (Rwanda pavilion), (Saint ... | [warmly, warmth, wealthy, welcome, well] |
| 3650 | Jamaica Showcases Its Top Women Sportspersons-... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 3651 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 3652 | Eradicating Hunger at top of world's to do lis... | [(Russia pavilion), (Rwanda pavilion), (Saint ... | [togetherness, tolerable, toll-free, top, top-... |
| 3653 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [togetherness, tolerable, toll-free, top, top-... |
| 3654 | Come and explore tourism opportunities and dis... | [(Zambia pavilion), (Zimbabwe pavilion)] | [treasure, tremendously, trendy, triumph, triu... |
| 3655 | The most anticipated day in our pavilion is cl... | [(Zambia pavilion), (Zimbabwe pavilion)] | [unequivocal, unequivocally, unfazed, unfetter... |
| 3656 | Two days left for global megastars Black Eyed ... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [unequivocal, unequivocally, unfazed, unfetter... |
| 3657 | SOLD SOLD SOLD!\n\nSidra 3 Villas | Dubai Hill... | [(Zambia pavilion), (Zimbabwe pavilion)] | [virtuous, virtuously, visionary, vivacious, v... |
| 3658 | Welcome to Suha’s Creek Residence💫!\n.\nOur do... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 3659 | Daily briefings are first order of the day. Ap... | [(Zambia pavilion), (Zimbabwe pavilion)] | [crisis, critic, critical, criticism, criticisms] |
| 3660 | 📢📅The 6 #frenchhealthcare conferences start to... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 3661 | “When the well is dry, we know the worth of wa... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [warmly, warmth, wealthy, welcome, well] |
| 3662 | @UKPavilion2020 @KensingtonRoyal @expo2020duba... | [(Bulgaria pavilion), (Burkina Faso pavilion),... | [warmly, warmth, wealthy, welcome, well] |
| 3663 | Idk about you but im excited for $CHIRO #Chihi... | [(Zambia pavilion), (Zimbabwe pavilion)] | [win, windfall, winnable, winner, winners] |
| 3664 | WE ARE ALL RUNNERS & WINNERS!\n"We don't r... | [(Palestine pavilion), (Panama pavilion), (Pap... | [win, windfall, winnable, winner, winners] |
| 3665 | Windhoek named the 'Healthiest City in Africa'... | [(Zambia pavilion), (Zimbabwe pavilion)] | [witty, won, wonder, wonderful, wonderfully] |
| 3666 | https://t.co/wINm9qt2RV \n#DubaiExpo #Ethereum... | [(Zambia pavilion), (Zimbabwe pavilion)] | [witty, won, wonder, wonderful, wonderfully] |
| 3667 | Dubai to the world...\nlive, study and work in... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 3668 | KENYA EYES GCC MARKET FOR EXPORT GROWTH \n\nCu... | [(Kyrgyzstan pavilion), (Laos pavilion), (Latv... | [worth, worth-while, worthiness, worthwhile, w... |
| 3669 | The #expo2020dubai visitor numbers continue to... | [(Zambia pavilion), (Zimbabwe pavilion)] | [worth, worth-while, worthiness, worthwhile, w... |
| 3670 | South Indian Hit Music Festival wows crowds at... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [wow, wowed, wowing, wows, yay] |
| 3671 | The #UAE 🇦🇪 will not be safe until it stops it... | [(Zambia pavilion), (Zimbabwe pavilion)] | [aggravate, aggravating, aggravation, aggressi... |
| 3672 | Angry Birds\n#uae #fujairah #dubai #expo2020 #... | [(Zambia pavilion), (Zimbabwe pavilion)] | [angriness, angry, anguish, animosity, annihil... |
| 3673 | #Breaking \n#Yemen's Iran🇮🇷-backed Houthi mili... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 3674 | So #Expo2020 is bonkers. Follow me on Instagra... | [(Zambia pavilion), (Zimbabwe pavilion)] | [bombastic, bondage, bonkers, bore, bored] |
| 3675 | #BREAKING #UAE\n\n🔴UNITED ARAB EMIRATES: EXPLO... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 3676 | According to eyewitnesses, at around 4 am #UAE... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 3677 | 🔴 #BREAKING \nThe movement is #normal within ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 3678 | List of fines for breaking social media rules ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 3679 | #Breaking - H.H.Sheikh Saif bin Zayed Al Nahy... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 3680 | #saitama Burn 🔥 Burn 🔥and HyperBurn 🔥\n\n#Sait... | [(Zambia pavilion), (Zimbabwe pavilion)] | [burdensome, burdensomely, burn, burned, burning] |
| 3681 | @prudensfx #SHINJA\n5 new exchange listings, w... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [burns, bust, busts, busybody, butcher] |
| 3682 | Xiaomi Poco X3 GT Dual SIM 8GB RAM 128GB Star... | [(Zambia pavilion), (Zimbabwe pavilion)] | [cloud, clouding, cloudy, clueless, clumsy] |
| 3683 | Cold day with sunny wether.\n#DubaiExpo #UAE | [(Zambia pavilion), (Zimbabwe pavilion)] | [coercive, cold, coldly, collapse, collude] |
| 3684 | The Nigerian Igbo people am living with here i... | [(Zambia pavilion), (Zimbabwe pavilion)] | [dazed, dead, deadbeat, deadlock, deadly] |
| 3685 | Night in desert #dubai_DATING \n#DubaiExpo2020... | [(Zambia pavilion), (Zimbabwe pavilion)] | [derogatory, desecrate, desert, desertion, des... |
| 3686 | Last chance to register and ask your questions... | [(Zambia pavilion), (Zimbabwe pavilion)] | [disrespectfully, disrespectfulness, disrespec... |
| 3687 | And of course I visited the @ethnotecham pavil... | [(Antigua and Barbuda pavilion), (Argentina pa... | [warmly, warmth, wealthy, welcome, well] |
| 3688 | Today, we celebrate Australia 🇦🇺 at Expo’s Por... | [(Antigua and Barbuda pavilion), (Argentina pa... | [warmly, warmth, wealthy, welcome, well] |
| 3689 | @expo2020dubai #Australia Pavilion. Wonderful ... | [(Antigua and Barbuda pavilion), (Argentina pa... | [witty, won, wonder, wonderful, wonderfully] |
| 3690 | Australia’s presence at this year’s global con... | [(Antigua and Barbuda pavilion), (Argentina pa... | [anarchistic, anarchy, anemic, anger, angrily] |
| 3691 | BREAKING NEWS: Israeli president presses on wi... | [(Zambia pavilion), (Zimbabwe pavilion)] | [break-up, break-ups, breakdown, breaking, bre... |
| 3692 | @MarisePayne @DrSJaishankar @MEAIndia @AusHCIn... | [(Antigua and Barbuda pavilion), (Argentina pa... | [disappointed, disappointing, disappointingly,... |
| 3693 | Yesterday, CEO Clubs hosted 'Introduction to T... | [(Azerbaijan pavilion), (Bahamas pavilion), (B... | [togetherness, tolerable, toll-free, top, top-... |
| 3694 | Work in progress 🙌\n\n#swissexpresso #kaffee #... | [(Zambia pavilion), (Zimbabwe pavilion)] | [work, workable, worked, works, world-famous] |
| 3695 | @TR1N1TYxWARR10R So before I moved to Belgium,... | [(Belarus pavilion), (Belgium pavilion), (Beli... | [backwardness, backwood, backwoods, bad, badly] |
| 3696 | @Knack Visitors to the Belgium Pavilion at Exp... | [(Belarus pavilion), (Belgium pavilion), (Beli... | [break-up, break-ups, breakdown, breaking, bre... |
| 3697 | Commissioner-General Clark & his wife note... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [success, successes, successful, successfully,... |
| 3698 | Support our #socialproject & #shopforacaus... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [superbly, superior, superiority, supple, supp... |
| 3699 | We were honored to welcome Shaikh Sultan Bin S... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [warmly, warmth, wealthy, welcome, well] |
| 3700 | Our pavilion ambassadros welcome you at the Bo... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [warmly, warmth, wealthy, welcome, well] |
| 3701 | Chef Rodrigo Oliviera, one of #Brazil's most r... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [winning, wins, wisdom, wise, wisely] |
| 3702 | Guess who’s coming to the #BrazilPavilion? He ... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [witty, won, wonder, wonderful, wonderfully] |
| 3703 | Modern-day Bosnia and Herzegovina has been hom... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [complex, complicated, complication, complicit... |
| 3704 | @SuperWeenieHtJr Maybe they should make a Braz... | [(Marshall Islands pavilion), (Mauritania pavi... | [confuse, confused, confuses, confusing, confu... |
| 3705 | A must-see physical-meets-digital immersive se... | [(Bolivia pavilion), (Bosnia and Herzegovina p... | [derogatory, desecrate, desert, desertion, des... |
| 3706 | Advocating and Thriving ICT Innovators. The mi... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thrilling, thrillingly, thrills, thrive, thri... |
| 3707 | #DubaiExpo\nThe top 5 are epic.\n#DubaiExpo202... | [(Zambia pavilion), (Zimbabwe pavilion)] | [togetherness, tolerable, toll-free, top, top-... |
| 3708 | It was such an honour to welcome H.E. Mr. Pak ... | [(Bulgaria pavilion), (Burkina Faso pavilion),... | [warmly, warmth, wealthy, welcome, well] |
| 3709 | Welcome to the Health & Spa week in the Bu... | [(Bulgaria pavilion), (Burkina Faso pavilion),... | [warmly, warmth, wealthy, welcome, well] |
| 3710 | Welcome to the Health & Spa week in the Bu... | [(Bulgaria pavilion), (Burkina Faso pavilion),... | [warmly, warmth, wealthy, welcome, well] |
| 3711 | Christie immerses visitors to Canada Expo pavi... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [valuable, variety, venerate, verifiable, veri... |
| 3712 | HE Mohamed bin Hadi Al Hussaini, Minister of S... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [sustainability, sustainable, swank, swankier,... |
| 3713 | Are you interested in #business opportunities ... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [togetherness, tolerable, toll-free, top, top-... |
| 3714 | Now available in Canada (as an e-book only)! T... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [vouch, vouchsafe, warm, warmer, warmhearted] |
| 3715 | @AnotherElle "Debbie wonders if we're about to... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [wonderous, wonderously, wonders, wondrous, woo] |
| 3716 | @SalNJ19 Cool! She works tomorrow all day in t... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [work, workable, worked, works, world-famous] |
| 3717 | I wanna meet celebs and compliment them on thi... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [work, workable, worked, works, world-famous] |
| 3718 | On Feb 5th, the Canadian Business Council of D... | [(Cameroon pavilion), (Canada pavilion), (Cent... | [cancer, cancerous, cannibal, cannibalize, cap... |
| 3719 | @TheHorizoneer If someone ever does a concept ... | [(China pavilion), (Colombia pavilion), (Comor... | [thank, thankful, thinner, thoughtful, thought... |
| 3720 | The online CAEXPO is divided into China Pavili... | [(North Macedonia pavilion), (Norway pavilion)... | [warmly, warmth, wealthy, welcome, well] |
| 3721 | @SuperWeenieHtJr Well, no they could use an em... | [(China pavilion), (Colombia pavilion), (Comor... | [warmly, warmth, wealthy, welcome, well] |
| 3722 | #Funfact At the #Expo2012Yeosu held in #SouthK... | [(China pavilion), (Colombia pavilion), (Comor... | [witty, won, wonder, wonderful, wonderfully] |
| 3723 | @Frankenfarts @TheHorizoneer @VileAgatha There... | [(China pavilion), (Colombia pavilion), (Comor... | [danger, dangerous, dangerousness, dark, darken] |
| 3724 | @TheHorizoneer Encanto could work as part of a... | [(China pavilion), (Colombia pavilion), (Comor... | [work, workable, worked, works, world-famous] |
| 3725 | President Herzog at the #DubaiExpo2020 despite... | [(Zambia pavilion), (Zimbabwe pavilion)] | [attack, attacks, audacious, audaciously, auda... |
| 3726 | My first trip, Oct.1985 on our honeymoon. Firs... | [(China pavilion), (Colombia pavilion), (Comor... | [backwardness, backwood, backwoods, bad, badly] |
| 3727 | #Repost @samiyusuf \nThe Universe found manife... | [(Zambia pavilion), (Zimbabwe pavilion)] | [bewail, beware, bewilder, bewildered, bewilde... |
| 3728 | @FoxNews … check on how China feels about (UKR... | [(Ukraine pavilion), (United Arab Emirates pav... | [bigotry, bitch, bitchy, biting, bitingly] |
| 3729 | Dude, the movie is only like 2 months old and ... | [(China pavilion), (Colombia pavilion), (Comor... | [chastise, chastisement, chatter, chatterbox, ... |
| 3730 | I would love to see a Mirabel Madrigal meet an... | [(China pavilion), (Colombia pavilion), (Comor... | [danger, dangerous, dangerousness, dark, darken] |
| 3731 | @sincerelyivy We need a Colombia pavilion at E... | [(China pavilion), (Colombia pavilion), (Comor... | [danger, dangerous, dangerousness, dark, darken] |
| 3732 | @ScottGustin I've said it before and I'll say ... | [(China pavilion), (Colombia pavilion), (Comor... | [danger, dangerous, dangerousness, dark, darken] |
| 3733 | @TCJaalin I want a compromise. Colombia Pavili... | [(China pavilion), (Colombia pavilion), (Comor... | [danger, dangerous, dangerousness, dark, darken] |
| 3734 | Let’s welcome Ms. Nadimeh Mehra, Vice Presiden... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 3735 | Enjoyed celebrating “Rock” Ransdale’s life wit... | [(Denmark pavilion), (Djibouti pavilion), (Dom... | [swanky, sweeping, sweet, sweeten, sweetheart] |
| 3736 | @PresidenciaSV @nayibbukele I wonder if they a... | [(Egypt pavilion), (El Salvador pavilion), (Eq... | [witty, won, wonder, wonderful, wonderfully] |
| 3737 | Pure Genius: ... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [stronger, strongest, stunned, stunning, stunn... |
| 3738 | Take a good look at these stunning portraits ... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [stronger, strongest, stunned, stunning, stunn... |
| 3739 | ❤️🤎🧡Take a good look at these stunning portra... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [stronger, strongest, stunned, stunning, stunn... |
| 3740 | Take a good look at these stunning portraits ... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [stronger, strongest, stunned, stunning, stunn... |
| 3741 | Video shows the stunning portraits which are ... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [stronger, strongest, stunned, stunning, stunn... |
| 3742 | Take a good look at these stunning portraits ... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [stronger, strongest, stunned, stunning, stunn... |
| 3743 | Pure Genius 🙏 These are some of the stunning p... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [stronger, strongest, stunned, stunning, stunn... |
| 3744 | Take a good look at these stunning portraits e... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [stronger, strongest, stunned, stunning, stunn... |
| 3745 | Take a good look at these stunning portraits ... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [stronger, strongest, stunned, stunning, stunn... |
| 3746 | Imperial Pavilion at the World's fair of 1867 ... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [superbly, superior, superiority, supple, supp... |
| 3747 | My never ending sincere Gratitude & Salute... | [(Ukraine pavilion), (United Arab Emirates pav... | [virtuous, virtuously, visionary, vivacious, v... |
| 3748 | Thank you @PhotonicsWest and all Photonics Fin... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [thank, thankful, thinner, thoughtful, thought... |
| 3749 | Photonics West Exhibition 2022 has now officia... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [warmly, warmth, wealthy, welcome, well] |
| 3750 | Futudesign++ [architects]Helsinki Finland --"F... | [(Eswatini pavilion), (Ethiopia pavilion), (Fi... | [work, workable, worked, works, world-famous] |
| 3751 | #Dubai Marina always excites me with her light... | [(Zambia pavilion), (Zimbabwe pavilion)] | [thank, thankful, thinner, thoughtful, thought... |
| 3752 | For #PotatoEurope 2022 (Sept 7-8,Germany) @DLG... | [(Netherlands pavilion), (New Zealand pavilion... | [supported, supporter, supporting, supportive,... |
| 3753 | How did you moss to check the contents of the ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [sustainability, sustainable, swank, swankier,... |
| 3754 | Can Georgia Tech take down the ACC's top team ... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [togetherness, tolerable, toll-free, top, top-... |
| 3755 | On Friday, Jan. 28, the Georgia hockey team de... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [victory, viewable, vigilance, vigilant, virtue] |
| 3756 | @Rebels247 @247Sports The game against South C... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [victory, viewable, vigilance, vigilant, virtue] |
| 3757 | The Georgia hockey team was able to comeback a... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [winning, wins, wisdom, wise, wisely] |
| 3758 | More work to be done.\nSee you Sunday at the S... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [work, workable, worked, works, world-famous] |
| 3759 | Ghana has named artists for its national pavil... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [work, workable, worked, works, world-famous] |
| 3760 | Ghana has named the three artists who will sho... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [work, workable, worked, works, world-famous] |
| 3761 | @LottinPackeddd Damn, I wish I could go but I’... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [damaged, damages, damaging, damn, damnable] |
| 3762 | 14/358* | Georgia Tech | Hank McCamish Pavilio... | [(Gabon pavilion), (Gambia pavilion), (Georgia... | [damaged, damages, damaging, damn, damnable] |
| 3763 | Thank you for coming! We love having students ... | [(Greece pavilion), (Grenada pavilion), (Guate... | [thank, thankful, thinner, thoughtful, thought... |
| 3764 | On Monday, part of the world’s largest copy of... | [(North Macedonia pavilion), (Norway pavilion)... | [work, workable, worked, works, world-famous] |
| 3765 | Zsófia Keresztes will represent Hungary at the... | [(Guyana pavilion), (Haiti pavilion), (Holy Se... | [defy, degenerate, degenerately, degeneration,... |
| 3766 | We were honoured to have a stunning four-piece... | [(India pavilion), (Indonesia pavilion), (Iran... | [witty, won, wonder, wonderful, wonderfully] |
| 3767 | Meet our Expo Players! 🪕\n\nBarry, Laura, Step... | [(India pavilion), (Indonesia pavilion), (Iran... | [talented, talents, tantalize, tantalizing, ta... |
| 3768 | We hosted a fantastic Morning Yoga Class here ... | [(India pavilion), (Indonesia pavilion), (Iran... | [warmly, warmth, wealthy, welcome, well] |
| 3769 | Timely dismissal for India Maharajas. Set batt... | [(India pavilion), (Indonesia pavilion), (Iran... | [timely, tingle, titillate, titillating, titil... |
| 3770 | @AnimeshFooty @ashwinravi99 @babarazam258 @iSh... | [(India pavilion), (Indonesia pavilion), (Iran... | [warmly, warmth, wealthy, welcome, well] |
| 3771 | Get ready to experience the world of endless o... | [(India pavilion), (Indonesia pavilion), (Iran... | [warmly, warmth, wealthy, welcome, well] |
| 3772 | It is a common practise on ground for camerame... | [(India pavilion), (Indonesia pavilion), (Iran... | [warmly, warmth, wealthy, welcome, well] |
| 3773 | India is missing @RaviShastriOfc sleep in the ... | [(India pavilion), (Indonesia pavilion), (Iran... | [aggravate, aggravating, aggravation, aggressi... |
| 3774 | Thrilled to be a community partner in “JORDAN ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [thoughtfulness, thrift, thrifty, thrill, thri... |
| 3775 | The world’s leading business event for future ... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [sustainability, sustainable, swank, swankier,... |
| 3776 | Top Ten Things We Love About Epcot's Japan Pav... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [togetherness, tolerable, toll-free, top, top-... |
| 3777 | My favorite pavilion art goes to Italy. Well d... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [warmly, warmth, wealthy, welcome, well] |
| 3778 | Win tickets for Dr. Jordan B. Peterson: Beyond... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [win, windfall, winnable, winner, winners] |
| 3779 | Jamaica pavilion is winning over visitiors' he... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [winning, wins, wisdom, wise, wisely] |
| 3780 | July 26, 1854.. We went to Rockaway Friday mor... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [blister, blistering, bloated, blockage, block... |
| 3781 | Antioxidant, immunomodulatory & Anti-infla... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [antagonism, antagonist, antagonistic, antagon... |
| 3782 | @stacyherbert El Salvador pavilion @ #WorldExp... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [backwardness, backwood, backwoods, bad, badly] |
| 3783 | Getting rid of the Saki bar in the Japan Pavil... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [crept, crime, criminal, cringe, cringed] |
| 3784 | ‘Desert Pavilion’ is a 3D printed pavilion des... | [(Israel pavilion), (Italy pavilion), (Jamaica... | [derogatory, desecrate, desert, desertion, des... |
| 3785 | The Kenya Pavilion at the Expo Dubai 2020 has ... | [(Kazakhstan pavilion), (Kenya pavilion), (Kir... | [witty, won, wonder, wonderful, wonderfully] |
| 3786 | Amy from Lebanon was the 500 000th visitor at ... | [(Kyrgyzstan pavilion), (Laos pavilion), (Latv... | [warmly, warmth, wealthy, welcome, well] |
| 3787 | Andy Vermaut shares:Virtual Therapy Lab Presen... | [(Kyrgyzstan pavilion), (Laos pavilion), (Latv... | [thank, thankful, thinner, thoughtful, thought... |
| 3788 | We were moved to see the warmth displayed towa... | [(Zambia pavilion), (Zimbabwe pavilion)] | [warmly, warmth, wealthy, welcome, well] |
| 3789 | Wonderful to see @ShimhaShakyb’s stunning pain... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [witty, won, wonder, wonderful, wonderfully] |
| 3790 | We are here now for Sustainable Energy and Nat... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [sustainability, sustainable, swank, swankier,... |
| 3791 | Come and join us live today for Opening Ceremo... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [sustainability, sustainable, swank, swankier,... |
| 3792 | Visit the Maldives pavilion in the sustainabil... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [win, windfall, winnable, winner, winners] |
| 3793 | Visit the Maldives Pavilion at the Sustainabil... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [sustainability, sustainable, swank, swankier,... |
| 3794 | 1 DAY TO GO [Opening of Week 18: Sustainable E... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [sustainability, sustainable, swank, swankier,... |
| 3795 | All this is happening during the Sustainable A... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [sustainability, sustainable, swank, swankier,... |
| 3796 | 2 days to go to Sustainable Energy and Natural... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [sustainability, sustainable, swank, swankier,... |
| 3797 | 3 more days to go for the opening of Week 18 -... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [sustainability, sustainable, swank, swankier,... |
| 3798 | 3 more days to go for the opening of Week 18 -... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [sustainability, sustainable, swank, swankier,... |
| 3799 | 25 JAN 2022 | 3PM UAE | 7PM MYT \n\nJoin Mr Ha... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [sustainability, sustainable, swank, swankier,... |
| 3800 | Enter the weekly raffle draw to stand a chance... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [win, windfall, winnable, winner, winners] |
| 3801 | Injecting Malaysia's diverse and vibrant cultu... | [(Malawi pavilion), (Malaysia pavilion), (Mald... | [versatile, versatility, vibrant, vibrantly, v... |
| 3802 | Wow, what a game we saw at the Cox Pavilion to... | [(Marshall Islands pavilion), (Mauritania pavi... | [wow, wowed, wowing, wows, yay] |
| 3803 | At the Cox Pavilion for a big time matchup bet... | [(Marshall Islands pavilion), (Mauritania pavi... | [chastise, chastisement, chatter, chatterbox, ... |
| 3804 | @DreamfinderGuy Now, to just get rid of the pe... | [(Marshall Islands pavilion), (Mauritania pavi... | [bigotry, bitch, bitchy, biting, bitingly] |
| 3805 | COLOMBIA is not Mexico. Stop suggesting an #En... | [(Marshall Islands pavilion), (Mauritania pavi... | [danger, dangerous, dangerousness, dark, darken] |
| 3806 | Thank you @TravTalkME for this nice article ab... | [(Moldova pavilion), (Monaco pavilion), (Mongo... | [thank, thankful, thinner, thoughtful, thought... |
| 3807 | The sangria/chickpea snack bar in the middle o... | [(Moldova pavilion), (Monaco pavilion), (Mongo... | [warmly, warmth, wealthy, welcome, well] |
| 3808 | Roy our photo pass photographer in the Morocco... | [(Moldova pavilion), (Monaco pavilion), (Mongo... | [witty, won, wonder, wonderful, wonderfully] |
| 3809 | It’s amaziiiiiiiiiing😳\nThank you for great ti... | [(Mozambique pavilion), (Myanmar pavilion), (N... | [thank, thankful, thinner, thoughtful, thought... |
| 3810 | @KLM recently co-hosted a reception at the Net... | [(Netherlands pavilion), (New Zealand pavilion... | [sustainability, sustainable, swank, swankier,... |
| 3811 | Are you interested in horticulture contributin... | [(Netherlands pavilion), (New Zealand pavilion... | [sustainability, sustainable, swank, swankier,... |
| 3812 | So I went to the Netherlands Pavilion. Instead... | [(Netherlands pavilion), (New Zealand pavilion... | [warmly, warmth, wealthy, welcome, well] |
| 3813 | Premier #Construction - The Oman Pavilion at E... | [(North Macedonia pavilion), (Norway pavilion)... | [stronger, strongest, stunned, stunning, stunn... |
| 3814 | The #LEAP2022 exhibition is going to be awesom... | [(North Macedonia pavilion), (Norway pavilion)... | [success, successes, successful, successfully,... |
| 3815 | The #LEAP22 exhibition is going to be awesome!... | [(North Macedonia pavilion), (Norway pavilion)... | [success, successes, successful, successfully,... |
| 3816 | The wait is over!! Our team has landed and wil... | [(North Macedonia pavilion), (Norway pavilion)... | [sumptuous, sumptuously, sumptuousness, super,... |
| 3817 | Throwback to side event at #Pakistan's pavilio... | [(North Macedonia pavilion), (Norway pavilion)... | [superbly, superior, superiority, supple, supp... |
| 3818 | Its still surreal to grasp how much love the P... | [(North Macedonia pavilion), (Norway pavilion)... | [surmount, surpass, surreal, survival, survivor] |
| 3819 | The Pakistan Pavilion would like to thank Khum... | [(North Macedonia pavilion), (Norway pavilion)... | [thank, thankful, thinner, thoughtful, thought... |
| 3820 | We thank all our official Pavilion sponsors fo... | [(North Macedonia pavilion), (Norway pavilion)... | [thank, thankful, thinner, thoughtful, thought... |
| 3821 | The Pakistan Pavilion wholeheartedly would lik... | [(North Macedonia pavilion), (Norway pavilion)... | [wellbeing, whoa, wholeheartedly, wholesome, w... |
| 3822 | What an honor to take #Malala's and her family... | [(North Macedonia pavilion), (Norway pavilion)... | [trump, trumpet, trust, trusted, trusting] |
| 3823 | Thank you so much Zia bhai @ZiauddinY \n@Malal... | [(North Macedonia pavilion), (Norway pavilion)... | [thank, thankful, thinner, thoughtful, thought... |
| 3824 | The Pakistan Pavilion at Expo is an absolute t... | [(North Macedonia pavilion), (Norway pavilion)... | [treasure, tremendously, trendy, triumph, triu... |
| 3825 | The #Pakistan Pavilion won Honorable Mention i... | [(North Macedonia pavilion), (Norway pavilion)... | [witty, won, wonder, wonderful, wonderfully] |
| 3826 | I love how Rizwan & Fakhar never let this ... | [(North Macedonia pavilion), (Norway pavilion)... | [warmly, warmth, wealthy, welcome, well] |
| 3827 | The Pakistan Pavilion @Expo2020Pak at @expo202... | [(North Macedonia pavilion), (Norway pavilion)... | [warmly, warmth, wealthy, welcome, well] |
| 3828 | The Pakistan Pavilion was honored to have Paki... | [(North Macedonia pavilion), (Norway pavilion)... | [win, windfall, winnable, winner, winners] |
| 3829 | As a country Pakistan does not impress much gl... | [(North Macedonia pavilion), (Norway pavilion)... | [win, windfall, winnable, winner, winners] |
| 3830 | Part of the world’s largest Holy Quran was rec... | [(North Macedonia pavilion), (Norway pavilion)... | [winning, wins, wisdom, wise, wisely] |
| 3831 | The Pakistan Pavilion was proud to unveil the ... | [(North Macedonia pavilion), (Norway pavilion)... | [winning, wins, wisdom, wise, wisely] |
| 3832 | Part of the world’s largest Holy Quran was rec... | [(North Macedonia pavilion), (Norway pavilion)... | [winning, wins, wisdom, wise, wisely] |
| 3833 | Part of the world’s largest Holy Quran was rec... | [(North Macedonia pavilion), (Norway pavilion)... | [winning, wins, wisdom, wise, wisely] |
| 3834 | Just 1 DAY LEFT FOR LEAP 2022, and our flight ... | [(North Macedonia pavilion), (Norway pavilion)... | [antithetical, anxieties, anxiety, anxious, an... |
| 3835 | come to Pakistan the beautiful country on the ... | [(North Macedonia pavilion), (Norway pavilion)... | [backwardness, backwood, backwoods, bad, badly] |
| 3836 | You know our color, right? IT'S BLUE!!! 💙\nSho... | [(North Macedonia pavilion), (Norway pavilion)... | [died, dies, difficult, difficulties, difficulty] |
| 3837 | @IpDaMan https://t.co/kR02ra5GNx Please Check!... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3838 | @IpDaMan https://t.co/kR02ranQ1F Please Check!... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3839 | Yesterday's magical performance at @expo2020du... | [(Philippines pavilion), (Poland pavilion), (P... | [thank, thankful, thinner, thoughtful, thought... |
| 3840 | Meet Ruslan Usachev — a popular video blogger,... | [(Russia pavilion), (Rwanda pavilion), (Saint ... | [thank, thankful, thinner, thoughtful, thought... |
| 3841 | @UN @UN_PGA @antonioguterres\n@KremlinRussia_E... | [(Ukraine pavilion), (United Arab Emirates pav... | [winning, wins, wisdom, wise, wisely] |
| 3842 | Pavel Volya — a Russian TV host, actor and Lya... | [(Russia pavilion), (Rwanda pavilion), (Saint ... | [warmly, warmth, wealthy, welcome, well] |
| 3843 | 4/5 Palestinian civil society has been calling... | [(Zambia pavilion), (Zimbabwe pavilion)] | [complex, complicated, complication, complicit... |
| 3844 | 1/5 #Expo2020 is ‘Celebrating Israel’ and, in ... | [(Zambia pavilion), (Zimbabwe pavilion)] | [supported, supporter, supporting, supportive,... |
| 3845 | We were thrilled to host His Excellency Hussai... | [(Samoa pavilion), (San Marino pavilion), (São... | [thoughtfulness, thrift, thrifty, thrill, thri... |
| 3846 | @expo2020dubai : Saudi Arabia’s pavilion is de... | [(Samoa pavilion), (San Marino pavilion), (São... | [togetherness, tolerable, toll-free, top, top-... |
| 3847 | We are thrilled to be exhibiting at Singapore'... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [thoughtfulness, thrift, thrifty, thrill, thri... |
| 3848 | The #Singapore Pavilion won Honorable Mention ... | [(Serbia pavilion), (Seychelles pavilion), (Si... | [witty, won, wonder, wonderful, wonderfully] |
| 3849 | @TeffuJoy @MmusiMaimane @kabelodick No I don’t... | [(Slovenia pavilion), (Solomon Islands pavilio... | [vouch, vouchsafe, warm, warmer, warmhearted] |
| 3850 | Slovenia is a country rich in forest, rivers, ... | [(Slovenia pavilion), (Solomon Islands pavilio... | [work, workable, worked, works, world-famous] |
| 3851 | Congrats to the 6️⃣ #EUeic companies selected ... | [(South Sudan pavilion), (Spain pavilion), (Sr... | [supported, supporter, supporting, supportive,... |
| 3852 | Together with @SSPHplus we brought @ATeatroDim... | [(Sweden pavilion), (Switzerland pavilion), (S... | [sustainability, sustainable, swank, swankier,... |
| 3853 | @uwuketz This small pavilion was a gift from t... | [(Thailand pavilion), (Timor-Leste pavilion), ... | [witty, won, wonder, wonderful, wonderfully] |
| 3854 | Staff at work 🇨🇭👷 \n\nBravo to all our staff f... | [(Sweden pavilion), (Switzerland pavilion), (S... | [work, workable, worked, works, world-famous] |
| 3855 | Heading back to the #Pacific to support the #U... | [(Thailand pavilion), (Timor-Leste pavilion), ... | [superbly, superior, superiority, supple, supp... |
| 3856 | Drinking my ginger tea which I got from the Th... | [(Thailand pavilion), (Timor-Leste pavilion), ... | [work, workable, worked, works, world-famous] |
| 3857 | @drshamamohd Shama, given the real video of In... | [(Thailand pavilion), (Timor-Leste pavilion), ... | [alienate, alienated, alienation, allegation, ... |
| 3858 | Had to visit the Uganda pavilion in da expo an... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [sumptuous, sumptuously, sumptuousness, super,... |
| 3859 | @JakeGagain https://t.co/e8rRPV4Mnd\n#niros #n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3860 | @JakeGagain https://t.co/e8rRPV4Mnd\n#niros #n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3861 | @JakeGagain https://t.co/e8rRPV4Mnd\n#niros #n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3862 | @klaraliron https://t.co/e8rRPV4Mnd\n#niros #n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3863 | @klaraliron https://t.co/e8rRPV4Mnd\n#niros #n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3864 | @klaraliron https://t.co/e8rRPV4Mnd\n#niros #n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3865 | @JakeGagain https://t.co/e8rRPV4Mnd\n#niros #n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3866 | @klaraliron https://t.co/e8rRPV4Mnd\n#niros #n... | [(Zambia pavilion), (Zimbabwe pavilion)] | [superbly, superior, superiority, supple, supp... |
| 3867 | #UruguayInDubai | The prestigious Uruguayan bo... | [(Ukraine pavilion), (United Arab Emirates pav... | [sustainability, sustainable, swank, swankier,... |
| 3868 | With my colleague and friend, his Excellency M... | [(Ukraine pavilion), (United Arab Emirates pav... | [thank, thankful, thinner, thoughtful, thought... |
| 3869 | there is a cupola on the top of 10s pavilion o... | [(Ukraine pavilion), (United Arab Emirates pav... | [togetherness, tolerable, toll-free, top, top-... |
df_unlabeled.shape
(3870, 3)
df_unlabeled.describe()
| body | countries | tags | |
|---|---|---|---|
| count | 3870 | 2902 | 2556 |
| unique | 3870 | 39 | 394 |
| top | VIDEO:\nPrime Minister, @EdNgirente officiates... | [(Tunisia pavilion), (Turkey pavilion), (Turkm... | [a+, abound, abounds, abundance, abundant] |
| freq | 1 | 808 | 440 |
df_unlabeled.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 3870 entries, 0 to 3869 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 body 3870 non-null object 1 countries 2902 non-null object 2 tags 2556 non-null object dtypes: object(3) memory usage: 90.8+ KB
For labelling of the tweets, a comparison of 3 different methodologies were subsequently used to guage on which approach would accurately label each tweet's sentiment. The labels used were Positive, Negative, Neutral, Spam and Hate which was then merged with our Negative class. Our original decision was to label approximately 20% to 30% of our corpus manually, from which we would then guage whether the labelling from TextBlob and Vader was accurate enough to automate the process. TextBlob returned an accuracy of 63.78% and Vader returned an accuracy of 66.17% on our manually labelled set of tweets. The results were deemed inadequet, hence our conclusion was that all tweets were to be labelled manually to ensure all labels were correct. To assist in labelling tweets manually, a website was built using the React JavaScript library and Firebase database to store our tweets. This helped us label tweets easily and in an efficient manner.
Click here to view our website
Once we finish labelling, we load our labelled tweets from our Firebase database in json format into a dataframe. We drop any tweets None type values leaving us with a total of 3854 tweets comprising of our 5 classes.
In the following cells we show our dataframe from tweets loaded from our completeLabelledTweets.json file which contains the tweet itself and the label.
# read final_tweets.json
with open('completeLabelledTweets.json', encoding="utf8") as f:
data = json.load(f)
df = pd.DataFrame.from_dict(data)
df = df[['body', 'label']]
df.dropna(inplace=True)
df
| body | label | |
|---|---|---|
| 0 | Wow, this gonna be an awesome performance. \n#... | Positive |
| 1 | We are excited to welcome @issfjo as a communi... | Positive |
| 2 | Catch a recap on https://t.co/iKOHLUidUv and j... | Spam |
| 3 | Are you wondering what the Dubai Expo is about... | Neutral |
| 4 | Come to #Expo2020 with your family and get mes... | Positive |
| 5 | Expo 2020’s UK pavilion showcases the first pr... | Neutral |
| 6 | South African 🇿🇦 Rapper \nrecording his new si... | Spam |
| 7 | South African 🇿🇦 Rapper \nrecording his new si... | Neutral |
| 8 | South African 🇿🇦 Rapper \nrecording his new si... | Spam |
| 9 | Dubai Expo 2020\n\n"Connecting Minds, Creating... | Neutral |
| 10 | We can make your dreams come true. #Belarus #I... | Spam |
| 11 | Let's take the first step together. #Uzbekista... | Neutral |
| 12 | Dubai ruler tours the pavilion of Germany at t... | Neutral |
| 13 | Discover Azerbaijan with Frisaga. #Ukraine #Uz... | Neutral |
| 14 | Rwanda National Day at #Expo2020Dubai \n\n#Her... | Positive |
| 15 | .\n\nThe fractional ownership investment at SL... | Spam |
| 16 | A scale model of Hyperloop is at the Spain Pav... | Positive |
| 17 | It was an honor inviting our friends from USA ... | Positive |
| 18 | Al Ali Yacht Celebrating #50th #nationaldayuae... | Spam |
| 19 | @AliZafarsays thank u for this... It was su h ... | Positive |
| 20 | #ExperienceIndia at the Nakheel Mall in Palm J... | Negative |
| 21 | Zimbabwe Deputy Minister of Health and Child C... | Neutral |
| 22 | Passionate dancers, romantic songs and delicio... | Positive |
| 23 | Expo 2020 Dubai’s Pakistan pavilion welcomes a... | Positive |
| 24 | "Breaking Barriers Through Digital Medicine" b... | Positive |
| 25 | ADPHC participated in 2 events held at #Expo20... | Neutral |
| 26 | Leading figure in Indipop and the Bollywood in... | Positive |
| 27 | Really great time in Dubai with customers and ... | Positive |
| 28 | Register for AED 100 at https://t.co/gH7N3bOrP... | Spam |
| 29 | Look: #Dubai gets Dh13-million ambulance respo... | Positive |
| 30 | Discover ideas and innovations for a more sust... | Positive |
| 31 | Self Storage Dubai provides flexible and conve... | Spam |
| 32 | Our world and our wellbeing are interconnected... | Positive |
| 33 | Expo 2020 Dubai hosts football legend Cristian... | Neutral |
| 34 | Look: #Dubai gets Dh13-million ambulance respo... | Positive |
| 35 | Dubai reveals the world’s fastest and most exp... | Positive |
| 36 | Get combos now. Pls log on https://t.co/kmmQQo... | Spam |
| 37 | Golf meets @EXPO2020Dubai 👋\n\n@Collin_Morikaw... | Positive |
| 38 | Our exhibition is presented in a tour format a... | Neutral |
| 39 | They are talking about Asiwaju traveling abroa... | Spam |
| 40 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | Positive |
| 41 | Good Morning ☀️☀️☀️ \nWishing you a sunny brig... | Spam |
| 42 | At 10am we're ready to welcome you. Book ahead... | Positive |
| 43 | Chairman of Abu Dhabi Executive Office visits ... | Neutral |
| 44 | To all the explorers, wanderers and travelers ... | Positive |
| 45 | Full Video Link : https://t.co/91DaOYmxfd\nCri... | Neutral |
| 46 | The view from the Morocco Pavilion #Expo2020Du... | Neutral |
| 47 | Highlights from Rwanda National Day at Dubai E... | Positive |
| 48 | @Tourism_gov_za @LindiweSisuluSA @TeamSA_Expo2... | Spam |
| 49 | Weakly supervised #DeepLearning models classif... | Spam |
| 50 | We are excited to announce the participation o... | Spam |
| 51 | 📽️ The moment Cristiano Ronaldo (@Cristiano) ... | Neutral |
| 52 | Join us at #expo2020 Dubai for a unique opport... | Positive |
| 53 | Cristiano Ronaldo was given a warm welcome at ... | Positive |
| 54 | #FrontPage today: Australian official praises ... | Positive |
| 55 | Dubai ruler meets with the Governor-General of... | Neutral |
| 56 | H.H. Sheikh Abdullah bin Zayed Al Nahyan, Mini... | Neutral |
| 57 | The National Day of principality of Andorra wa... | Positive |
| 58 | Highlights from Rwanda National Day at Expo 20... | Neutral |
| 59 | If a miner can successfully add a block to the... | Spam |
| 60 | @Ina_aIi00 Man said 4 hours seexo man | Spam |
| 61 | Somebody pinch me please!!!! #Expo2020Dubai #e... | Positive |
| 62 | Stray kids Exp2020 Dubai 🇦🇪performance in fr... | Neutral |
| 63 | Those who are able to read between the lines o... | Spam |
| 64 | We were already masked but my kids were really... | Positive |
| 65 | Finally!!!\n\n#Expo2020 #Dubai #Dubai2020Expo ... | Neutral |
| 66 | What a fabulous way to end the week! Meeting t... | Positive |
| 67 | Automatic Localization and Brand Detection of ... | Spam |
| 68 | Minister of State for Foreign Trade. The celeb... | Positive |
| 69 | @AshishJThakkar, Founder of Mara Group and Mar... | Neutral |
| 70 | #Expo2020 | @IsaMunozM rounded off a busy day ... | Neutral |
| 71 | #Expo2020 | @IsaMunozM met with @seedgroupme, ... | Neutral |
| 72 | #Expo2020Dubai | @IsaMunozM toured #Expo2020. ... | Positive |
| 73 | Met @Cristiano Ronaldo dos Santos Aveiro😭 Neve... | Spam |
| 74 | A jewel in the desert \n\n#jewel #desert #duba... | Spam |
| 75 | Dubai is ahead of the world. here the economy... | Neutral |
| 76 | The one and only @BalqeesFathi !\nYou set the ... | Positive |
| 77 | From that time till we did our part and being ... | Positive |
| 78 | Visited Morocco again and it’s still one of my... | Positive |
| 79 | 'You are my motivation,' Ronaldo tells fans at... | Neutral |
| 80 | Rwandan PM Visits UAE Pavilion at Expo 2020 \n... | Neutral |
| 81 | You don't want to be the guy telling people to... | Positive |
| 82 | Great honor for me to accompany Madam Presiden... | Neutral |
| 83 | We are beyond excited to be part of “The year ... | Positive |
| 84 | Congrats to Kuwait for showcasing birds at #ex... | Neutral |
| 85 | Cristiano Ronaldo's Statements During his Visi... | Neutral |
| 86 | Grealish telling CR7 being his idol. Everyone ... | Spam |
| 87 | Never met a sunset I didn’t like 🌅 #expo2020 #... | Positive |
| 88 | Grealish at Expo 2020 Dubai now 😍\n#Grealish #... | Positive |
| 89 | Sheikh Mohammed fulfils Emirati boy’s wish to ... | Positive |
| 90 | Finishing up my trip to #Expo2020 thinking abo... | Neutral |
| 91 | I will be making an appearance in the @HIVEbyu... | Spam |
| 92 | 💢Cristiano Ronaldo talks about his love for #D... | Positive |
| 93 | Dubai Expo, paradise on earth #Expo2020Dubai #... | Positive |
| 94 | In a nutshell: the aggression and the declarat... | Spam |
| 95 | A glimpse of the most beautiful moments that v... | Positive |
| 96 | Discover what Scotland is doing to promote wel... | Positive |
| 97 | @NotHideko_ I actually wanna go xiis and check... | Spam |
| 98 | Professor @jasonleitch at the Scotland Digital... | Spam |
| 99 | #Bogota present at #Expo2020 through @investin... | Neutral |
| 100 | Accelerate #innovation in #HumanExperienceMana... | Neutral |
| 101 | Thousand of Fans gathered to greet RONALDO at ... | Neutral |
| 102 | @Nbarigye, CEO, Rwanda Finance Limited, will ... | Neutral |
| 103 | Our visitors enjoyed exploring coffee colors a... | Positive |
| 104 | #RTA informs you about the updated buses’ oper... | Neutral |
| 105 | See it on https://t.co/iKOHLUidUv and stay tun... | Positive |
| 106 | The #KuwaitPavilion at #Expo2020Dubai through ... | Neutral |
| 107 | .@TheMinimalists would maybe love the Terra Pa... | Positive |
| 108 | Relax with the aroma of coffee blends and ench... | Positive |
| 109 | Join Professor @jasonleitch at the Scotland Di... | Neutral |
| 110 | What a pleasure it is to welcome @Malala, her ... | Positive |
| 111 | Take part in a variety of fun activities at th... | Positive |
| 112 | Dubai #Expo2020\n\nEveryone else: LOOK AT WHAT... | Negative |
| 113 | We had such a wonderful time seeing all of you... | Positive |
| 114 | Watch this video and join us as we unpack how ... | Positive |
| 115 | The Black Eyed Peas MADE IT HAPPEN! The MEGA S... | Positive |
| 116 | In celebration of his country’s national day, ... | Positive |
| 117 | Relax with the aroma of coffee blends and enc ... | Positive |
| 118 | Ronaldo spoke about family, health, and motiva... | Positive |
| 119 | "Home is where love resides, memories are crea... | Positive |
| 120 | Emirates Airways Airbus A380-861 A6-EOT / ZRH ... | Neutral |
| 121 | Such a fab afternoon at #Expo2020 and an absol... | Positive |
| 122 | My lovely handmade crochet blanket \nThis beau... | Spam |
| 123 | We’re learning about women’s INCREDIBLE contri... | Spam |
| 124 | How could i miss an opportunity to see this ma... | Neutral |
| 125 | News: PM @EdNgirente will be speaking at #Rwan... | Neutral |
| 126 | Cristiano Ronaldo in #Dubai at the #expo2020 h... | Neutral |
| 127 | The Coffee Exhibition showcases the types of S... | Positive |
| 128 | We're excited about @ScotExpo2020's Digital He... | Positive |
| 129 | 🗓️ Join WDO Member @AndreuWorld on 31 January ... | Neutral |
| 130 | @girney_expo2020 ouh i see. i got different is... | Spam |
| 131 | Football legend Cristiano Ronaldo was the big ... | Positive |
| 132 | Of course the South Africa Expo2020 stand has ... | Negative |
| 133 | {New Article}\n\nIf you are in UAE, don’t miss... | Spam |
| 134 | @MimieLeesya I can't use anything like I can't... | Spam |
| 135 | During Health and Wellness Week, Professor Kho... | Neutral |
| 136 | @cakamanzi, CEO, Rwanda Development Board, wil... | Neutral |
| 137 | Alira has a special show due to a special tale... | Positive |
| 138 | You can now order a memento of your visit to t... | Positive |
| 139 | Amazing! The incredible Cristiano Ronaldo made... | Positive |
| 140 | Check out Noor & Hayat's new episode about... | Spam |
| 141 | Who else was at #Expo2020 to see @Cristiano to... | Neutral |
| 142 | Meanwhile in #Dubai #Expo2020 https://t.co/kOp... | Neutral |
| 143 | Scotland is set to showcase our Digital Health... | Neutral |
| 144 | Ronaldo at Dubai 😍\nCraze Level Infinity 🔥\n\n... | Positive |
| 145 | @girney_expo2020 yeah my ig down also | Spam |
| 146 | You can now order souvenirs from the #SaudiAra... | Positive |
| 147 | Watch this video and join us as we unpack how ... | Positive |
| 148 | #Cristiano_Ronaldo from #Expo2020 : I've neve... | Positive |
| 149 | The Great Indian Recipe Contest has started. A... | Neutral |
| 150 | Exciting news! In celebration of our milestone... | Positive |
| 151 | This! Was mad disappointed & very underwhe... | Negative |
| 152 | Record breaking goal scorer and legend footbal... | Positive |
| 153 | Waiting For @JackGrealish Entry \n\n#EXPO2020 ... | Neutral |
| 154 | Football legend Cristiano Ronaldo visits Expo ... | Positive |
| 155 | In partnership with @InsamlingChoice, we are t... | Positive |
| 156 | I would like to make the claim to fame that @N... | Neutral |
| 157 | I would like to make the claim to fame that @N... | Positive |
| 158 | Time for prayer is an important part of the pr... | Positive |
| 159 | Watch: @Cristiano Ronaldo visits #Expo2020Duba... | Positive |
| 160 | Oh hey Grealish #Expo2020 https://t.co/7wxW5l8nvB | Neutral |
| 161 | Designed by #MatteoBelletti, a 24-year-old stu... | Neutral |
| 162 | During Health Week at Expo2020, we’re turning ... | Neutral |
| 163 | 🚨 The news we’ve all been waiting for! 🚨 Our E... | Positive |
| 164 | Sheikh Hamdan bin Mohammed, #crown #Prince of... | Neutral |
| 165 | ben and ben sa EXPO2020 pls 😭🤞🏼 | Neutral |
| 166 | Our #eForce Student Formula Team will present ... | Neutral |
| 167 | Sheikh Hamdan bin Mohammed, Crown Prince of Du... | Neutral |
| 168 | Kolhapuri chappals are Indian decorative hand-... | Spam |
| 169 | Hon. @habyarimanab, Minister of Trade and Indu... | Neutral |
| 170 | The Sports Boulevard Project @SportsBlvdSA in ... | Positive |
| 171 | Football legend Cristiano Ronaldo tours Expo 2... | Positive |
| 172 | Coming up at @UKPavilion2020 on Thursday the 1... | Neutral |
| 173 | Ronaldo just being Ronaldo. \n#ManUtd #Expo202... | Neutral |
| 174 | 🎉 🎉 🎉 The @ParksCanada mascot, Parka, is makin... | Neutral |
| 175 | It was great to see Mariarosa Cutillo at #UNHu... | Positive |
| 176 | Important event re #UAE #Expo2020- not to miss... | Positive |
| 177 | Small gems in small pavilions: Fiji, Montenegr... | Positive |
| 178 | Automatic Diagnosis Labeling of Cardiovascular... | Spam |
| 179 | KENYA MEANS BUSINESS AT #EXPO2020\nKenya plans... | Neutral |
| 180 | #BREAKING\n\n#Expo Dubai, To be safe... we rep... | Hate |
| 181 | Legend\n💎💎💎💎💎💎💎💎\n#بلقيس_اكسبو_دبي #Expo2020 h... | Neutral |
| 182 | Moving different living in Dubai 🇦🇪 not a vac... | Spam |
| 183 | The moment @Cristiano came up to the stage at ... | Neutral |
| 184 | Beautiful @Talabat #Dubai #mydubai #talabat #t... | Positive |
| 185 | Kolhapuri chappals are made from leather that ... | Spam |
| 186 | How can a hospital be bigger without growing? ... | Neutral |
| 187 | Check out today's #FreeFriday @Radiology_AI ar... | Spam |
| 188 | i saw Cristiano Ronaldo today at Expo2020 Duba... | Neutral |
| 189 | Oh hey @Cristiano #Expo2020 https://t.co/Gkiya... | Neutral |
| 190 | Premier League Stars enjoying the winter break... | Neutral |
| 191 | 2/2\n🗓 February 2nd to 8th, 2022\n⏰ 10am to 10... | Neutral |
| 192 | @LynnHolliday8 @Dr_FarrisD These robots are al... | Positive |
| 193 | Yellow Friday with Ronaldo @Cristiano 🐐!! 💛\n\... | Neutral |
| 194 | Unreal scenes at Expo 2020 as Cristiano Ronald... | Positive |
| 195 | Get ready to celebrate our #Expo2020 National ... | Positive |
| 196 | My GOAT @Cristiano 🤩#expo2020 https://t.co/nNm... | Positive |
| 197 | Join us at Expo 2020 Dubai as we celebrate Spa... | Positive |
| 198 | @Tourism_gov_za - is there a response to this ... | Negative |
| 199 | On vacation with Cristiano Ronaldo live at Al ... | Neutral |
| 200 | Math notes \n#math #maths #distancelearning #e... | Spam |
| 201 | A leader is someone who leads through example ... | Spam |
| 202 | 1/2 Come discover @TheSDY Exhibition of the UN... | Positive |
| 203 | The India Pavilion at EXPO2020 Dubai will host... | Positive |
| 204 | With more than 770 life sciences organisations... | Spam |
| 205 | Boost your signal with #Lamatel high gain &... | Spam |
| 206 | AIM 2022 Startup welcomes https://t.co/6ATiirg... | Spam |
| 207 | "Clue No.1 🗝 She is powerful. She is fearless.... | Spam |
| 208 | That's it from the goat. Unreal scenes #Expo20... | Positive |
| 209 | The goat in Expo2020 😢🤍🤍 https://t.co/aQm7mcmTrc | Neutral |
| 210 | Our #SheerCurtains Abu Dhabi are famous for th... | Spam |
| 211 | Upholstery Abu Dhabi is one of the best suppli... | Spam |
| 212 | #PersianRugs Abu Dhabi previously knots by nom... | Spam |
| 213 | In this special day for Rwanda, a delegation o... | Positive |
| 214 | We sell numerous curtains in #DragonMart, whic... | Spam |
| 215 | We are skilled in repairing all types of beds,... | Spam |
| 216 | Cristiano Ronaldo live right now at @expo2020d... | Neutral |
| 217 | #HotExpoOffers Clearance offer on a variety of... | Spam |
| 218 | The first steps to a "breathtaking journey int... | Positive |
| 219 | #MotorizedCurtains are a piece of delicately d... | Spam |
| 220 | If you want to give an absolute look to the in... | Spam |
| 221 | How Humans Heal — Expo 2020’s curated visitor ... | Neutral |
| 222 | #HotExpoOffers Clearance offer on a variety of... | Spam |
| 223 | #capitalcom \n#winter\n#مرسول_بارك\n#AskShadab... | Spam |
| 224 | @Annamartling at @karolinskainst and Ebba Hall... | Neutral |
| 225 | Hon. @MusoniPaula, Minister of ICT and Innovat... | Neutral |
| 226 | Amazing Finnish pavilion, great iHAC space pro... | Positive |
| 227 | You couldn’t be more centrally located in Duba... | Spam |
| 228 | Wizards, are you ready for the TCS IT Wiz - UA... | Positive |
| 229 | Discover Haus 51 bespoke services, call us on ... | Spam |
| 230 | For a smooth, hassle free travel, Book an amaz... | Spam |
| 231 | Explore the world of sports and fitness at the... | Positive |
| 232 | All of the UAE is at the #Expo2020 to see the... | Positive |
| 233 | #Thailand invites #UAE to engage in contract #... | Positive |
| 234 | **Travel news update**\n.\nThe United Arab Emi... | Spam |
| 235 | @TalkitAfrica merch is ready\nY'all can start... | Neutral |
| 236 | JUST IN:\nOn behalf of President Paul Kagame, ... | Positive |
| 237 | Celebrity Chef #CarlaHall is on #StudioExpo sh... | Positive |
| 238 | Five #Kiwi artists have joined forces at #Expo... | Positive |
| 239 | Dubai Bags Record for World’s Largest Inflatab... | Positive |
| 240 | MCCLAREN 720S SPIDER -Most convertible superc... | Spam |
| 241 | Shankar–Ehsaan–Loy, the award-winning trio fro... | Positive |
| 242 | Celebrating the dedication of #WorldSecurity e... | Positive |
| 243 | Are you ready world? Tonight the Queen is goin... | Positive |
| 244 | As a homegrown company and one of the fastest ... | Positive |
| 245 | The #GCC Pavilion at #Expo2020 #Dubai conclude... | Neutral |
| 246 | Day 120 of 182! Comment 🍃 if you’re planning t... | Positive |
| 247 | Commissioner General of Expo 2020 Dubai. The o... | Positive |
| 248 | Kolhapuri chappla can be dated back to the 13t... | Positive |
| 249 | Sheikh Hamdan visits DP World Pavilion at #Exp... | Neutral |
| 250 | Join us for the long-awaited #SpainDay at #Exp... | Positive |
| 251 | Fire hydrants at Austria Pavilion are really i... | Neutral |
| 252 | Delicious Curries #motimahal #bahrain #juffair... | Spam |
| 253 | Stuffed Potatoes #motimahal #bahrain #juffair ... | Spam |
| 254 | Sizzlings #motimahal #bahrain #juffair #dubai ... | Spam |
| 255 | We Use Only Quality Natural Spices #motimahal ... | Spam |
| 256 | :::TODAY:::\n#Andorra @Expo2020Dubai \n#Expo2... | Neutral |
| 257 | :::TODAY:::\n#Andorra @Expo2020Dubai \n#Expo2... | Neutral |
| 258 | With our partner Bank of Africa we combine the... | Neutral |
| 259 | At this week's @expo2020dubai, our VP of Sales... | Neutral |
| 260 | Delicious Chicken Afghani #motimahal #bahrain ... | Spam |
| 261 | Delicious Goan Shrimp Curry #motimahal #bahrai... | Spam |
| 262 | Delicious #motimahal #bahrain #juffair #dubai ... | Positive |
| 263 | Waiting for the GOAT #Expo2020 \nSUUUUUIIIIIII... | Neutral |
| 264 | 【Last Day】\nVisitors from all over the world s... | Positive |
| 265 | Quality First at #motimahal #bahrain #juffair ... | Positive |
| 266 | Our Famous Fish Curry #motimahal #bahrain #juf... | Spam |
| 267 | Quality First at #motimahal #bahrain #juffair ... | Spam |
| 268 | World’s Highest SkyView Glass Slide and Glass ... | Spam |
| 269 | Camera doesn't do it justice 🙄 https://t.co/Ur... | Spam |
| 270 | 📢@EquidemOrg is launching a major report on ra... | Negative |
| 271 | Delicious Shrimp Lasooni #motimahal #bahrain #... | Positive |
| 272 | Pleased to announce that we have filled this v... | Spam |
| 273 | Introducing this week's theme week, "Health &a... | Positive |
| 274 | Quality First at #motimahal #bahrain #juffair ... | Positive |
| 275 | A snap of architecture at @expo2020dubai has c... | Positive |
| 276 | Today we are excited to celebrate Andorra 🙌\n... | Positive |
| 277 | CR7, the international superstar @Cristiano is... | Positive |
| 278 | #IndiaPavilion has had over 8,500,000 visitors... | Positive |
| 279 | Participate in a unique on-site #HXM innovatio... | Spam |
| 280 | Rwanda is hosting the Rwanda Business Forum al... | Neutral |
| 281 | The stage is set. Waiting to catch a glimpse o... | Positive |
| 282 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | Spam |
| 283 | #MTC #MalaysianTimberCouncil #KayuKayanKomodit... | Spam |
| 284 | Black Eyed Peas sang "I got a feeling at #Expo... | Neutral |
| 285 | We partnered with Enterprise Estonia to host a... | Neutral |
| 286 | Participate in a unique on-site #HXM innovatio... | Positive |
| 287 | @COP26 Respect the rights of #indigenouspeople... | Spam |
| 288 | AFRICAN COUNTRIES EMBRACE INTRA AFRICAN TRADE\... | Positive |
| 289 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 290 | The full video of #Solomon Pavilion - Ocean of... | Neutral |
| 291 | Rwanda is hosting the Rwanda Business Forum al... | Neutral |
| 292 | We are proud to join Scotland's Digital Health... | Positive |
| 293 | Expo 2020 Dubai Celebrates International Day o... | Positive |
| 294 | Challenge your imagination, and see the wonder... | Positive |
| 295 | Challenge your imagination, and see the wonder... | Positive |
| 296 | @expo2020dubai @FrontlineUAE unfortunately the... | Negative |
| 297 | The #GCC Pavilion at #Expo2020 #Dubai hosts a ... | Neutral |
| 298 | Explore the World`s newest republic - #Barbado... | Positive |
| 299 | #جمعة_مباركة\n#يوم_الجمعة\n#ادعيه\n#مساء_الخير... | Spam |
| 300 | The Sustainability Pavilion at #Expo2020 is a ... | Positive |
| 301 | Through the eyes of our special guests, here's... | Positive |
| 302 | @harishbpuri she would have discussed with "hu... | Neutral |
| 303 | Register and join the discussion at virtual Ex... | Neutral |
| 304 | #AlibabaCloud's CDN isn't just helping MNC, In... | Positive |
| 305 | Head to our courtyard to see 🇳🇿 Chefs Kasey an... | Neutral |
| 306 | The discussion session held at #Expo2020 on Sa... | Positive |
| 307 | Got your Expo Kids’ Camp stamp yet? This weeke... | Positive |
| 308 | The famous Maternity package at Finland Pavili... | Positive |
| 309 | Buy and sell foreign currencies\nconfidently\n... | Spam |
| 310 | The #UAE is hosting discussions on ways to bui... | Positive |
| 311 | Kolhapuri chappals are Indian decorative hand-... | Spam |
| 312 | Take part in the #UAE_Innovates events at Expo... | Neutral |
| 313 | Scotland hosted a fantastic Digital Health and... | Positive |
| 314 | NEW ROLE - Senior Marketing Manager – GCC\nAPP... | Spam |
| 315 | Join the interactive and informative workshops... | Neutral |
| 316 | Kolhapuri chappals are Indian decorative hand-... | Spam |
| 317 | Today’s business highlights at Expo 2020 Dubai... | Neutral |
| 318 | #Expo2020 \n#Expo2020\nthe best place to be @m... | Positive |
| 319 | Cristiano Ronaldo to visit the @expo2020dubai\... | Neutral |
| 320 | For the International Day of Education, Expo 2... | Positive |
| 321 | A very important moment for the Jewish communi... | Positive |
| 322 | #Expo2020 and event you really need to attend!... | Positive |
| 323 | What did the camel say to the Oasis? I’ll neve... | Spam |
| 324 | We wish all our lovely ladies worldwide a mean... | Positive |
| 325 | @Dr_FarrisD #Expo2020 has robots telling us to... | Neutral |
| 326 | @gccia Hosts Workshop on #Cyber #Security Str... | Neutral |
| 327 | Congratulations to @CrescentPetrol on going li... | Positive |
| 328 | Share your photos or videos on Instagram with ... | Positive |
| 329 | Off to #Expo2020 | Neutral |
| 330 | That’s Some of what’s special about us #learna... | Positive |
| 331 | LET'S GET FILIPINO! The FIESTAVAGANZA at the B... | Neutral |
| 332 | One of the most beautiful and exciting places ... | Spam |
| 333 | AquaFun gave Expo 2020 Dubai special tribute i... | Positive |
| 334 | Simply register at Premier Online and meet us ... | Neutral |
| 335 | Certainly not to be missed if you are part of ... | Positive |
| 336 | Enjoy the magic of Dubai #Expo2020 with reliab... | Positive |
| 337 | Training and having fun at the same time… 💜💜💜 ... | Positive |
| 338 | Do you want to have an immersive experience at... | Positive |
| 339 | Good morning from #Expo2020 https://t.co/lUJNT... | Neutral |
| 340 | So starts #expo2020 tweets \n\nParked at oppor... | Positive |
| 341 | @GFItaliano @Agenzia_Ansa @ItalyExpo2020 @ITAD... | Positive |
| 342 | Saudi’s largest-ever tech event, LEAP, to take... | Spam |
| 343 | Here are top #Expo2020 #Dubai \n#Expo2020Dubai... | Positive |
| 344 | Join the Health & Wellness Theme Week at @... | Neutral |
| 345 | Sachin Nautiyal steps out of range of Sajid Ab... | Spam |
| 346 | It’s time to open an account!\n#businessadviso... | Spam |
| 347 | ST.REGIS BY EMAAR DUBAI DOWNTOWN +971585554400... | Spam |
| 348 | @Sepc_India takes a business delegation to Wor... | Positive |
| 349 | Good Morning to Ronaldo fans only and to the l... | Positive |
| 350 | Expo 2020 Dubai’s Israel pavilion honours the ... | Positive |
| 351 | #DeepLearning to detect air-trapping in the lu... | Spam |
| 352 | Are you ready to welcome CR7 in Dubai #Expo202... | Neutral |
| 353 | Participate in a unique on-site #HXM innovatio... | Positive |
| 354 | FTA continues the review of redetermining pena... | Spam |
| 355 | Our world and our wellbeing is interconnected ... | Positive |
| 356 | We’re learning about Arab and Muslim women’s I... | Positive |
| 357 | How is Scotland using technology to transform ... | Neutral |
| 358 | @ElenaSkater82 @expo2020schools @expo2020 @gem... | Spam |
| 359 | That's a good idea\n#uae #dubai #expo2020 #pla... | Positive |
| 360 | The #CommercialCarpentry Building Services are... | Spam |
| 361 | Artificial Turf is made and composed of differ... | Spam |
| 362 | https://t.co/73xWf33CHb has been serving as on... | Spam |
| 363 | #HotExpoOffers Clearance offer on a variety of... | Spam |
| 364 | #ArtificialGrassDubai supply the variety of #V... | Spam |
| 365 | Hence out services are offered at #KitchenViny... | Spam |
| 366 | Dubai Ruler, Crown Prince and football legend ... | Neutral |
| 367 | #HotExpoOffers Clearance offer on a variety of... | Spam |
| 368 | #HotExpoOffers Clearance offer on a variety of... | Spam |
| 369 | Today’s Tuesdays@expo session tackled ways to ... | Neutral |
| 370 | Our #LinoleumFloorings Abu Dhabi are best for ... | Spam |
| 371 | The #LaboratoriesVinylFlooring also contains a... | Spam |
| 372 | #HotExpoOffers Clearance offer on a variety of... | Spam |
| 373 | #HotExpoOffers Clearance offer on a variety of... | Spam |
| 374 | #HotExpoOffers Clearance offer on a variety of... | Spam |
| 375 | #HotExpoOffers Clearance offer on a variety of... | Spam |
| 376 | There are two basic ways the #MotorizedBlinds ... | Spam |
| 377 | https://t.co/2i9anusfQx present you latest #Ba... | Spam |
| 378 | Dubai Expo 2020 includes some of the most inno... | Positive |
| 379 | At #DubaiInteriors we provide best quality #Bl... | Spam |
| 380 | Listen/Watch the full performance ‘Beyond the ... | Neutral |
| 381 | #RisalaFurniture offers high quality #Shutter ... | Spam |
| 382 | #CarpetsDubai have the most first rate excelle... | Spam |
| 383 | #InteriorsDubai is one of the largest supplier... | Spam |
| 384 | The perfect way for decorating your floor is t... | Spam |
| 385 | #ParquetFlooring is one of the largest manufac... | Spam |
| 386 | If a miner can successfully add a block to the... | Spam |
| 387 | If a miner can successfully add a block to the... | Spam |
| 388 | Is anyone elses Instagram down | Spam |
| 389 | If a miner can successfully add a block to the... | Spam |
| 390 | If a miner can successfully add a block to the... | Spam |
| 391 | "#Precisionmedicine is about all the omics," s... | Spam |
| 392 | If a miner can successfully add a block to the... | Spam |
| 393 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 394 | Expo2020 Dubai celebrates unsung frontline her... | Positive |
| 395 | Can you name the brand of that cervical spine ... | Spam |
| 396 | In Video: Visit Australian Pavilion at Expo 20... | Positive |
| 397 | HE Noura bint Mohammed Al Kaabi Launches World... | Neutral |
| 398 | I'm happy to announce that together with piani... | Positive |
| 399 | @MonicaK2511 @drshamamohd PM Modi was schedule... | Positive |
| 400 | Slovakia celebrates its National Day at #Expo2... | Positive |
| 401 | @Cristiano \nThese children killed by UAE gove... | Hate |
| 402 | BEYOND THE STARS: ❤️🔥\n\n ---✨🌟✨---\n\n... | Neutral |
| 403 | January 27 was Slovakia's National Day at #Exp... | Neutral |
| 404 | Dr. @NayyarUjala traveled to #Expo2020 from #P... | Positive |
| 405 | The largest spinning wheel in the world\n\n#ex... | Positive |
| 406 | CR7, the international superstar, is visiting ... | Positive |
| 407 | CR7, the international superstar, is visiting ... | Positive |
| 408 | Sky above, sand below, peace within.\n\n#sky #... | Spam |
| 409 | Good night Dubai #Expo2020 #ExpoDubai2020 #MyD... | Neutral |
| 410 | Sky above, sand below, peace within. \n\n#dese... | Positive |
| 411 | @Contact_AMI #AMIPVC #pfas #pvc #foreverchemic... | Spam |
| 412 | The heart of Expo, Al Wasl Plaza beats in blue... | Positive |
| 413 | Today’s Tuesdays@expo session tackled ways to ... | Positive |
| 414 | Only 3 days left until the 4th edition of #RTA... | Positive |
| 415 | @drshamamohd Yes it's true i have been to the ... | Negative |
| 416 | Here are #Expo2020 moments \n#Expo2020Dubai \n... | Neutral |
| 417 | Man City star Ruben Dias visits #Expo2020 #Dub... | Neutral |
| 418 | @LahaneTanisha Well the opensea announcement h... | Spam |
| 419 | Join us for “Preventing & Preparing to Bea... | Neutral |
| 420 | @Bernie_Straw Nice, check out my collection\n\... | Spam |
| 421 | The official ceremony in Al Wasl Plaza include... | Positive |
| 422 | Pakistany Singer 🇵🇰 recording time 😎\n#gtrreco... | Spam |
| 423 | Pakistany Singer 🇵🇰 recording time 😎\n#gtrreco... | Spam |
| 424 | COVID-19 affected women disproportionately in ... | Neutral |
| 425 | Pakistany Singer 🇵🇰 recording time 😎\n#gtrreco... | Spam |
| 426 | What a day! Great to have our guests from Etis... | Positive |
| 427 | UAE Minister of Climate Change and the Environ... | Positive |
| 428 | Dear @KHDA , genuine question…no drama…\n\nAny... | Positive |
| 429 | 🏴Scotland’s digital healthcare event @ex... | Positive |
| 430 | Relax with the aroma of coffee blends and ench... | Positive |
| 431 | David Russell from our team is looking forward... | Neutral |
| 432 | Me to the somaliland government so they can fr... | Spam |
| 433 | Mahhddd o! 🤩💃🏾🔥🎆🤸🏾♀️🎇❣🎉👏🏾🎊👊🏾🎈⚽️🏆🥇👑🇦🇪\n\n@Cris... | Positive |
| 434 | A gift from the heavens at the Czech Republic ... | Positive |
| 435 | Shamma bint Suhail Al Mazrouei, Minister of St... | Neutral |
| 436 | HH Sheikh Hamdan bin Mohammed bin Rashid: we l... | Neutral |
| 437 | 2/2 Learn more about it at the Morocco Pavillo... | Neutral |
| 438 | Interspersed with a series of events that adde... | Positive |
| 439 | WHO WILL TAKE THE CROWN?\n\nTune in on the 28 ... | Spam |
| 440 | As we wrap up the last day of #DIPMF, we would... | Positive |
| 441 | #USAPavilion Commissioner General Bob Clark an... | Neutral |
| 442 | @RGVzoomin Dont get it in pic u are high or wh... | Spam |
| 443 | Enjoy the closing performances of Saudi Coffee... | Positive |
| 444 | Speaker National Assembly of Pakistan @AsadQai... | Spam |
| 445 | During Saudi Coffee Week at the #SaudiArabia P... | Positive |
| 446 | The Malaysian Rubber Council is showcasing mad... | Neutral |
| 447 | Find out more about Zero-Energy Buildings and ... | Neutral |
| 448 | CR7, the international superstar, is visiting ... | Positive |
| 449 | What a sacred, Mind blowing composition! breat... | Positive |
| 450 | With the delicious aromas and flavors of each ... | Positive |
| 451 | If a miner can successfully add a block to the... | Spam |
| 452 | @Verofax & @distichain are excited to brin... | Spam |
| 453 | As Expo 2020's premier technology partner, SAP... | Neutral |
| 454 | A nice visitor on a beautiful day at ZRH airpo... | Positive |
| 455 | Incredible - Holocaust Remembrance Ceremony in... | Positive |
| 456 | @IrelandatExpo @expo2020dubai @NCH_Music What ... | Positive |
| 457 | HAPPINESS comes from your own ACTION!\n\nThank... | Positive |
| 458 | @neofmx Hi, We do recommend that you visit the... | Spam |
| 459 | Incredible - Holocaust Remembrance Ceremony in... | Positive |
| 460 | I love you 🥺😘\n#البرنسيسة #ديانا_حداد #princes... | Spam |
| 461 | Such a beauty is rare 💫🎶🌟! masterpieces! Breat... | Positive |
| 462 | Incredible - Holocaust Remembrance Ceremony in... | Positive |
| 463 | Incredible - Holocaust Remembrance Ceremony in... | Positive |
| 464 | Want to go on a tour of the universe? We invit... | Positive |
| 465 | A huge worldwide THANK YOU to the Unsung Heroe... | Neutral |
| 466 | Today we were honoured with a special visit fr... | Positive |
| 467 | International Holocaust Remembrance Day is bei... | Positive |
| 468 | Mentioning the #HolocaustRemembranceDay at Isr... | Positive |
| 469 | Dubai is getting ready for the Union Fortress ... | Positive |
| 470 | Bidriware is a metal handicraft from Bidar. Th... | Spam |
| 471 | One more for the #thursdayvibes #Expo2020 #Exp... | Neutral |
| 472 | Two weeks till UK National Day on 10 Feb 2022 ... | Positive |
| 473 | We're delighted to be at the Digital Health &a... | Positive |
| 474 | “There is nothing to despair about my age. Ple... | Spam |
| 475 | The session is free for Expo ticket holders. S... | Neutral |
| 476 | #WeRemember #israeli pavilion at #expo2020 obs... | Positive |
| 477 | On set again today with this awesome crew! Lot... | Positive |
| 478 | #Expo2020\nSo proud 🇸🇦🤍 https://t.co/wuVJhmvZM1 | Positive |
| 479 | Dr Kandan was inspired in his design of the so... | Positive |
| 480 | Human Fraternity Festival begins tomorrow at \... | Positive |
| 481 | Great things can be done when everyone works t... | Positive |
| 482 | HM Ambassador highlighting what the U.K. has t... | Positive |
| 483 | Dive Through KSA Pavilion @expo2020dubai @ksaP... | Neutral |
| 484 | Our encounter with Continental Asia establishe... | Positive |
| 485 | Join our Digital Health and Wellness virtual e... | Neutral |
| 486 | Our 1-Day Expo Tickets are now ONLY AED 45! Vi... | Neutral |
| 487 | Day -5 to #Rwanda National Day at #Expo2020 \n... | Positive |
| 488 | The intelligence agencies of the United Arab E... | Spam |
| 489 | Experience the UAEU Pavilion in 360 degree thr... | Positive |
| 490 | @aly_j15 @theafriyie_ Because there's a media ... | Hate |
| 491 | The National Institute for Hospitality and Tou... | Positive |
| 492 | Earlier this week, Dr Kandan spoke at #Expo202... | Neutral |
| 493 | All my #Indian fellows and friends do visit #E... | Positive |
| 494 | Rúben Dias—Manchester City and Portugal defend... | Positive |
| 495 | A successful ending!\nThe sundown of Arab Heal... | Positive |
| 496 | I’m planning a trip to Expo with the family. W... | Neutral |
| 497 | Mr. Saqr Ereiqat, Co-Founder & Managing Pa... | Neutral |
| 498 | Here are highlights from the keynote speech de... | Neutral |
| 499 | Dr. Tali Sharot, an academic and researcher in... | Neutral |
| 500 | Afghanistan pavilion features Jewish art #expo... | Neutral |
| 501 | Such as preparing appropriate management strat... | Neutral |
| 502 | #Expo2020 #Dubai Not safe We recommend a secon... | Hate |
| 503 | Tonight, at #Expo2020 in front of the spectacu... | Neutral |
| 504 | Jane Witherspoon will lead the ‘Stakeholder Ma... | Neutral |
| 505 | @aajtakorgin Yemen has just started operations... | Hate |
| 506 | @aajtakorgin Americans only were able to inter... | Hate |
| 507 | A great panel discussion highlighting how comb... | Positive |
| 508 | H.E. shared his experiences in the field while... | Neutral |
| 509 | The Syrian Rhapsody by Iyad Rimawi\n\nDate: Fe... | Neutral |
| 510 | We are excited to have @BrianHills @DataLabSco... | Positive |
| 511 | Upcoming events at #Expo2020 to focus on prepp... | Positive |
| 512 | Hopefully get to meet Ronaldo tomorrow. Beyond... | Positive |
| 513 | @Yahya_Saree #breaking Yemeni Army spokman .. ... | Hate |
| 514 | Australian thought leaders and visionaries wil... | Neutral |
| 515 | Teaming up with Scotland’s health tech ecosyst... | Positive |
| 516 | With aromas of the finest coffee and the melod... | Positive |
| 517 | The brightly colored Channapatna wooden toys h... | Spam |
| 518 | Robotic Flowers In Expo 2020 Dubai with flower... | Positive |
| 519 | What a day! Great to have our guests from Etis... | Positive |
| 520 | The $150 million India-UAE VC (venture capital... | Neutral |
| 521 | A Science Potion Image From Expo 2020 Dubai\n#... | Neutral |
| 522 | Visit the #KuwaitPavilion at #Expo2020Dubai to... | Neutral |
| 523 | Upcoming events at #Expo2020 to focus on prepp... | Neutral |
| 524 | @expo2020dubai Warning, we reiterate to indivi... | Hate |
| 525 | SHE’S HERE! Don’t miss the chance to see pop s... | Positive |
| 526 | Malaysian Pavilion at Expo 2020 Dubai Invites ... | Positive |
| 527 | Snack time - Expo moment\nDubai @ 12.12.2021\n... | Neutral |
| 528 | Eat and save! Go for these affordable must-try... | Positive |
| 529 | Last meal in Dubai😭😭😭😭😭#Expo2020 https://t.co/... | Negative |
| 530 | Looking forward to speaking at this today - Sh... | Positive |
| 531 | Discusses #project_management's capability and... | Positive |
| 532 | As the Official Logistics Partner of #Expo2020... | Positive |
| 533 | It is hard to imagine how we will tackle the #... | Neutral |
| 534 | The Great Indian Recipe Contest has started. A... | Positive |
| 535 | @SpaceX @elonmusk #breaking Yemeni Army spokma... | Spam |
| 536 | #AlWaslDome #Expo2020 latest most favorite pla... | Positive |
| 537 | With correct information, contributes to envis... | Spam |
| 538 | Tomorrow at @ExpoUpdate in Dubai is Mölnlycke ... | Neutral |
| 539 | LAMBORGHINI URUS MANSORY SOFT\nBODY KIT\n▪️YEA... | Spam |
| 540 | A new flow of life coming soon. Alaya Beach at... | Spam |
| 541 | Kingdom of Saudi Arabia Pavilion. \n\nI wish I... | Positive |
| 542 | All You Need to Know about Expo 2020 Dubai Mom... | Neutral |
| 543 | Who are set to share with the attendees and pa... | Neutral |
| 544 | Villanova-La Violeta featuring 3 and 4 bedroom... | Spam |
| 545 | Assessing Methods and Tools to Improve Reporti... | Neutral |
| 546 | #breaking Yemeni Army spokman .. New warning f... | Spam |
| 547 | Sustainable architecture is under scrutiny in ... | Negative |
| 548 | Sustainable architecture is under scrutiny in ... | Negative |
| 549 | Winners will be awarded during the #UAE Innova... | Positive |
| 550 | AIM 2022 Startup welcomes AutoBI !\nAutoBI is ... | Spam |
| 551 | euronews: Indian Pavilion at Expo 2020 Dubai h... | Positive |
| 552 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | Spam |
| 553 | If Not Now Then When??\n.\n.\n.\n.\n#throwback... | Neutral |
| 554 | VIPs from around the world visit the Japan Pav... | Positive |
| 555 | India Pavilion celebrates 73rd Republic Day at... | Positive |
| 556 | Eat and save! Go for these affordable must-try... | Positive |
| 557 | District 2020 - the planned legacy of resident... | Neutral |
| 558 | @army21ye #Expo2020 #Dubai Not safe We recomme... | Hate |
| 559 | ‘Why? The Musical’ At Expo 2020 Dubai\n#WhyThe... | Neutral |
| 560 | In just under 30 minutes I’ll be back with @Ma... | Neutral |
| 561 | Channapatna toys are part of a two-century-old... | Spam |
| 562 | CR7CR7, the international superstar, is visiti... | Positive |
| 563 | #ThrowbackThursday – A #DeepLearning method fo... | Spam |
| 564 | So here I am, at the Mexico’s pavilion of the ... | Positive |
| 565 | Sigh bwanaaa!! 🥺🙌🏾🙌🏾🙌🏾😩😩 Dubai here we come!! ... | Spam |
| 566 | @drshamamohd What these fake....contd:\nF. Ind... | Neutral |
| 567 | #Expo2020 in #Dubai postponed some events afte... | Negative |
| 568 | Transport Operations Team Leaders are always o... | Positive |
| 569 | #Expo2020 #Dubai Not safe We recommend a secon... | Hate |
| 570 | Discover Haus 51 bespoke services, call us on ... | Spam |
| 571 | It was a bittersweet decision. \n\nOn one hand... | Neutral |
| 572 | #repost\n\n@expo2020dubai\n\nCR7, the internat... | Positive |
| 573 | Christiano Ronaldo will be at #Expo2020Dubai t... | Neutral |
| 574 | When Women Thrive .. Humanity Thrive\n#Expo202... | Positive |
| 575 | We contribute towards Net Zero Emissions\n\n#s... | Spam |
| 576 | This past Monday, on my flight to Dubai on my ... | Neutral |
| 577 | Eyal Cohen was among yesterday's experts discu... | Neutral |
| 578 | “We have an incredible gratitude to offer our ... | Spam |
| 579 | Dr Ajai Chowdhry, HCL Founder announces launch... | Spam |
| 580 | @expo2020dubai #Expo2020 #Dubai Not safe We re... | Negative |
| 581 | @LottinPackeddd Just kidding bcoz its expo2020 | Neutral |
| 582 | HE Noura bint Mohammed Al Kaabi Meets UAE Thea... | Neutral |
| 583 | The brightly colored Channapatna wooden toys h... | Spam |
| 584 | I visited the immense construction site of the... | Neutral |
| 585 | “As a healthcare provider that day. It was my ... | Neutral |
| 586 | Meeting with the Presidential delegation of El... | Neutral |
| 587 | Looking forward to attending @expo2020dubai to... | Positive |
| 588 | “It is learned from the field that females are... | Neutral |
| 589 | @monscannapi introducing the Input Privacy-Pre... | Spam |
| 590 | “Expo restored our hope that life is going bac... | Positive |
| 591 | Happy Chinese new year 2022.\n#chinesenewyear ... | Spam |
| 592 | "To be able to fight the unknown, that is a wh... | Neutral |
| 593 | Attraction is key to gaining visitors. But if ... | Positive |
| 594 | How Do We Create Healthy & Happy World?\nF... | Neutral |
| 595 | https://t.co/CXvfbTrZzM\n\nGarden in the Sky J... | Positive |
| 596 | Manchester City and England midfielder Jack Gr... | Neutral |
| 597 | The story of Pamela Zeinoun, a nurse hero that... | Spam |
| 598 | World Expo2020, Dubai @expo2020dubai https:/... | Neutral |
| 599 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 600 | Wish I could visit #Expo2020 tomorrow just to ... | Neutral |
| 601 | ‘Why? The Musical’ is sweeping the audience aw... | Positive |
| 602 | These fascinating questions were at the heart ... | Positive |
| 603 | Home is fun when you have suitable facilities.... | Spam |
| 604 | UK showcases new product at #Expo2020 https://... | Neutral |
| 605 | Big day at #Expo2020 tomorrow! https://t.co/Vx... | Positive |
| 606 | Health Week begins today @expo2020dubai. As pa... | Positive |
| 607 | The “Eye and Stories” by an emirati artist cap... | Positive |
| 608 | Join us for an unforgettable night with the su... | Positive |
| 609 | discussion panel at #DIPMF, offering innovativ... | Neutral |
| 610 | The world discovers Torino 2025! 👇\n\nhttps://... | Spam |
| 611 | HE Zuzana Caputova, Madam President of the Slo... | Positive |
| 612 | Expo 2020 - Filipino 'Ben and Ben' concert pos... | Negative |
| 613 | The China Pavilion at Expo 2020 Dubai kicked o... | Positive |
| 614 | Women Empowerment: Shared EU-GCC Experiences7/... | Neutral |
| 615 | The eyewitness of Rashid Hussain baloch case, ... | Spam |
| 616 | The eyewitness of Rashid Hussain baloch case, ... | Spam |
| 617 | CR7, international superstar, is visiting #Exp... | Positive |
| 618 | Join #UNxEdpo & #Norway at #Expo2020 Monda... | Neutral |
| 619 | Are you at #EXPO2020 in Dubai? Don't miss the ... | Neutral |
| 620 | India Pavilion celebrates 73rd Republic Day at... | Positive |
| 621 | Come and join us and we will assist you\n📞Call... | Spam |
| 622 | Health & Wellness week until 2 February\n\... | Neutral |
| 623 | @EmCollingridge @manalajaj @UKPavilion2020 @vi... | Positive |
| 624 | #BREAKING\nYemen army's spokesman:\n\n“Expo Du... | Spam |
| 625 | Bringing together everyday heroes from around ... | Positive |
| 626 | #Expo2020 amazing https://t.co/2QALThs18O | Positive |
| 627 | At the 73rd Indian #RepublicDay cultural perfo... | Positive |
| 628 | Well. To be honest, I couldn’t help not to hv ... | Positive |
| 629 | My joy 🤍 can’t wait for tomorrows look!! I ado... | Positive |
| 630 | Eleonora Borisova delighting the audience with... | Positive |
| 631 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | Spam |
| 632 | #DIPMF’s panel discussion entitled ‘Project Ma... | Neutral |
| 633 | They need no introduction—Shankar–Ehsaan–Loy, ... | Positive |
| 634 | All my people in the #UAE get along to the Aus... | Positive |
| 635 | @DrVoetsek @TeamSA_Expo2020 Compare it to this... | Spam |
| 636 | Experience traditional beauty of Japanese cult... | Positive |
| 637 | Eleonora Borisova talked about the power of me... | Spam |
| 638 | "A few weeks into the pandemic, I could sense ... | Neutral |
| 639 | The young 🇳🇿 chefs from our restaurant #Tiaki ... | Neutral |
| 640 | "A few weeks into the pandemic, I could sense ... | Neutral |
| 641 | @WomenTribe_nfts 🚨EXCLUSIVE🚨 Put in your guess... | Spam |
| 642 | CR7, the international superstar, is visiting ... | Positive |
| 643 | Looking for an ERP for your small or medium bu... | Spam |
| 644 | Come check out some of 🇳🇿’s best street arts c... | Positive |
| 645 | We are excited to welcome @EndeavorJo as a com... | Positive |
| 646 | @k03_mani @expo2020schools @expo2020 @gemsnms_... | Positive |
| 647 | Third time visit lunch is always must be Korea... | Spam |
| 648 | So you know, I come to expo to explore food in... | Positive |
| 649 | [Mohammed Bin Rashid Centre for Government Inn... | Neutral |
| 650 | Get 𝐎𝐍𝐄 𝐌𝐎𝐍𝐓𝐇 𝐅𝐑𝐄𝐄 when you sign up for an Ann... | Spam |
| 651 | Find out how people, ideas & innovations c... | Positive |
| 652 | It’s Cristal clear that #UAE is not a peace lo... | Hate |
| 653 | The Art Listens created a curricular #mentalhe... | Positive |
| 654 | American comedian and actor Chris Tucker visit... | Positive |
| 655 | Learn about the most prominent practices and a... | Neutral |
| 656 | India Pavilion celebrates 73rd Republic Day at... | Positive |
| 657 | @Arsenal it was nice seeing you around @emirat... | Positive |
| 658 | 📸 from a visit to @expo2020dubai \n\nThere’s s... | Positive |
| 659 | My love 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | Spam |
| 660 | Be in awe of this experiment that has managed ... | Positive |
| 661 | At the @expo2020dubai we are showing the world... | Neutral |
| 662 | We don’t use tech because it’s fancy, we use i... | Positive |
| 663 | Award-winning actor Bryan Cranston, star of po... | Neutral |
| 664 | @HastingsPizza @elonmusk Why everyone is looki... | Spam |
| 665 | Work on Progress for UAE Innovates at EXPO2020... | Positive |
| 666 | Expo 2020 Dubai’s Malaysian pavilion hosts a k... | Spam |
| 667 | #istat today participates in #EXPO2020 'Mobili... | Positive |
| 668 | After a great Rwanda National day at #expo2020... | Positive |
| 669 | Pocket Gamer Connects is making a return to Lo... | Spam |
| 670 | Expo 2020 Dubai got the world under a roof Pho... | Positive |
| 671 | The sessions will be followed by a panel discu... | Neutral |
| 672 | Join us with Dr Keivan Javanshiri, MD, who wil... | Neutral |
| 673 | BRAZIL @ LAS PAVILION!\n\n" Families like fudg... | Positive |
| 674 | It's not yet too late to hop in the yellow tra... | Neutral |
| 675 | Road to 2025 - #Fisu world university games wi... | Neutral |
| 676 | PINS COLLECTOR @ LAS!\n\nCOLLECT things you LO... | Positive |
| 677 | Enhance your skills with the help of some work... | Positive |
| 678 | Hundreds of 'butterfly-shaped kites' to take t... | Positive |
| 679 | BEYOND THE STARS: ❤️🔥\n\n ---✨🌟✨---\n\n... | Positive |
| 680 | The boys posing for a photo outside the Emirat... | Neutral |
| 681 | Empower employees for success with step-by-ste... | Neutral |
| 682 | A new India-UAE VC Fund of $150 million was la... | Neutral |
| 683 | A better future needs to be a healthier one. #... | Neutral |
| 684 | 2tec2 doesn’t sit still, more so, it keeps com... | Spam |
| 685 | Britax Romer B-AGILE M Stroller for Group 01 ,... | Spam |
| 686 | NEW ROLE - Application Specialist – Hematology... | Spam |
| 687 | Black Eyed Peas @bep deliver a show in tune wi... | Positive |
| 688 | The #Expo2020 exhibition in #Dubai has announc... | Negative |
| 689 | #Expo2020Duba is still free for nannies and #R... | Neutral |
| 690 | #GoldenJubileeTour — Cyclists pedal from Abu D... | Positive |
| 691 | On behalf of H.E President Paul Kagame, Prime ... | Positive |
| 692 | Before #veganuary ends, you can still sample v... | Positive |
| 693 | @WiebeWkkr You'll love #Expo2020 it's amazing.... | Positive |
| 694 | Today’s business highlights at Expo 2020 Dubai... | Neutral |
| 695 | We would like YOU to join us at our #BigData e... | Neutral |
| 696 | Absolutely right .. #Expo2020 #اكتفاء #دبي #ال... | Spam |
| 697 | Contact with self storage Dubai for storage an... | Spam |
| 698 | The #UK Pavilion won our Best Exhibit award fo... | Positive |
| 699 | 📣Announcing phase 3 of #EnRouteExpo2020 challe... | Neutral |
| 700 | #Expo2020Dubai's #NewZealandPavilion restauran... | Positive |
| 701 | Celebrating Slovakia National Day at Expo 2020... | Positive |
| 702 | #breaking Yemeni Army spokman .. New warning f... | Spam |
| 703 | Learn more about the #Andorra Pavilion - Small... | Positive |
| 704 | We welcome each guest with a unique flower fro... | Positive |
| 705 | Day 2 of the Main #Forum event includes a vari... | Neutral |
| 706 | #HappeningNow\nDay 2 of the Cybersecurity Stra... | Neutral |
| 707 | Rosewood inlay work is unique to the region of... | Spam |
| 708 | Come and meet our team to explore our amazing ... | Positive |
| 709 | Almost 300 years of workmanship and dedication... | Spam |
| 710 | At #Expo2017, the #France Pavilion won our Edi... | Positive |
| 711 | Because children are from the sensory world #A... | Spam |
| 712 | Tune in for a very special panel discussion on... | Positive |
| 713 | @army21ye #breaking Yemeni Army spokman .. New... | Hate |
| 714 | Mysore Rosewood Inlay dates back to the era of... | Spam |
| 715 | "other SAFE, fun events." #UAE: your #Expo2020... | Hate |
| 716 | I go back to #Expo2020 to have the classic cus... | Positive |
| 717 | Gaming His Way to Success\nMohammed Yaseen of ... | Neutral |
| 718 | YOUR VOTE MATTERS \n\nTune in on the 28 Januar... | Spam |
| 719 | Join us at Expo 2020 Dubai as we celebrate the... | Positive |
| 720 | Expect the best!\n#Dubai #Entrepreneur #busine... | Spam |
| 721 | @EmCollingridge @manalajaj @expo2020dubai @UKP... | Positive |
| 722 | Good morning from expo2020 again 🥱💗 | Positive |
| 723 | The #USAPavilion welcomed delegates from the M... | Neutral |
| 724 | #breaking Yemeni Army spokman .. New warning f... | Hate |
| 725 | @ianetwork along with @ficci_india, MCA, and T... | Positive |
| 726 | Complimentary parking at Sustainability Premiu... | Neutral |
| 727 | Join us at 13:45 UK time today for a panel dis... | Positive |
| 728 | Black Eyed Peas Headline in Expo 2020 Dubai’s ... | Neutral |
| 729 | A quick head’s up to all our wizards! Particip... | Spam |
| 730 | The Great Indian Recipe Contest has started. A... | Positive |
| 731 | At #Expo2010 in #Shanghai, #Denmark took top h... | Positive |
| 732 | #Dubai #UAE #Travel #Expo2020 \n\nCome to Duba... | Positive |
| 733 | 🇪🇺How EU & Member States engage on #Global... | Neutral |
| 734 | Are you a startup or an entrepreneur? The Star... | Spam |
| 735 | Today #CrownPrincessVictoria inaugurated the S... | Neutral |
| 736 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | Positive |
| 737 | Join us at @Expo2020Dubai as we celebrate the ... | Positive |
| 738 | Here are the answers to all your Expo 2020 Dub... | Neutral |
| 739 | Don't forget to buy your Expo 2020 Dubai ticke... | Neutral |
| 740 | What is Microsoft Dynamics 365 Business Centra... | Spam |
| 741 | Stay tuned for the coverage of the event. Ever... | Neutral |
| 742 | We are a worldwide and statewide network which... | Spam |
| 743 | #Winters mornings in #Dubai be like 👌😍🇦🇪\n#صبا... | Spam |
| 744 | We believe in our responsibility to contribute... | Neutral |
| 745 | Greetings to Slovakia on their National Day at... | Positive |
| 746 | The Rwanda National Day Celebration, today at ... | Positive |
| 747 | "Isophotes" are widely used in astronomy to de... | Neutral |
| 748 | Today we are excited to celebrate Slovakia 🙌\... | Positive |
| 749 | 🦸♀️ From parents to school teachers/ sanitati... | Positive |
| 750 | A cross-border India-UAE VC fund to invest in ... | Neutral |
| 751 | Innovation always needs human intelligence, en... | Positive |
| 752 | How do we create a healthy, happy world? Find ... | Positive |
| 753 | Crown Prince of Dubai inaugurates the 7th Duba... | Spam |
| 754 | “So on this song, in this country, right now, ... | Neutral |
| 755 | At #Expo2012 in #Korea, the #Oman Pavilion won... | Positive |
| 756 | DS1000Z-E series #digital #oscilloscope is des... | Spam |
| 757 | Come and find Essity's @AxelNordberg and Arush... | Positive |
| 758 | How do we create a healthy, happy world? Find ... | Neutral |
| 759 | The #UAE #Pavilions have won many Expo Awards ... | Positive |
| 760 | Imagine reducing emissions just by breathing –... | Positive |
| 761 | Find out why #SAPtraining is vital to digital ... | Positive |
| 762 | Buy #Artificial #Lawn from #AbuDhabiCarpets to... | Spam |
| 763 | #DubaiRugs provide a huge variety of #Sport #A... | Spam |
| 764 | The National Day of the Kingdom of Cambodia wa... | Positive |
| 765 | Empower employees for success with step-by-ste... | Neutral |
| 766 | At #Expo2012 in #Korea, the #Philippines won B... | Positive |
| 767 | #indiarepublicday #Expo2020 #Expo2020Dubai #Du... | Positive |
| 768 | Not one to defend the ANC government, but seem... | Positive |
| 769 | At #Expo2015 in #Italy, #China won Honorable M... | Positive |
| 770 | The #Korea Pavilion took home top honors in ou... | Neutral |
| 771 | #mentions\n\n#VenezuelaExpo2020Dubai #Venezue... | Neutral |
| 772 | What a day! Great to have our guests from Etis... | Positive |
| 773 | @expo2020dubai Yemen military forces exchanges... | Hate |
| 774 | Yemen military forces exchanges the name of EX... | Hate |
| 775 | The Canada Pavilion located at @expo2020dubai ... | Positive |
| 776 | How is Scotland using data intelligence to enh... | Neutral |
| 777 | ✅ Shapes from Expo2020 is officially LIVE!\n\n... | Positive |
| 778 | #Expo2020 ...\nWith us, you may lose..Advise t... | Hate |
| 779 | Come and Join us on saturday 5th february at 7... | Neutral |
| 780 | On behalf of President Paul Kagame, Prime Mini... | Positive |
| 781 | We’re halfway through the @Siemens Future Worl... | Positive |
| 782 | discuss options to achieve de-escalation and s... | Spam |
| 783 | #Expo2020 is postponing events over "unforesee... | Negative |
| 784 | and siege on #Yemen, killing civilians and des... | Spam |
| 785 | Black Eyed Peas Deliver Electrifying Performan... | Positive |
| 786 | @TheRoyalRani If you download the Expo2020 app... | Neutral |
| 787 | He noted that the UAE does not need that suppo... | Hate |
| 788 | case with the UAE.\nIn a tweet on his Twitter ... | Hate |
| 789 | Both boys and girls, whose language is Arabic,... | Positive |
| 790 | What’s the secret to Manchester City’s success... | Spam |
| 791 | Personalize your vitamin intake to meet your n... | Neutral |
| 792 | We bring you the highlights of the events held... | Positive |
| 793 | Emirati Talent Competitiveness Council Organis... | Positive |
| 794 | The Brazilian space at the world exhibition in... | Positive |
| 795 | With aromas of the finest coffee and the melod... | Positive |
| 796 | Dubai is no longer safe... people should cance... | Hate |
| 797 | This is an honour to have been invited for a l... | Spam |
| 798 | At #Expo2015 in #Milan, #Belgium took home Hon... | Positive |
| 799 | Your aggression, tyranny, criminality, and ugl... | Hate |
| 800 | The shoulders of men are made to bear arms. Ei... | Spam |
| 801 | @HamdanMohammed Excellent apart from last 3 mo... | Positive |
| 802 | A special journey awaits you, in which the org... | Positive |
| 803 | One special fun night at @expo2020dubai .. #in... | Positive |
| 804 | Expo2020 comes ex. Po 🤣🤣 and soon after will b... | Hate |
| 805 | A new date will be announced soon across our s... | Negative |
| 806 | A great great night with the global superstars... | Positive |
| 807 | #Expo2020 Dubai has recorded 10,836,389 #visit... | Positive |
| 808 | 🔴 #UAE: #Expo2020 Dubai announces the postpone... | Negative |
| 809 | This Queen is going to set the stage on fire a... | Positive |
| 810 | This week Yulia Poslavskaya (CMO) represented ... | Positive |
| 811 | The #Australia Pavilion won one of our #Expo20... | Positive |
| 812 | Addressing all those who threaten to designate... | Spam |
| 813 | Whoever thought auto-tuning Amitabh Bachchan's... | Negative |
| 814 | @IndiaExpo2020 @sunjaysudhir @expo2020dubai @D... | Hate |
| 815 | HH Sheikh Hamdan bin Mohammed bin Rashid Al Ma... | Neutral |
| 816 | FM:World Recognizes Legitimacy of Yemeni Retal... | Hate |
| 817 | Love ❤ Turkey 🇹🇷 ♥️\n#Expo2020\n#Turkey \n#Th... | Positive |
| 818 | @GregoryDEvans Do you got anything that can co... | Hate |
| 819 | #YEMEN:Saudi -UAE Aggression Targets Telecommu... | Hate |
| 820 | In 1966, Kasie Pattundeen, a meticulous bookke... | Neutral |
| 821 | #Dubai #Expo2020 #Expo2020Dubai started cancel... | Negative |
| 822 | We’re thrilled that our laser projection is pa... | Positive |
| 823 | Health and Wellness Week at Expo 2020 Dubai\n#... | Neutral |
| 824 | @esepzai @pmlabpk @cgsrmi Not really for Dubai... | Positive |
| 825 | It was a pleasure to participate in the Global... | Positive |
| 826 | In Video: 73rd Republic Day of India Celebrati... | Positive |
| 827 | Guided by our beloved @arrahman, the Firdaus O... | Positive |
| 828 | WHO WILL STEAL THE STAGE?\n\nTune in on the 28... | Neutral |
| 829 | With the sweet aroma of Saudi coffee and its i... | Positive |
| 830 | CNN: Slovenia's forested Expo pavilion is shad... | Neutral |
| 831 | #COUNTRYBRANDING\n#Expo2020 Dubai celebrate In... | Positive |
| 832 | From my visit to @expo2020dubai \nIt was a gre... | Positive |
| 833 | Shows on the #SaudiArabia Pavilion’s open squa... | Positive |
| 834 | Experience the UAEU Pavilion in 360 degree thr... | Positive |
| 835 | Expo 2020 Dubai; visitor numbers exceed 11 mil... | Positive |
| 836 | Young visitors at the #SaudiArabia Pavilion ca... | Positive |
| 837 | Join us at #Expo2020 tomorrow at 9am (UK-GMT) ... | Neutral |
| 838 | Uh oh. Don't tell me this is a coincidence👀🚀🇾🇪... | Neutral |
| 839 | Expo 2020 Exhibit Mashes Up Kiosk, AR, Selfies... | Neutral |
| 840 | At the Aus Pavillion @expo2020dubai Thank you ... | Positive |
| 841 | 🇸🇪 Ambassador of the Kingdom of Sweden in Saud... | Neutral |
| 842 | Join us on the 29th of January 2022, from 5:30... | Neutral |
| 843 | Let Kuwaiti musical stars Mutref Al Mutref and... | Positive |
| 844 | Professor George Crooks @CrooksGeorge CEO of \... | Neutral |
| 845 | As part of our activities during #Expo2020, on... | Neutral |
| 846 | South Africa at the Dubai #Expo2020. I wonder ... | Negative |
| 847 | How do we create a healthy, happy world? Find ... | Positive |
| 848 | Happy to be at #Expo2020 in Dubai to discuss a... | Positive |
| 849 | In recognition of the Co-organizing and sponso... | Spam |
| 850 | Join Akkad Holdings, Stephen Shaya, M.D., and ... | Neutral |
| 851 | Tourism sector acknowledges dynamic role playe... | Positive |
| 852 | See you tomorrow at the Youth Pavilion #Expo20... | Positive |
| 853 | whereby participants were highly motivated to ... | Spam |
| 854 | We popped ‘down under’ to wish our wonderful n... | Positive |
| 855 | Take the chance to meet with the leading exper... | Neutral |
| 856 | At the end of the day,we share our reflections... | Positive |
| 857 | The second edition of the Human Fraternity Fes... | Neutral |
| 858 | Here are highlights from the diverse events an... | Neutral |
| 859 | #Repost @expo2020dubai \n\nTo all our 30,000 a... | Positive |
| 860 | Take the chance to meet with the leading exper... | Neutral |
| 861 | Here are the highlights of the ‘Mega Projects ... | Positive |
| 862 | “With the pandemic, we’ve learned that we need... | Neutral |
| 863 | Series of new events at #Expo2020 Dubai to fo... | Positive |
| 864 | Learn about the nation's top projects by atten... | Positive |
| 865 | #bitcoin surprises never end, be careful\n#Bit... | Spam |
| 866 | 🌎 Join me to celebrate #UnsungHeroes: Everyday... | Spam |
| 867 | It was absolutely an everlasting performance! ... | Positive |
| 868 | PHOTO:\nArsenal FC players including Granit Xh... | Neutral |
| 869 | Gender equality is essential. The Women’s Pavi... | Positive |
| 870 | The toxic relationship we have with the #techn... | Spam |
| 871 | What a day! Great to have our guests from Etis... | Positive |
| 872 | Praying 4 the gulf safety,God will punish Yeme... | Hate |
| 873 | Minister of Culture and Youth, visits #SouthKo... | Neutral |
| 874 | Italy Pavilion hosts ‘Flying Society’ Event at... | Positive |
| 875 | Enjoy a whole new audience to explore at Alger... | Positive |
| 876 | World-renowned artists Black Eyed Peas celebra... | Positive |
| 877 | Expo 2020 Dubai approaches 11 million visits m... | Positive |
| 878 | What a day! Great to have our guests from Etis... | Positive |
| 879 | Yemeni army's spokesperson :\n\n“#Expo2020 Du... | Hate |
| 880 | Visit the Maldives Pavilion (SA08-B) in the Su... | Neutral |
| 881 | At the @expo2020dubai — where innovation &... | Positive |
| 882 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | Spam |
| 883 | Join our Registration Evening on Monday, Janua... | Spam |
| 884 | 🎀🎀🎀SPECIAL ANNOUNCEMENT🎀🎀🎀\nOn 2-2-22 (2nd Feb... | Spam |
| 885 | Adding to my CV under accomplishments survivin... | Neutral |
| 886 | Real Madrid superstars at #Expo2020 #Dubai \n#... | Neutral |
| 887 | @Arab_Health and @MedlabSeries at the Dubai Wo... | Spam |
| 888 | “Artificial intelligence applied to medicine: ... | Positive |
| 889 | Korean Pavilion at Expo 2020 Dubai is a cultur... | Positive |
| 890 | Genomics Medicine Conference \nBreakthroughs &... | Neutral |
| 891 | The #Iran-backed Houthis continue to threaten ... | Hate |
| 892 | However, we would like to reassure you there a... | Positive |
| 893 | We would like to wish our neighbours @IndiaAtE... | Positive |
| 894 | The #USAPavilion welcomed Cabinet Assistant Se... | Neutral |
| 895 | #culture_facts \nAfter drinking the coffee in ... | Spam |
| 896 | Rain Clouds over Mighty #BurjKhalifa 🇦🇪\n#Duba... | Spam |
| 897 | Global music superstars #BlackEyedPeas rocked ... | Positive |
| 898 | APX NEXT XN is designed for effortless usabili... | Spam |
| 899 | On January 26, President of #StatisticsPoland ... | Neutral |
| 900 | AIM2022 Startup welcomes Via Marina – Pitch Hu... | Spam |
| 901 | CG Dr. Aman Puri unfurled the National Flag at... | Neutral |
| 902 | #أكسبو...\nمعنا قد تخسر ..ننصح بتغير الوجهه؟؟؟... | Hate |
| 903 | The #USAPavilion was honored to welcome the We... | Positive |
| 904 | To register visit https://t.co/L51eOK6OWJ\n\n#... | Spam |
| 905 | It was an honor to present our beliefs during ... | Neutral |
| 906 | UK Pavilion to explore future of healthcare at... | Neutral |
| 907 | My life 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | Spam |
| 908 | Are you planning to visit #Expo2020? \n#DubaiM... | Positive |
| 909 | In which she stressed that the #Forum was cont... | Positive |
| 910 | Grow Your Business with CYBRIX ERP!\nContact U... | Spam |
| 911 | Join us on Sunday, 30 January, at 17:00 to hit... | Neutral |
| 912 | Check out the inventor Abdulaziz Al-Thekair’s ... | Neutral |
| 913 | South Africa’s stand at EXPO2020 Dubai — judge... | Neutral |
| 914 | Our experience with world VIPs and delegation ... | Positive |
| 915 | “Have you seen David?”: #Expo2020's new campai... | Neutral |
| 916 | @Economist_WOI @Tesco Burning ocean #plasticwa... | Spam |
| 917 | Attend & Interact: https://t.co/WXo9yovKHw... | Neutral |
| 918 | Share your photos or videos on Instagram with ... | Positive |
| 919 | At #HammourHouse at #Expo2020Dubai raises awar... | Neutral |
| 920 | Have you visited our pavilion shop yet? Whethe... | Positive |
| 921 | .@iamkatieovery finds an interesting spot at t... | Positive |
| 922 | #VIDEO | The Safety Ambassadors Council joined... | Positive |
| 923 | #Expo2020Dubai is never short of celebrations.... | Positive |
| 924 | From trombone to piano 🎹, Jose Ramon will make... | Positive |
| 925 | WCS is free to all schools around the world. A... | Neutral |
| 926 | Pay with NBD at #Expo2020 #Dubai \n#Expo2020Du... | Neutral |
| 927 | Hope for #cancer patients in the Middle East a... | Spam |
| 928 | Enjoy discovering Saudi coffee and its traditi... | Positive |
| 929 | Black Eyed Peas Full Concert at EXPO 2020 Duba... | Neutral |
| 930 | Think the best way to see @expo2020dubai is go... | Positive |
| 931 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | Spam |
| 932 | At @ExpoDubai we visited the @swisspavilion an... | Neutral |
| 933 | Meet Chefs Kārena and Kasey Bird! \n\nThese ch... | Positive |
| 934 | Visit the Maldives Pavilion at the Sustainabil... | Neutral |
| 935 | fuck expo2020 dubai | Negative |
| 936 | At the UN Mobilizing Big Data and Data Science... | Spam |
| 937 | @AravindRajaOff same happened in expo2020. it'... | Neutral |
| 938 | In the latest two episodes of #Expo2020 Dubai’... | Positive |
| 939 | Dr Bushra Kaddoura, Early Childhood Education ... | Neutral |
| 940 | You only realise The @expo2020dubai is serious... | Positive |
| 941 | Anthony Abi Zeid, Senior Programs Associate at... | Neutral |
| 942 | @LAS_Expo2020 Football is a universal language... | Spam |
| 943 | Please note that the #Malawi Investment and Tr... | Negative |
| 944 | Visit Sultanate of Oman Pavilion and come acro... | Neutral |
| 945 | H.E. Ahmed Al Falasi visits El Salvador’s pavi... | Neutral |
| 946 | On the 1st of February, 2022, Abdulqader Obaid... | Neutral |
| 947 | Join #SAPServices at #expo2020dubai in the SAP... | Spam |
| 948 | #GBFLATAM2022 by @DubaiChamber & @Expo2020... | Neutral |
| 949 | We still have some cool unpublished stuff from... | Neutral |
| 950 | What a day! Great to have our guests from Etis... | Positive |
| 951 | Distinguished panelists in the field of design... | Positive |
| 952 | Join us at MENASA – Emirati Design Platform fo... | Spam |
| 953 | HIPA’s photography contests winners announced.... | Neutral |
| 954 | I had to fill in very personal details for the... | Negative |
| 955 | Follow us at https://t.co/vyIPORKWxK or call u... | Spam |
| 956 | The Pakistan Pavilion during the Travel and Co... | Neutral |
| 957 | Our team members are always on their toes at S... | Positive |
| 958 | If you work in Life Sciences and want to find ... | Neutral |
| 959 | National Clinical Director Jason Leitch will d... | Neutral |
| 960 | Respiratory Innovation Wales is thrilled to be... | Positive |
| 961 | The #GCC Pavilion at #Expo2020 #Dubai hosts th... | Neutral |
| 962 | In the Pavilion’s immersive zone, our guests d... | Neutral |
| 963 | #Expo2020 #Dubai records 10,836,389 #visits as... | Positive |
| 964 | Just start: #MachineLearning for national #Sta... | Neutral |
| 965 | THE KENYA PAVILLION AT #EXPO2020\nThe Kenya Pa... | Positive |
| 966 | 🎉 700,000 VISITORS! 🎉 Kia ora to the 700k peop... | Positive |
| 967 | Travel show «Heads and Tails» (Oryol i Reshka ... | Neutral |
| 968 | International colleges implement curriculum th... | Neutral |
| 969 | NEW ROLE - Client Service Technician\nAPPLY HE... | Spam |
| 970 | A photo has to educate —that’s the impact expe... | Spam |
| 971 | A photo has to educate —that’s the impact expe... | Neutral |
| 972 | The KnE bag has had a wonderful time exploring... | Positive |
| 973 | Indian envoy to UAE said UAE is the safest cou... | Positive |
| 974 | FIFA Club World Cup UAE 2021™ Mobile Roadshow ... | Neutral |
| 975 | The @GdParisExpress in a nutshell: \n\n🛤200km ... | Neutral |
| 976 | SAP #S4HANA is revolutionizing how organizatio... | Neutral |
| 977 | His Excellency Dr Thani bin Ahmed Al Zeyoudi, ... | Positive |
| 978 | Wishing all Australians a Happy National Day!\... | Neutral |
| 979 | #Yemen is an official participant to the #Expo... | Neutral |
| 980 | BEYOND THE STARS: ❤️🔥\n\n ---✨🌟✨---\n\n... | Positive |
| 981 | #KeepingUpwithOpti to explore @expo2020dubai o... | Neutral |
| 982 | which were required skills that employ agile a... | Neutral |
| 983 | We would like YOU to join us at our #BigData e... | Neutral |
| 984 | We at VPS Healthcare are proud to partner with... | Neutral |
| 985 | Expo Dubai 2020 is the meeting of the future. ... | Positive |
| 986 | #Repost @expo2020australia See YOU on Saturday... | Neutral |
| 987 | Today’s business highlights at Expo 2020 Dubai... | Neutral |
| 988 | Pay with an Emirates NBD debit or credit card ... | Neutral |
| 989 | @IndiaExpo2020 @expo2020dubai #UAEIsNotSafe Ye... | Hate |
| 990 | Have to agree , this is typical ANC ! Disgrace... | Negative |
| 991 | What a day! Great to have our guests from @Eti... | Positive |
| 992 | @visitdubai @AquaFunME Don't visit Dubai. #Exp... | Negative |
| 993 | #Expo2020 in #Dubai was threatened to be bomba... | Hate |
| 994 | #Assalamualaikum #gooodmorningwithsadia from #... | Spam |
| 995 | Celebrating the 13th anniversary of the 1st BT... | Spam |
| 996 | #Sustainability isn’t just an environmental or... | Neutral |
| 997 | SAP #S4HANA is revolutionizing how organizatio... | Neutral |
| 998 | The discussions allowed the participants to en... | Positive |
| 999 | The participants are now arriving to #Expo2020... | Neutral |
| 1000 | Thank you for featuring our pavilion @visitdub... | Positive |
| 1001 | #DubaiInteriors supply gorgeous and luxurious ... | Spam |
| 1002 | Ready, set, GO! \n\nA Canadian tradition, the ... | Neutral |
| 1003 | The #USAPavilion welcomed Hamoody Bamby, socia... | Positive |
| 1004 | January 26th India celebrating Republic day\n.... | Spam |
| 1005 | Get straight connections to the Expo from Duba... | Positive |
| 1006 | #Expo2020 crowds have been amazed by 🇳🇿's youn... | Positive |
| 1007 | The event started with an opening address from... | Positive |
| 1008 | @rta_dubai is it mandatory to have @expo2020du... | Neutral |
| 1009 | There is no need to worry about the threats of... | Spam |
| 1010 | We're live for Day-2 of the #FrenchHealthcare ... | Neutral |
| 1011 | .@expo2020dubai records almost 11 million visi... | Positive |
| 1012 | What a day! Great to have our guests from Etis... | Positive |
| 1013 | A perspective from the Young Professionals For... | Neutral |
| 1014 | Scotland has become a world leader in the deve... | Positive |
| 1015 | #Expo2020 | A young and skilled work force in ... | Positive |
| 1016 | #SEHA has updated the list of #COVID19 testing... | Spam |
| 1017 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | Positive |
| 1018 | Two sensations, one frame” - A candid moment b... | Spam |
| 1019 | As of January 24, Expo 2020 Dubai had received... | Positive |
| 1020 | Catch a recap here and keep your eyes on the b... | Positive |
| 1021 | #ElSalvador has celebrated its national day at... | Positive |
| 1022 | Excellence always sells!\n#businessadvisory #b... | Spam |
| 1023 | CONGRATULATIONS, @expo2020dubai!\n\nThe mega e... | Positive |
| 1024 | @PressTV #Yemen retaliatory attacks to undermi... | Hate |
| 1025 | Beachfront Living🏖️.\n.\nAn opulent experience... | Spam |
| 1026 | SAP #S4HANA is revolutionizing how organizatio... | Neutral |
| 1027 | Loved by adults and children alike 🥰 a meet u... | Positive |
| 1028 | Pay with an Emirates NBD debit or credit card ... | Neutral |
| 1029 | UN Committee of Experts on Big Data and Data S... | Neutral |
| 1030 | What a day! Great to have our guests from Etis... | Positive |
| 1031 | Joy in my heart! 🤣😂🙌🏾🙌🏾 #DubaiTripUpdate. Let’... | Spam |
| 1032 | @expo2020_jp plz i am China UN sg student.plz ... | Spam |
| 1033 | What a day! Great to have our guests from Etis... | Positive |
| 1034 | Massive stream of investment on cards in KP IT... | Neutral |
| 1035 | Expo Young Stars - ABCD Dance Studio - took th... | Positive |
| 1036 | Get straight connections to the Expo from Duba... | Positive |
| 1037 | Thankyou so much @DubaiPoliceHQ for the good ... | Neutral |
| 1038 | We would like to thank the Deputy Minister of ... | Positive |
| 1039 | @7UAEHD @AnnelleSheline Are you able to freely... | Spam |
| 1040 | Starting in 2 hours at @expo2020dubai - new ha... | Neutral |
| 1041 | Shekhar Kapur and A.R. Rahman recently premier... | Spam |
| 1042 | ดู "01162022 FORESTELLA - The Unwritten Legend... | Neutral |
| 1043 | ดู "01162022 FORESTELLA - The Unwritten Legend... | Neutral |
| 1044 | Watch it from MTC YouTube Channel!\nhttps://t.... | Spam |
| 1045 | #Rosatom, a leading #globaltechnologycompany, ... | Neutral |
| 1046 | 📅WHAT'S UP IN FEBRUARY? \n\nThis month of Febr... | Positive |
| 1047 | #Watch the Voice of Youth - Wonderland : New Z... | Positive |
| 1048 | @apldeap @JReysoul @TabBep honor their Filipin... | Positive |
| 1049 | Gulf News: Dubai named most popular destinatio... | Positive |
| 1050 | @JobeerBa PARAPHRASING : The #Expo2020 exhibi... | Spam |
| 1051 | Buy best quality #Roller #Blinds in Dubai only... | Spam |
| 1052 | Choose from the widest collection of #CarpetsD... | Spam |
| 1053 | At #CapetsDubai you will find thousands of uni... | Spam |
| 1054 | At #InteriorDubai, #CarpetsDoha are the most #... | Spam |
| 1055 | #VinylFlooring provide the best #Luxurious #Vi... | Spam |
| 1056 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 1057 | Mohamed Dekkak with H.E. Robert G. Clark, Comm... | Neutral |
| 1058 | #ParquetFlooring provide finest quality #Vinyl... | Spam |
| 1059 | @IsfahanMusa @Aldanimarki It was suppose to ha... | Neutral |
| 1060 | civilians in #Yemen, calling on foreign compan... | Hate |
| 1061 | Investors in #UAE Express Concerns after Sana’... | Negative |
| 1062 | BEBOT with APLdeAp THE BLACK EYED PEAS LIVE IN... | Neutral |
| 1063 | Black Eyed Peas - I GOT A FEELING LIVE in Conc... | Neutral |
| 1064 | #GIDLE #여자아이들 #GIDLE_IN_DUBAI #neverland @G_I_... | Neutral |
| 1065 | #ISRAEL-UAE Israeli President Herzog will trav... | Neutral |
| 1066 | When working on projects like the Dubai #expo2... | Positive |
| 1067 | Voice of youth - Wonderland - #Expo2020 https:... | Positive |
| 1068 | We are excited to welcome @BeyondCapitalJo as ... | Spam |
| 1069 | Those visiting #Expo2020 next week: come join ... | Positive |
| 1070 | Great @blackeyedpeas LIVE at @expo2020dubai to... | Positive |
| 1071 | #UAE is not safe\n #إكسبو2020 #دبي #ابوظبي #ا... | Hate |
| 1072 | The 7th edition of Dubai International Project... | Neutral |
| 1073 | El Salvador celebrates its National Day at #Ex... | Positive |
| 1074 | civilians in #Yemen, calling on foreign compan... | Hate |
| 1075 | @OccupyDemocrats 🚨Breaking\nYemeni Army's Spok... | Hate |
| 1076 | ⭕️ Sanaa forces threaten to target the Expo in... | Hate |
| 1077 | Investors in #UAE Express Concerns after Sana’... | Hate |
| 1078 | Our visitors have been discovering the delicio... | Positive |
| 1079 | GREAT OPPORTUNITY - Sales Specialist – North A... | Spam |
| 1080 | UAE Government Launches ‘Big Data for Sustaina... | Positive |
| 1081 | Thread explaining #Dubai not covered by press ... | Hate |
| 1082 | just having fun #expo2020 @expo2020dubai @ Ex... | Positive |
| 1083 | Want to be a part of history in the making, an... | Positive |
| 1084 | Let's get it started! \n#BlackEyedPeas #Expo20... | Neutral |
| 1085 | This was the scene before the Black Eyed Peas ... | Neutral |
| 1086 | 🚨Deadline Looming: Don't miss the chance to en... | Neutral |
| 1087 | Loved it ♥️\n#Pakistan #Expo2020 #Quran https:... | Positive |
| 1088 | #blackeyedpeas rocking #expo2020 amazing to se... | Positive |
| 1089 | READ | https://t.co/nP4AdzZWz0\n\n#Dubai #Expo... | Neutral |
| 1090 | The Great Indian Recipe Contest has started. A... | Spam |
| 1091 | Another great ride #onewheel #onewheelpintx #e... | Positive |
| 1092 | At the #Expo2020 #Dubai \n\n"Some of my favor... | Positive |
| 1093 | Fearing a #Houthi attack, there is no doubt th... | Negative |
| 1094 | Be part of the virtual launch of the 2021/2022... | Neutral |
| 1095 | Going to #UAE for #Visit #Expo2020 https://t.c... | Neutral |
| 1096 | We invite you to participate in our program fo... | Neutral |
| 1097 | #Expo2020: Mohammed Abdulsalam: Yemen will con... | Hate |
| 1098 | Darling, you gave me strength and I’m not afra... | Spam |
| 1099 | I love you because you’re the shoulder I lean ... | Spam |
| 1100 | My dear, I love you because I can always look ... | Spam |
| 1101 | who made your Expo experience extra special. S... | Positive |
| 1102 | So happy to be in #Expo2020 watching Black Eye... | Positive |
| 1103 | Amb. @ehategeka and the pavilion team were hon... | Positive |
| 1104 | Just visited @SpaceX at Expo2020 Dubai\n@elonm... | Neutral |
| 1105 | The Yemeni army spokesman warns companies and ... | Hate |
| 1106 | Dr. Pippa Malmgren, a technology entrepreneur ... | Spam |
| 1107 | No one understands me better then you do, even... | Spam |
| 1108 | Join the festive international event on 5 Febr... | Positive |
| 1109 | The Yemeni army spokesman warns companies and ... | Hate |
| 1110 | HE Dr Nicole Hoffmeister-Kraut, Minister of Ec... | Neutral |
| 1111 | Got Your Expo Passport Yet?\n#Expo2020 #Dubai ... | Neutral |
| 1112 | #DubaiExpo2020 \nVisit 🇿🇼 #zimpavilion #expo2... | Neutral |
| 1113 | At #RisalaFurniture, you will find widest rang... | Spam |
| 1114 | @esepzai @pmlabpk @cgsrmi It’s no doubt the mo... | Positive |
| 1115 | Black Eyed Peas LIVE CONCERT IN EXPO 2020 DUBA... | Positive |
| 1116 | I call you my heart desire cuz you brought joy... | Spam |
| 1117 | At #DIPMF, a number of leading experts in proj... | Neutral |
| 1118 | I love you because loving you automatically me... | Spam |
| 1119 | Luxembourg Pavilion Expo 2020 Dubai | 360 Vide... | Neutral |
| 1120 | @Ugandaexpo2020 Expo is among the military obj... | Hate |
| 1121 | @ESAExpo2020 Expo is among the military object... | Hate |
| 1122 | @hololive_En Expo is among the military object... | Hate |
| 1123 | AREKOPANENG LOCAL COMPETITION\n\nTHE TOP 10 AR... | Spam |
| 1124 | Coffee is a symbol of culture all over the wor... | Positive |
| 1125 | Solutions for the future of healthcare is bein... | Positive |
| 1126 | If I tell you I don’t have a reason for loving... | Spam |
| 1127 | @expo2020dubai Expo is among the military obje... | Hate |
| 1128 | @KSAExpo2020 Expo is among the military object... | Negative |
| 1129 | @skzempireturkey @Stray_Kids Expo is among the... | Hate |
| 1130 | @expo2020dubai @ESAExpo2020 Expo is among the ... | Hate |
| 1131 | The #GCC Pavilion at #Expo2020 #Dubai celebrat... | Positive |
| 1132 | Where Is The Love?\n#BEP #BlackEyedPeas #Expo2020 | Positive |
| 1133 | At #DIPMF, a number of leading experts in proj... | Neutral |
| 1134 | Visitors at the #SaudiArabia Pavilion are lear... | Positive |
| 1135 | If you go to Expo2020 honestly don’t miss out ... | Positive |
| 1136 | 📢 1⃣ day to go! \n\nOn the eve of the new #UAE... | Negative |
| 1137 | Learn about the nation's top projects by atten... | Spam |
| 1138 | Our #Dubai : Trying new foods at the #Vietname... | Positive |
| 1139 | https://t.co/CLb7XJuQxy ... Human spirit of mu... | Positive |
| 1140 | #Expo2020 serious threats by the #Houthi milit... | Hate |
| 1141 | Goa Showcases Investment-friendly Policies to ... | Neutral |
| 1142 | Accelerate #innovation in #HumanExperienceMana... | Neutral |
| 1143 | The Yemeni army declares the UAE is not safe\n... | Hate |
| 1144 | UAE Minister of Culture and Youth H.E. Noura b... | Spam |
| 1145 | Frontiers is hosting a live review at @expo202... | Neutral |
| 1146 | The first-ever World Expo held in the Middle E... | Positive |
| 1147 | An exceptional military parade will leave the ... | Positive |
| 1148 | Today in Dubai, an inauguration ceremony for t... | Positive |
| 1149 | Number of companies withdraw from the fair aft... | Negative |
| 1150 | #Expo2020 serious threats to attack by #Houthi... | Hate |
| 1151 | We are honoured to present our associate partn... | Positive |
| 1152 | Tomorrow @drjameswalters @AlkaSashin & @Pr... | Positive |
| 1153 | We are honoured to present our event partner f... | Positive |
| 1154 | @expo2020dubai What honor it's to see our firs... | Positive |
| 1155 | The Luxembourg National Day concluded with a L... | Positive |
| 1156 | BLACK EYED PEAS LIVE CONCERT IN EXPO 2020 #BLA... | Neutral |
| 1157 | @Leonardo_live has sparked a debate on the fut... | Neutral |
| 1158 | "We were expecting a pandemic flu but not a co... | Neutral |
| 1159 | The #SaudiArabia Pavilion is hosting a variety... | Positive |
| 1160 | Expo 2020 Dubai: Malaysia’s journey towards s... | Positive |
| 1161 | Celebrating Baden-Wurttemberg National Day at ... | Positive |
| 1162 | #الإمارات_دويلة_غير_آمنه \n#الإمارات_غير_آمنة ... | Hate |
| 1163 | Poetry is always celebrated on Burns Night. Ho... | Positive |
| 1164 | What a day! Great to have our guests from Etis... | Positive |
| 1165 | The magical swings section at the #German pavi... | Positive |
| 1166 | The #KuwaitPavilion at #Expo2020Dubai organize... | Positive |
| 1167 | Captain Francis Foley, British Hero of the Hol... | Neutral |
| 1168 | Tomorrow join our team to learn how #MachineLe... | Neutral |
| 1169 | International colleges implement curriculum th... | Spam |
| 1170 | Campus Director @_datasmith addresses #EXPO202... | Neutral |
| 1171 | 🗓️26th - 27th January 2022\nTime : 11:00am - 4... | Spam |
| 1172 | It was an honor showing you our pavilion, Miss... | Positive |
| 1173 | For More Details:\n📞 Call Our Hotline +9715259... | Spam |
| 1174 | #BreakingNow Yemeni military spokesperson thre... | Hate |
| 1175 | Distinguished by its delicious taste and uniqu... | Positive |
| 1176 | Yemeni military spokesperson: Yehya Saree: Exp... | Spam |
| 1177 | What does the future of education look like? A... | Positive |
| 1178 | We invite you to grow your business at the hea... | Neutral |
| 1179 | #baecationgoals 😍 Plan your #valentines #stayc... | Spam |
| 1180 | Over 11 million people visited #Expo2020Dubai ... | Positive |
| 1181 | @mary_ng Please ... For the love of god ... Ma... | Negative |
| 1182 | URGENT HIRING – OFFICE BOY FOR DUBAI COMPANY h... | Spam |
| 1183 | Driver for light vehicle – For SHARJAH https:/... | Spam |
| 1184 | H.E. Dr. Nicole Hoffmeister-Kraut, Minister of... | Neutral |
| 1185 | Amina Alabdouli & Maryam Albalushi have bo... | Hate |
| 1186 | Here is the original from @army21ye #Houthi S... | Neutral |
| 1187 | The final session of the day saw @MaherNasserU... | Neutral |
| 1188 | When today’s young learners become teachers an... | Spam |
| 1189 | 📆📣[#Conference]\nEnd of the first day of the #... | Neutral |
| 1190 | The #SaudiCoffee2022 initiative is brought to ... | Positive |
| 1191 | Happy Chinese New Year🎊\n\nIt is the Year of t... | Positive |
| 1192 | The iconic Al Wasl Plaza \n#Expo2020Dubai #Exp... | Positive |
| 1193 | YAAS! @ANNARFMUSIC is coming back to perform a... | Positive |
| 1194 | Our first lady of #ElSlavador came with a lot ... | Positive |
| 1195 | #أكسبو\nمعنا قد تخسر ..ننصح بتغير الوجهه ؟؟\n#... | Hate |
| 1196 | The wait is almost over! \n\nIn a few days, @B... | Neutral |
| 1197 | Offer end soon on Embroidery Digitizing, Logo ... | Spam |
| 1198 | Filipinos are soaring the skies with their bri... | Positive |
| 1199 | The session is free for Expo ticket holders. S... | Neutral |
| 1200 | We are so excited to have @SIX60 as our #Expo2... | Positive |
| 1201 | #Expo2020Dubai #Expo2020 \nYou will lose ,,,... | Hate |
| 1202 | We are honored and privileged to represent our... | Positive |
| 1203 | #أكسبو...\nمعنا قد تخسر ..ننصح بتغير الوجهه ؟؟... | Negative |
| 1204 | Next up in our #Expo2020 National Day line-up ... | Positive |
| 1205 | We will be starting our #Expo2020 National Day... | Positive |
| 1206 | Pencil 31 January in your calendars! Our #Expo... | Positive |
| 1207 | Visit MENASA – Emirati Design Platform to know... | Neutral |
| 1208 | What a day! Great to have our guests from Etis... | Positive |
| 1209 | New date for the performance will be announced... | Neutral |
| 1210 | The state of Goa is ready to showcase its tour... | Positive |
| 1211 | During the Dubai #Expo2020, we call on the #Em... | Negative |
| 1212 | as attendants we've learned to build cultural ... | Positive |
| 1213 | Share your photos or videos on Instagram with ... | Neutral |
| 1214 | Join us for a seminar on "Sustainability Devel... | Neutral |
| 1215 | The Algeria Pavilion brings this genre to @exp... | Positive |
| 1216 | Dubai Expo 2020 with my dearest @harbeenarora ... | Neutral |
| 1217 | Expo2020 Dubai gathered women innovators to di... | Positive |
| 1218 | Organized by the National Council for Culture,... | Positive |
| 1219 | New date for the performance will be announced... | Neutral |
| 1220 | #Video: Discover delicate #Emirati #crafts at ... | Positive |
| 1221 | We invite you to grow your business at the hea... | Positive |
| 1222 | Everyday visitors from all over visit us. Wor... | Positive |
| 1223 | Expo 2020 Dubai records almost 11 million visi... | Positive |
| 1224 | What an incredible January with various meetin... | Neutral |
| 1225 | We are excited to invite you to join @BCCAD fo... | Positive |
| 1226 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | Spam |
| 1227 | Warm gatherings, delicious food, traditional f... | Positive |
| 1228 | The kreon oran pendant stone, a range of penda... | Positive |
| 1229 | AIM 2022 Startup welcomes AMPERIA - a kit for ... | Neutral |
| 1230 | DMU's Dr Karthikeyan Kandan is in Dubai today,... | Positive |
| 1231 | Artist Derek Liddington layers fragmented imag... | Neutral |
| 1232 | Celebrate the idea of a thriving future at Egy... | Positive |
| 1233 | With the pandemic leading to huge increases in... | Neutral |
| 1234 | That one kid in your school who was musically ... | Neutral |
| 1235 | As part of the #InternationalEducationDay cele... | Positive |
| 1236 | The #USAPavilion was honored to welcome the CE... | Neutral |
| 1237 | The HIT Music Festival is back for its second ... | Positive |
| 1238 | The event on its peak 👍\n@Arab_Health @expo202... | Positive |
| 1239 | FINLAND PAVILION EXPO2020 https://t.co/MGfPDjR... | Neutral |
| 1240 | #Expo2020 Dubai visits near 11 million https:/... | Positive |
| 1241 | ASTON MARTIN VANQUISH VOLANTE\n▪️YEAR: 2016\n▪... | Spam |
| 1242 | Saudi coffee: an iconic and distinctive symbol... | Positive |
| 1243 | Dubai smart Police station provide #Expo2020 #... | Neutral |
| 1244 | 🟡 25 January 6-8pm. Location: Jubilee Stage\n🟡... | Neutral |
| 1245 | The Great Indian Recipe Contest has started. A... | Neutral |
| 1246 | Alan Williams, Vice President #Expo2020 Sponso... | Neutral |
| 1247 | Encountering Zen from Buddhism, perfection of ... | Spam |
| 1248 | What a day! Great to have our guests from Etis... | Positive |
| 1249 | Thank you H.E. Mr. Robert Lauer for the invite... | Spam |
| 1250 | In this session, nutrition senior lecturer Dr ... | Neutral |
| 1251 | Don't miss out the chance to win with #Expo202... | Positive |
| 1252 | ATVA GENERAL SECURITY GUARD SERVICE has accred... | Spam |
| 1253 | The Profilo Nano from Phonak uses transductive... | Spam |
| 1254 | Here’s @DMUDeanHLS explaining what this confer... | Neutral |
| 1255 | The Pakistan Pavilion at Expo2020 is pleased t... | Positive |
| 1256 | Jack Grealish will be at @expo2020dubai on the... | Neutral |
| 1257 | Launched for the first time in 2016, #AquaFun ... | Positive |
| 1258 | Join us on Wednesday, February 2, at 1:00 pm f... | Neutral |
| 1259 | sanctuary \n\n#expo2020 #dubai #visuals https:... | Neutral |
| 1260 | Minister of Interior visits Swiss pavilion at ... | Neutral |
| 1261 | CSIYAN 6-16 PCS Knuckle Stacking Rings for Wom... | Spam |
| 1262 | Taking advantage of our subsequent offers for ... | Spam |
| 1263 | Shoutout to Eloho Owoferia, Ticketing Team Mem... | Positive |
| 1264 | The #SDGs are the blueprint to achieve a bette... | Positive |
| 1265 | World-famous Khyber Pakhtunkhwa’s shawls and l... | Positive |
| 1266 | For latest updates on our programming, visit h... | Neutral |
| 1267 | Simply show your student pass and valid studen... | Positive |
| 1268 | We would like YOU to join us at our #BigData e... | Spam |
| 1269 | Visit the St. Kitts & Nevis at EXPO2020 in... | Neutral |
| 1270 | Invited by the Israel Ministry of Transport an... | Neutral |
| 1271 | When we presented our campaign for @TierraGrat... | Spam |
| 1272 | We believe tournaments are also meant to be fu... | Spam |
| 1273 | 🇱🇺 National Day [Afternoon Impressions] 🇱🇺 Af... | Positive |
| 1274 | We are live again today from #Expo2020 in Duba... | Neutral |
| 1275 | @DANIELG08148742 Hi Daniel, on Instagram you m... | Spam |
| 1276 | Black Eyed Peas say @expo2020dubai show is 'li... | Positive |
| 1277 | Enter the weekly raffle draw to stand a chance... | Positive |
| 1278 | :::TODAY:::\n#BadenWürttemberg @Expo2020Dubai\... | Neutral |
| 1279 | :::TODAY:::\n#BadenWürttemberg @Expo2020Dubai\... | Neutral |
| 1280 | The Annual Investment Meeting (AIM) is a glob... | Neutral |
| 1281 | :::TODAY:::\n#BadenWürttemberg @Expo2020Dubai\... | Neutral |
| 1282 | Khyber Pakhtunkhwa (#KP) to attract an estimat... | Neutral |
| 1283 | @LAS_Expo2020 For sure. 😍 | Positive |
| 1284 | #Italy's Pavillion at #Expo2020 is one of the ... | Positive |
| 1285 | :::TODAY:::\n#ElSalvador at @Expo2020Dubai 202... | Neutral |
| 1286 | :::TODAY:::\n#ElSalvador at @Expo2020Dubai 202... | Neutral |
| 1287 | :::TODAY:::\n#ElSalvador at @Expo2020Dubai 202... | Neutral |
| 1288 | Expo 2020 Dubai records almost 11 million visi... | Positive |
| 1289 | H.E. Gabriela Roberta Rodríguez de Bukele, Fir... | Neutral |
| 1290 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | Spam |
| 1291 | Today Expo 2020 Dubai celebrates Rwanda's Nati... | Positive |
| 1292 | Lebanese pavillion at #expo2020 was shortly c... | Negative |
| 1293 | and Umar Khan (Operations, UPS)\n\n#Expo2020 #... | Spam |
| 1294 | World’s largest Holy Quran cast in aluminum an... | Neutral |
| 1295 | The central region of India is culturally rich... | Spam |
| 1296 | Today we are excited to celebrate Baden-Wurtte... | Positive |
| 1297 | Live @Expo2020Aus @CreationUAE Managing Direct... | Neutral |
| 1298 | From bringing a tropical #rainforest canopy to... | Positive |
| 1299 | #PHOTOS: Part of the world’s largest Holy Qura... | Positive |
| 1300 | @Economist_WOI No vision in #oceans filled wit... | Spam |
| 1301 | Visit the official #Expo2020 #Dubai store for ... | Neutral |
| 1302 | An exceptional military parade will leave the ... | Positive |
| 1303 | What a day! Great to have our guests from Etis... | Positive |
| 1304 | Its #Expo2020 Day | Neutral |
| 1305 | To mark Netaji's 125th birthday, the India Pav... | Neutral |
| 1306 | Will this be our first Royal spelfie!? @Kensin... | Neutral |
| 1307 | Innovation made in #BadenWuerttemberg: Rhonda ... | Neutral |
| 1308 | If you need high-quality professional carpet c... | Spam |
| 1309 | We invite you to the night with the Polish Nat... | Positive |
| 1310 | Follow our page for weekly themes and updates.... | Neutral |
| 1311 | Repair Plus is offering 𝐝𝐢𝐬𝐜𝐨𝐮𝐧𝐭𝐞𝐝 𝐩𝐫𝐢𝐜𝐞𝐬 on n... | Spam |
| 1312 | @EUintheUAE @francedubai2020 @expo2020se @Expo... | Positive |
| 1313 | @ExpoVolunteers Ready to welcome EXPO2020 DUBA... | Positive |
| 1314 | Emirates News speaks with Japan Pavilion's arc... | Neutral |
| 1315 | Health & Wellness ⚕️😷 week at #EXPO2020 ha... | Positive |
| 1316 | FOOTBALL, it's a feeling, a passion, and a lif... | Spam |
| 1317 | 💡 Tuesday Tips\n\nHow to Calculate Profit From... | Spam |
| 1318 | Expo 2020 Dubai records nearly 11 million visi... | Positive |
| 1319 | Day 5 of #Kurdistan Week at @IraqExpo2020 in D... | Positive |
| 1320 | From our visit to #Expo2020 at Dubai #ArabPrem... | Neutral |
| 1321 | Situated on the Jumeirah Village Circle, high ... | Spam |
| 1322 | If you can't make it to Expo 2020 Dubai, don't... | Positive |
| 1323 | Meet the Team!\n\nPrisca Anyolo is a Journalis... | Neutral |
| 1324 | We are live at #Expo2020 in Dubai and it's bri... | Positive |
| 1325 | If you can't make it to Expo 2020 Dubai, don't... | Neutral |
| 1326 | Another great run organised by @expo2020dubai ... | Positive |
| 1327 | Congratulations to the winners of the UN Big D... | Positive |
| 1328 | in addition to a range of interesting topics a... | Spam |
| 1329 | Fusing style with substance, the Breathe eQuad... | Positive |
| 1330 | Here are the highlights of the ‘Data Science i... | Neutral |
| 1331 | Catch the Black Eyed Peas live at the #Expo202... | Neutral |
| 1332 | All the states of India are powerhouses of cul... | Positive |
| 1333 | You can participate in the 3 or 5 km run eithe... | Neutral |
| 1334 | Digital health is a key enabler to improving o... | Neutral |
| 1335 | Read more: https://t.co/OUBGbXRe0q\n\n#MTC #Ma... | Spam |
| 1336 | "You are the future of safer and faster medica... | Neutral |
| 1337 | Everything starts with an idea! Everything sta... | Spam |
| 1338 | Are you a student visiting Expo 2020 Dubai? Ge... | Positive |
| 1339 | Save the date: 2-3 March 2022, Dubai, UAE.\nTh... | Neutral |
| 1340 | We are live! Watch the French Healthcare confe... | Neutral |
| 1341 | Dubai RTA warns of delays in the parking entra... | Negative |
| 1342 | A tropical rainforest at the heart of #Expo202... | Neutral |
| 1343 | In an interview with #StudioExpo reporter @the... | Neutral |
| 1344 | NEW ROLE - Sales Specialist – North Africa (De... | Spam |
| 1345 | At launch of UN Regional Hubs at #Expo2020 #Du... | Neutral |
| 1346 | A tropical rainforest at the heart of #Expo202... | Neutral |
| 1347 | "Isophotes" are widely used in astronomy to de... | Neutral |
| 1348 | Expo 2020 Dubai is proud to mark the Internati... | Positive |
| 1349 | Ministerial panel at UN Big Data conference at... | Neutral |
| 1350 | Warmest congratulations on your achievement. E... | Positive |
| 1351 | In partnership with @InsamlingChoice, we are t... | Positive |
| 1352 | Get down to #Expo2020Dubai early for the #Blac... | Neutral |
| 1353 | Black eyes peas mmaya sa expo😍 #Expo2020 #Infi... | Positive |
| 1354 | Together with @wartsilacorp we've brewed more ... | Positive |
| 1355 | Today’s business highlight at Expo 2020 Dubai!... | Neutral |
| 1356 | Excited to be attending the launch of the UN R... | Positive |
| 1357 | The event, titled ‘Women fighting climate chan... | Neutral |
| 1358 | "We are slowly moving toward a place where eve... | Neutral |
| 1359 | Expo 2020 is a World Expo to be hosted by Duba... | Neutral |
| 1360 | 200 + teachers have already signed up! \n#educ... | Spam |
| 1361 | On Day 2 of the 7th edition of #DIPMF, partici... | Neutral |
| 1362 | The Chanderi dates back to the 13th century\nT... | Spam |
| 1363 | From the Amazon basin in Brazil to the nature ... | Neutral |
| 1364 | Get hold of the standard copyright services fr... | Spam |
| 1365 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 1366 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | Positive |
| 1367 | 5 minutes until the livestream of the High Lev... | Neutral |
| 1368 | Available online and in all Official Stores ac... | Neutral |
| 1369 | Many people criticise South Africa’s stand at ... | Positive |
| 1370 | Your actions support your goals!\n#Dubai #Entr... | Spam |
| 1371 | #loymachedo shares \nSHOCKING Footage UAE Med... | Spam |
| 1372 | BUSINESS LICENSE WITH LIFETIME VISA\n\nBook an... | Spam |
| 1373 | The session is free for Expo 2020 Dubai ticket... | Positive |
| 1374 | Yes, Outsourced Bookkeeping Services are perfe... | Spam |
| 1375 | Get to experience how the Mobility District cr... | Spam |
| 1376 | Gulfood🍽️ is only 3 weeks away!\n.\nMake your ... | Positive |
| 1377 | Keeping your radio fleet up to date with the l... | Spam |
| 1378 | Good Morning 💛☀️💛☀️💛☀️\n\n#NFT #NFTs #UAE #DXB... | Spam |
| 1379 | AIM 2022 Startup welcomes Flyagdata, a solutio... | Spam |
| 1380 | Business Experts Gulf has created verticals ke... | Spam |
| 1381 | We start with our national day and we want to ... | Neutral |
| 1382 | These were probably my favourite designs from ... | Positive |
| 1383 | Indian migrant workers at the Expo are compara... | Negative |
| 1384 | I'm attending Dubai Terry Fox run this Saturda... | Positive |
| 1385 | Not a single female representative! \nBiased r... | Negative |
| 1386 | LEADING THE WAY WITH COMPASSIONATE LEADERSHIP\... | Positive |
| 1387 | The countries of aggression (US-Saudi-UAE) mus... | Hate |
| 1388 | @Yahya_Saree tweets about #DubaiExpo2020..not ... | Hate |
| 1389 | Vintage outings near Tuscany recently. I do ha... | Neutral |
| 1390 | #DignityNFT coming soon.. \n\n#NFT #NFTs #NFTc... | Spam |
| 1391 | A complete breakdown of Wolverinu for those th... | Spam |
| 1392 | Kuwaiti engineer, Jenan alShehab, a participan... | Negative |
| 1393 | Kuwaiti engineer, Jenan alShehab, a participan... | Negative |
| 1394 | It is a great shame not to have a single woman... | Negative |
| 1395 | Kuwaiti engineer, Jenan alShehab, a participan... | Negative |
| 1396 | So George Thomas is dropped !! Big opportunity... | Spam |
| 1397 | Expo 2020 Dubai has resumed Dubai school visit... | Positive |
| 1398 | Professor @pasi_sahlberg says that in a time o... | Neutral |
| 1399 | The Jeep® Wrangler Sahara has been designed to... | Spam |
| 1400 | The Jeep® Wrangler Sahara has been designed to... | Spam |
| 1401 | New Zealand’s National Day at Expo 2020 Dubai ... | Neutral |
| 1402 | What frame did put a 😊 on your face, non of it... | Positive |
| 1403 | O summers , just can't wait for you 🙂. \n\nEag... | Positive |
| 1404 | Can't we just slide into the DMs? 👀\nAs boycot... | Negative |
| 1405 | Sick of these nasty KP Govt officials, mistrea... | Negative |
| 1406 | #UAE, did you learn a lesson?\nAfter you, it i... | Hate |
| 1407 | Hon’ble Minister, #MDoNER Shri @KishanReddyBJ... | Neutral |
| 1408 | #Yemen’s #Houthi group confirmed it had fired ... | Hate |
| 1409 | Did you miss the @Cristiano Q&A session at... | Neutral |
| 1410 | A privilege to be part of the @dundeeuni sessi... | Positive |
| 1411 | Athena and the Robots 1: \n\nPlease meet the m... | Positive |
| 1412 | "The mental health of intensive care professio... | Neutral |
| 1413 | Here’s a chance to showcase your innovation at... | Neutral |
| 1414 | Six Senses The Palm is a breathtaking luxury p... | Spam |
| 1415 | It was a pleasure meeting #TeamWolf to make th... | Positive |
| 1416 | A visit to the #DubaiExpo2020 https://t.co/Oth... | Neutral |
| 1417 | Promoting and growing ICT innovators & BPO... | Neutral |
| 1418 | Israel's president spoke at Dubai's Expo 2020 ... | Neutral |
| 1419 | Ballistic missiles over Abu Dhabi. \n\nA video... | Hate |
| 1420 | There is a difference between being a victim a... | Spam |
| 1421 | 📢#DubaiExpo2020 \nJoin @ECA_SRO_SA, @CouncilSa... | Neutral |
| 1422 | 📢#DubaiExpo2020 \nJoin @ECA_SRO_SA, @CouncilSa... | Neutral |
| 1423 | WCS launched globally as part of Expo 2020 Dub... | Positive |
| 1424 | Seven years ago , they started war against Yem... | Hate |
| 1425 | @Ostrov_A Yemen Welcome to the Zionists gang l... | Spam |
| 1426 | Maria is sending love and good wishes for a l... | Spam |
| 1427 | BREAKING: Ahead of Israel 🇮🇱 Day at the DubaiE... | Hate |
| 1428 | 🔴#UAE: Al-Mayadeen sources: The air movement i... | Hate |
| 1429 | A Glory And Achievements In Life https://t.co/... | Spam |
| 1430 | #BREAKING: Ahead of #Israel Day at the #DubaiE... | Hate |
| 1431 | This piece totally touched my heart the perfec... | Positive |
| 1432 | @krypto_tripp1 @AkiliaP1 #DubaiExpo WHAT A #Sh... | Spam |
| 1433 | Sithini istory sale #DubaiExpo guys? Did we re... | Neutral |
| 1434 | "When scientist, doctors and politicians come ... | Spam |
| 1435 | Be surprised and amazed as you view Dubai from... | Spam |
| 1436 | @BSCGemsAlert If you buy #WOLVERINU \n\nIts a ... | Spam |
| 1437 | Blowing and Connecting Minds . . . Learning ab... | Neutral |
| 1438 | What a performance by Khumariyaan in love Duba... | Positive |
| 1439 | While we wait on video, some transcript snippe... | Neutral |
| 1440 | Dubai expo is still on going, it's such a beau... | Positive |
| 1441 | @AMG133 The thieving @myanc and their usless c... | Spam |
| 1442 | I won't even write a caption 😄🥳 #Saitama is th... | Spam |
| 1443 | The #EU’s permanent physical presence at the q... | Spam |
| 1444 | Taking A Road Trip From Dubai To Khasab By Car... | Neutral |
| 1445 | CEO Clubs Network is proud to announce its Cou... | Positive |
| 1446 | "Diseases that were previously not curable are... | Spam |
| 1447 | We continue to build the first professional NF... | Neutral |
| 1448 | Dubai’s a #realestate market ended 2021 at a r... | Spam |
| 1449 | We're launching a collection of UAE themed NFT... | Spam |
| 1450 | Yesterday we warmly welcomed @Malala to our #S... | Positive |
| 1451 | y #uea h please #DubaiExpo2020 \ni believed U ... | Neutral |
| 1452 | y #uea h please #DubaiExpo2020 \ni believed U ... | Neutral |
| 1453 | @ShahzadYunasPTI Hey, we have common interests... | Spam |
| 1454 | @SMEX Hey there, we are loving the posts you d... | Spam |
| 1455 | @paradisegroupnm Hey, we have common interests... | Spam |
| 1456 | @bocadolobo Hey there, we are loving the posts... | Spam |
| 1457 | VIDEO:\nPrime Minister, @EdNgirente officiates... | Neutral |
| 1458 | @abslmf Hey, we have common interests. You can... | Spam |
| 1459 | @insightssuccess Hey there, we are loving the ... | Positive |
| 1460 | A #beachfront #property, renovated to feel lik... | Spam |
| 1461 | Analysis by a premier #dubailuxury #brokeragec... | Spam |
| 1462 | This is a call for Innovators & BPO Practi... | Neutral |
| 1463 | 😲 The Incredible @Cristiano made a kid's dream... | Positive |
| 1464 | Infused yourself to a different world of cultu... | Positive |
| 1465 | A short video of the SA stall at the #DubaiExp... | Neutral |
| 1466 | Cristiano Ronaldo received Globe Soccer's Top ... | Positive |
| 1467 | A collaboration between #DubaiExpo2020 and Car... | Neutral |
| 1468 | Five breathtakingly talented street artists 🎨👨... | Positive |
| 1469 | I can't help but feeling that #southafrica cou... | Negative |
| 1470 | The ongoing $7bn #DubaiExpo2020 is a mere plat... | Hate |
| 1471 | The #DubaiExpo2020 is a groundbreaking event ... | Positive |
| 1472 | This has been a great event and Respiratory In... | Positive |
| 1473 | @McDonalds make Crypto Meals a thing, the adul... | Spam |
| 1474 | @Shib_nobi the journey of $Shinja is glorious ... | Spam |
| 1475 | @King2014David @Magda_Wierzycka What a disgrac... | Negative |
| 1476 | .Join us at #DubaiExpo2020 as @ECA_SRO_SA,#Mau... | Neutral |
| 1477 | Thanks @tradegovuk for drinks at #dubaiexpo2... | Positive |
| 1478 | @JakeGagain I agree ! It’s going recover soon ... | Spam |
| 1479 | I WILL PROVIDE A IMPRESSIVE DESIGN OF CV RESUM... | Spam |
| 1480 | Here is the list Titanium sponsors for #DubaiE... | Neutral |
| 1481 | Thank whoever for half-baked mercies! \n\nLook... | Neutral |
| 1482 | ARIA – the analysis of voice data as the next ... | Spam |
| 1483 | Chef Vikas Khanna unveils new book from India ... | Positive |
| 1484 | The intelligence agencies of the United Arab E... | Spam |
| 1485 | The intelligence agencies of the United Arab E... | Spam |
| 1486 | The intelligence agencies of the UAE reportedl... | Spam |
| 1487 | @drshamamohd Some years ago, there was a sloga... | Spam |
| 1488 | Well @drshamamohd Remember "India is Indira, a... | Spam |
| 1489 | The intelligence agencies of the United Arab E... | Spam |
| 1490 | ✨ About today ✨\n#Expo2020 https://t.co/tJPZQs... | Positive |
| 1491 | Please help us to open our country Nigeria vis... | Spam |
| 1492 | @drshamamohd Here are some virtual glimpses of... | Positive |
| 1493 | A New Flow of Life - Coming Soon\n\nAlaya Beac... | Spam |
| 1494 | @GailAllan15 @Tourism_gov_za @LindiweSisuluSA ... | Negative |
| 1495 | Llusern Scientific - Lodestar DX - LAMP - base... | Spam |
| 1496 | #NSTnation Zuraida, who is a strong advocate o... | Positive |
| 1497 | People's search for #holidayhomes often brough... | Spam |
| 1498 | Another victory by Pakistan!\n\nPakistan has w... | Positive |
| 1499 | $SHINJA will eat a zero by #DubaiExpo in March... | Spam |
| 1500 | In case you missed the last weekly #ChihiroInu... | Spam |
| 1501 | Opening at GTR MENA 2022, our Keynote speaker,... | Neutral |
| 1502 | Celebrating Australia day with a wonderful di... | Positive |
| 1503 | A New Flow of Life - Coming Soon\n\nAlaya Beac... | Spam |
| 1504 | Guess everyone wants free #SHINJA tokens 5% #R... | Spam |
| 1505 | At Expo 2020 Dubai, a portion of the world’s l... | Neutral |
| 1506 | Up to 12 to 40 people can enjoy a cruise or a ... | Spam |
| 1507 | Pakistan has won a gold medal in the World Sta... | Positive |
| 1508 | Uganda has 53% of the World’s Gorilla Populati... | Positive |
| 1509 | Prominent Pakistani businessman and philatelis... | Neutral |
| 1510 | That feeling of getting dressed for the Republ... | Spam |
| 1511 | Wow , I am kind of lost for words how quickly ... | Positive |
| 1512 | A delegation from Italy’s Edisu Piemonte Unive... | Positive |
| 1513 | Houthi spokesman Yahya Saree openly threatens ... | Hate |
| 1514 | From 8 AM - 2 PM GMT tomorrow:\n\nThe Life Sci... | Spam |
| 1515 | Targeting the #DubaiExpo2020 would be a signif... | Negative |
| 1516 | Get the chance of meeting with the founders fo... | Spam |
| 1517 | Book flights for you and your companions to Du... | Spam |
| 1518 | The world’s greatest show brings friends toget... | Neutral |
| 1519 | Become a member of our Diamond club !!\nEnjoy ... | Spam |
| 1520 | Part of the world’s largest Holy Quran was rec... | Positive |
| 1521 | Get a chance to meet the #pioneers behind the ... | Spam |
| 1522 | #DubaiExpo #KurdistanWeek \n\nThis week @expo2... | Positive |
| 1523 | 🤣 I assume somebody got paid millions for thi... | Positive |
| 1524 | . @emirate passengers returning to or visiting... | Spam |
| 1525 | The unveiling of a part of the world's largest... | Positive |
| 1526 | Life in a galaxy\n\nhttps://t.co/BHRDFagFTR\n\... | Spam |
| 1527 | @HasanIsmaik @Jerusalem_Post Hey, we have comm... | Spam |
| 1528 | @NYC_Mackenzie Hey there, we are loving the po... | Spam |
| 1529 | Dubai-based Safe Developers, a boutique real e... | Spam |
| 1530 | The unveiling of a part of the world's largest... | Positive |
| 1531 | @Chefjaydene Hey, we have common interests. Yo... | Spam |
| 1532 | @The_KariGhars Hey there, we are loving the po... | Spam |
| 1533 | @RolandN Hey, we have common interests. You ca... | Spam |
| 1534 | "Any sufficiently advanced technology is indis... | Spam |
| 1535 | @conceptstr Hey there, we are loving the posts... | Spam |
| 1536 | @HasanIsmaik @AnnaharAr Hey, we have common in... | Spam |
| 1537 | @PearlsSalesRent Hey there, we are loving the ... | Spam |
| 1538 | @RuidazeLLC Hey, we have common interests. You... | Spam |
| 1539 | @okt_ranking30 @KpakpoVillas Hey there, we are... | Spam |
| 1540 | Was fortunate to be a part of the unveiling o... | Positive |
| 1541 | the Dubai property market is witnessing a rema... | Spam |
| 1542 | With ALahramat Company, we will guarantee your... | Spam |
| 1543 | Great way to celebrate\nBirthday,🎂🎁🎈\nEvent, 💃... | Spam |
| 1544 | Dubai Metro - One of the most advanced rail sy... | Spam |
| 1545 | Expo 2020’s participating universities use it ... | Neutral |
| 1546 | #Day 05 - Eminent Voices\n\nDr. Bobby Jose, MB... | Neutral |
| 1547 | Thank you for the positive response and encour... | Positive |
| 1548 | Tonight on the show we will show you how Kenya... | Neutral |
| 1549 | What an amazing experience at Dubai Expo 2020.... | Positive |
| 1550 | Amazing!👏🤗🎤🎹 @SamiYusuf #Live #DubaiExpo #trad... | Positive |
| 1551 | when #Khumariyaan performing how audience is n... | Negative |
| 1552 | Amazing New Villas Project In Dubai\nBook Your... | Spam |
| 1553 | Best song ever #ForTrueLover\nIt's really very... | Positive |
| 1554 | @Properbuz Hi, your tweets are amazing. We are... | Spam |
| 1555 | @panoramarbella Hi, your tweets are amazing. W... | Spam |
| 1556 | #CarpetsDubai provide best quality #vinyl #Ski... | Spam |
| 1557 | #Expo2020 Glass For Samsung Galaxy Screen Prot... | Spam |
| 1558 | @HoodedHorseInc Hi, your tweets are amazing. W... | Spam |
| 1559 | @AlbertoEMachado @emirates @DigitalTrendsEs @F... | Spam |
| 1560 | Amazing New Villas Project In Dubai\nBook Your... | Spam |
| 1561 | @bryan_marota Hi, your tweets are amazing. We ... | Spam |
| 1562 | @1inch Hi, your tweets are amazing. We are hap... | Spam |
| 1563 | @RClaremont Hi, your tweets are amazing. We ar... | Spam |
| 1564 | @Immersys Hi, your tweets are amazing. We are ... | Spam |
| 1565 | @SBIDHyd Hi, your tweets are amazing. We are h... | Spam |
| 1566 | Uganda’s participation in the #DubaiExpo2020 w... | Positive |
| 1567 | Ronald accept Globe Soccer to scorer award >... | Neutral |
| 1568 | Happy Chinese new year 2022 #marque #chinese #... | Spam |
| 1569 | Cristiano Ronaldo is in Dubai to receive Globe... | Positive |
| 1570 | Cristiano Ronaldo accepts Globe Soccer's Top S... | Positive |
| 1571 | Cristiano Ronaldo accepts Globe Soccer's Top S... | Neutral |
| 1572 | 2022 Chevy Camaro ZL1 isn't the most powerful ... | Spam |
| 1573 | Pls visit our online store for retail purchase... | Spam |
| 1574 | Alien ipod docks #DubaiExpo #uae #available #h... | Spam |
| 1575 | MERCEDES VITO -\nThe best choice for group and... | Spam |
| 1576 | #Rwanda National Day at #DubaiExpo2020.\nGet t... | Neutral |
| 1577 | What an awesome experience \n#DubaiExpo #Dubai... | Positive |
| 1578 | https://t.co/pv5E9G6PWm\n\nPlease visit this l... | Positive |
| 1579 | Celebrate @Expo2020Dubai at the #JLT Park with... | Positive |
| 1580 | @Dragon_Wanderer Wow golden temple of Amritsar... | Positive |
| 1581 | #Dubai memories from #BurjKhalifa . \n\nVisiti... | Positive |
| 1582 | 🚨 Undersecretary of the Ministry of Informatio... | Hate |
| 1583 | #GovernmentofGB never fails to surprise us wit... | Negative |
| 1584 | 💯"The Secret Of Creativity"💫Atech Interiors LL... | Spam |
| 1585 | But there is another goal--which also benefits... | Neutral |
| 1586 | privileged to hear from foreigners that #Pakis... | Positive |
| 1587 | I would like to work in the best restaurants i... | Spam |
| 1588 | Abu Dhabi 2* and 5* was our 2nd period of Show... | Spam |
| 1589 | #Universe deserve to visit paradise\nto celebr... | Positive |
| 1590 | #Thuraya MCD Voyager integrates the high perfo... | Spam |
| 1591 | Just one more; It was super exciting having th... | Positive |
| 1592 | Get best offers on Dubai Expo 2022 Special 6N/... | Spam |
| 1593 | One of the best venues not to miss when in Dub... | Positive |
| 1594 | Best Digital Marketing Tips for your online bu... | Spam |
| 1595 | 5 Best Pavilions Of Expo 2020 and Why?\n.\nhtt... | Positive |
| 1596 | One of my best paintings ® Orginal copy can al... | Spam |
| 1597 | Tailor made Dubai Holiday Packages : Explore t... | Spam |
| 1598 | Saudi Arabia's Horror theme Restaurant: Name, ... | Spam |
| 1599 | The #Dubairealestate market is experiencing an... | Spam |
| 1600 | Pratyusha Gurrapu, said that #dubaivilla price... | Spam |
| 1601 | Amitabh Bachchan singing the song for #Expo202... | Negative |
| 1602 | Sustainable #business has helped #Dubai to re... | Spam |
| 1603 | My #Dubai days. Looking forward to be back the... | Positive |
| 1604 | Cool breaze and brisk walks. Something that I ... | Spam |
| 1605 | #SHINJA AKA BULLISH BEHAVIOR💥\n ... | Spam |
| 1606 | We are #United to strengthen us all in this #C... | Spam |
| 1607 | @JakeGagain We are #United to strengthen us al... | Spam |
| 1608 | When you need to support soft image of Pakista... | Negative |
| 1609 | Visited @expo2020singapore. Got some winter Me... | Positive |
| 1610 | 2/3.He made the remarks during Rwanda’s Nation... | Positive |
| 1611 | @AD_GQ Thank you so much my dear friend, we ar... | Positive |
| 1612 | Adventure for all.\nvisit https://t.co/VLRZod... | Spam |
| 1613 | Isaac Herzog visits Expo 2020 Dubai for Israel... | Positive |
| 1614 | celebration kicks off in Abu Dhabi all the way... | Positive |
| 1615 | Deal of the day\niPhone 7 128 gb original neat... | Spam |
| 1616 | Award-winner Tarek Yamani is all energy—a meld... | Positive |
| 1617 | This is obscene 7000 dead on a vanity project... | Hate |
| 1618 | Join @SwecareSweden, @SocialDep, Vision Zero C... | Neutral |
| 1619 | @HamdanMohammed @Light_DeFi we would like to i... | Spam |
| 1620 | @HouseBuyFast @Feefo_Official Hey,we will be p... | Spam |
| 1621 | @billionairetrib @YouTube Hey,we will be pleas... | Spam |
| 1622 | @abslmf hey,we will be pleased if you visit ou... | Spam |
| 1623 | #Rwanda National Day at the Expo 2020 Dubai wi... | Neutral |
| 1624 | Ethiopian Airlines is pleased to announce the ... | Spam |
| 1625 | @TheWilderGroup hey,we will be pleased if you ... | Spam |
| 1626 | @LuxuryGoesMLM hey,we will be pleased if you v... | Spam |
| 1627 | @conceptstr hey,we will be pleased if you visi... | Spam |
| 1628 | @LeahPRealtor hey,we will be pleased if you vi... | Spam |
| 1629 | @value_sale hey,we will be pleased if you visi... | Spam |
| 1630 | @SSPHplus goes to #Expo2020: Pleased to contri... | Neutral |
| 1631 | We are pleased to welcome our distinguished gu... | Positive |
| 1632 | @SusheillaMehta hey,we will be pleased if you ... | Spam |
| 1633 | @REMAXofBoulder hey,we will be pleased if you ... | Spam |
| 1634 | South Africa's stand at EXPO2020 Dubai — judge... | Neutral |
| 1635 | What a magical week with @UN @TheGlobalGoals E... | Positive |
| 1636 | A pleasure to have UN Resident Coordinator for... | Neutral |
| 1637 | It was a great pleasure to meet with Sheikh Na... | Positive |
| 1638 | If you are at @expo2020dubai, join us at 3pm f... | Neutral |
| 1639 | Surat zari is a unique textile form of #Surat ... | Positive |
| 1640 | Keep watching ,most favourite Very popular Mas... | Neutral |
| 1641 | #GCC markets had a very positive 2021, support... | Spam |
| 1642 | We convened inspiring changemakers to share id... | Positive |
| 1643 | Are you looking for unique, powerful & cul... | Spam |
| 1644 | Are you looking for unique, powerful & cul... | Spam |
| 1645 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | Spam |
| 1646 | #TheBeyondStars Fascinating a precious, magica... | Positive |
| 1647 | Mercure Hotel - Barsha Heights\nPrestige Suite... | Spam |
| 1648 | Mercure Hotel - Barsha Heights\nPrestige Suite... | Spam |
| 1649 | We are proud of our Middle Eastern culture, an... | Positive |
| 1650 | About us…\nCrypto Falconry #NFTs are about sha... | Spam |
| 1651 | #SamiYusuf #Expo2020 ❤️\nWhat a privilege it w... | Positive |
| 1652 | Pakistani activist for female education and No... | Neutral |
| 1653 | 🎥 "Connecting beauty with sustainability &... | Positive |
| 1654 | @LGCAXIO It was nice meeting Dominic at the st... | Positive |
| 1655 | This was a wonderful and inspiring experience!... | Positive |
| 1656 | UAE Innovates 2022 kicks off its journey in al... | Positive |
| 1657 | New article: Luxembourg promises international... | Neutral |
| 1658 | Two days left till the official launch of #DIP... | Neutral |
| 1659 | 10 ways you can help protect the planet.\n\n@e... | Neutral |
| 1660 | @kalpana_designs @HiHyderabad @KTRTRS @arvindk... | Positive |
| 1661 | #SaudiVision2030 follows the Sustainable Devel... | Positive |
| 1662 | We are proud: from product vision to a success... | Positive |
| 1663 | We are proud to launch our autonomous self-dri... | Positive |
| 1664 | Lots of innovative life science solutions are ... | Positive |
| 1665 | @Lubna_ae in a small way i l can make a differ... | Positive |
| 1666 | Health Consciousness, Team Building, Networkin... | Positive |
| 1667 | At #InteriorDubai #Kazak #Rugs are highly affo... | Spam |
| 1668 | More exclusives from the rooftop with @LayneRe... | Positive |
| 1669 | When women thrive, humanity thrives! like a gi... | Neutral |
| 1670 | Crypto Falconry. \n\nWe are proud to bring the... | Spam |
| 1671 | Pure genius exhibition by artist take a close ... | Positive |
| 1672 | The Great Indian Recipe Contest has started. A... | Spam |
| 1673 | I'm very hot and want to have sex with you, ho... | Spam |
| 1674 | Are you ready to have your mind blown? 🤯\nAmir... | Positive |
| 1675 | 🗓️Are you ready for this week’s activities?\n\... | Positive |
| 1676 | 🗓️Are you ready for this week’s activities?\n\... | Positive |
| 1677 | The Great Indian Recipe Contest has started. A... | Positive |
| 1678 | Looking to rent an exceptional 1-4 bedroom apa... | Spam |
| 1679 | Visit Sultanate of Oman Pavilion and learn abo... | Neutral |
| 1680 | We are within. \nDubai 2020 EXPO.\n\nJust like... | Neutral |
| 1681 | Break, shatter and de-stress yourself at The S... | Spam |
| 1682 | The Great Indian Recipe Contest has started. A... | Neutral |
| 1683 | I'm available, I'm ready to serve, please mass... | Spam |
| 1684 | Are you ready for a breathtaking trip? Keep yo... | Positive |
| 1685 | Get ready for Wonderland!🔥A snippet of what to... | Positive |
| 1686 | LAMBORGHINI URUS - not like a sports car as Us... | Spam |
| 1687 | I'm available, I'm ready to serve, please mass... | Spam |
| 1688 | #RisalaFurniture provide best quality #Motoriz... | Spam |
| 1689 | #Dubai’s economy to take a massive dip in 2022... | Negative |
| 1690 | 15 years and counting! 🥳 LeasePlan UAE celebra... | Positive |
| 1691 | #UAEReleaseHafeezBaloch #DubaiExpo2020 \n@POTU... | Spam |
| 1692 | Expo 2020 Dubai global goals business forum em... | Neutral |
| 1693 | Your reliable partner in Azerbaijan. You can a... | Spam |
| 1694 | Honey Types That Are Good For Skin\nIf you wan... | Spam |
| 1695 | Dubai has reinforced its status as a destinati... | Positive |
| 1696 | Chuckchilli is a unique Mzansi style home made... | Neutral |
| 1697 | Whether you need a quick deploying base statio... | Spam |
| 1698 | Special incentives have been given to Cinema h... | Spam |
| 1699 | The government has taken concrete steps for th... | Spam |
| 1700 | Come and witness the rich heritage, culture an... | Positive |
| 1701 | @SamiYusuf \n\n❤️💫✨ LOVE THIS ❤️✨💫\n \nFor ful... | Positive |
| 1702 | Come and witness the rich heritage, culture an... | Positive |
| 1703 | Minister of State for Foreign Trade. The deleg... | Positive |
| 1704 | Assistant Minister of Foreign Affairs and Inte... | Positive |
| 1705 | @expo2020_jp Earn 7000 from our rich Arabic an... | Spam |
| 1706 | The official ceremony was capped off with a mu... | Positive |
| 1707 | Culturally rich and art loving Pakistan 🇵🇰🇵🇰🇵🇰... | Positive |
| 1708 | Looking to start your business in #Dubai ? Loo... | Spam |
| 1709 | @parveen_mehnaz @RNAKOfficial @iAliTajGB Why d... | Spam |
| 1710 | Wooden arch is on a roll - and we loved Moriya... | Positive |
| 1711 | British actress Amy Jackson recalls fond memor... | Positive |
| 1712 | President @Isaac_Herzog highlighted the impact... | Positive |
| 1713 | 🎀🎀🎀SPECIAL ANNOUNCEMENT🎀🎀🎀\nOn 2-2-22 (2nd Feb... | Spam |
| 1714 | 📢📢📢SPECIAL ANNOUNCEMENT📢📢📢\nOn 2-2-22 (2nd Feb... | Spam |
| 1715 | 🎀🎀🎀SPECIAL ANNOUNCEMENT🎀🎀🎀\nOn 2-2-22 (second ... | Spam |
| 1716 | This Performance can make us emotional. The ex... | Positive |
| 1717 | All companies or countries with investments in... | Hate |
| 1718 | UAE\nWhere is Hafeez Baloch\n\n#Dubai \n#Dubai... | Spam |
| 1719 | UAE\nWhere is Hafeez Baloch\n\n#Dubai \n#Dubai... | Spam |
| 1720 | Where is #HafeezBaloch?\n#UAE #Dubai #DubaiExp... | Spam |
| 1721 | UAE\nWhere is Hafeez Baloch\n\n#Dubai \n#Dubai... | Spam |
| 1722 | @YaserAlyamani #UAE will be a conflict zone fo... | Spam |
| 1723 | inaugurated the Egyptian Genome Project in an ... | Neutral |
| 1724 | @ACentaurMedia @NatashaTurak @CNBC #UAE will b... | Spam |
| 1725 | @_HadleyGamble @CNBC @CNBCi @CNBCMiddleEast @H... | Spam |
| 1726 | @Adinoadonai #UAE will be a conflict zone for ... | Spam |
| 1727 | @Ghada_Makhoul @GuruOfficial @ItsMePragya #UAE... | Spam |
| 1728 | @mega_guide #UAE will be a conflict zone for a... | Spam |
| 1729 | @GoodnessUae #UAE will be a conflict zone for ... | Spam |
| 1730 | @TRintheworld #UAE will be a conflict zone for... | Spam |
| 1731 | @Aslamiyaan @modgovae #UAE will be a conflict ... | Spam |
| 1732 | @VugarBayramov3 #UAE will be a conflict zone f... | Spam |
| 1733 | @DefenceInsight_ #UAE will be a conflict zone ... | Spam |
| 1734 | Assam Tea and Muga Silk are 2 products from th... | Positive |
| 1735 | @qassim_mrs #UAE will be a conflict zone for a... | Spam |
| 1736 | @NorwayUN @UNinYE @NorwayMFA @UAEMissionToUN @... | Spam |
| 1737 | @tVoiceOfCitizen #UAE will be a conflict zone ... | Hate |
| 1738 | @EDAC_EN #UAE will be a conflict zone for a fa... | Spam |
| 1739 | @UAE_Forsan @KensingtonRoyal @expo2020dubai @U... | Hate |
| 1740 | @JustineZwerling @ChabadUae @michaldivon @Ostr... | Spam |
| 1741 | @TheNihariKing #UAE will be a conflict zone fo... | Spam |
| 1742 | @MariamAlmzrouei #UAE will be a conflict zone ... | Spam |
| 1743 | @MoustafaFahour #UAE will be a conflict zone f... | Spam |
| 1744 | @TheCradleMedia #UAE will be a conflict zone f... | Spam |
| 1745 | .@ArchDigest: Colombia’s Pavilion at @expo2020... | Positive |
| 1746 | @LadyVelvet_HFQ #UAE will be a conflict zone f... | Spam |
| 1747 | @MalcolmNance It’s not #Iran, it’s #Yemen.We’r... | Spam |
| 1748 | @aljundijournal #UAE will be a conflict zone f... | Hate |
| 1749 | @Sarahalii99 Not anymore. #UAE will be a confl... | Spam |
| 1750 | @sirajnoorani #UAE will be a conflict zone for... | Spam |
| 1751 | @HeshmatAlavi #UAE will be a conflict zone for... | Spam |
| 1752 | @CyclistAnons #UAE will be a conflict zone for... | Spam |
| 1753 | @magedmahmoudEGY #UAE will be a conflict zone ... | Spam |
| 1754 | @xhacka_olta @AlEmbassyUAE @MoFAICUAE #UAE wil... | Spam |
| 1755 | @HalimaA69689825 #UAE will be a conflict zone ... | Spam |
| 1756 | Assam Tea is over 170 years old and plays a ve... | Spam |
| 1757 | @halimalmhiri Bla bla bla. #UAE will be a conf... | Spam |
| 1758 | @HindNyadu #UAE will be a conflict zone for a ... | Hate |
| 1759 | @sadiq_zaf #UAE will be a conflict zone for a ... | Spam |
| 1760 | @SMQureshiPTI @ABZayed #UAE will be a conflict... | Spam |
| 1761 | @Ostrov_A It is #Yemen bold head 😂. #UAE will ... | Spam |
| 1762 | @realbawamp #UAE will be a conflict zone for a... | Spam |
| 1763 | @Fatimalketbi1 #UAE will be a conflict zone fo... | Spam |
| 1764 | @shabzdxb #UAE will be a conflict zone for a f... | Spam |
| 1765 | @hellopixy Hilarious 😂. #UAE will be a conflic... | Spam |
| 1766 | @edrormba #UAE will be a conflict zone for a f... | Hate |
| 1767 | My love 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | Spam |
| 1768 | @_sangpuchangsan #UAE will be a conflict zone ... | Spam |
| 1769 | @RabbiPoupko @uaeinhebrew @UAEIsraelBiz @uae21... | Spam |
| 1770 | @Krommsan #UAE will be a conflict zone for a f... | Spam |
| 1771 | @ZainabAlikd1 #UAE will be a conflict zone for... | Spam |
| 1772 | @gyanjarahatke #UAE will be a conflict zone fo... | Spam |
| 1773 | @no_itsmyturn #UAE will be a conflict zone for... | Spam |
| 1774 | @LMMiddleEast @OmranAlhammadi_ #UAE will be a ... | Hate |
| 1775 | @ZaidBenjamin5 #UAE will be a conflict zone fo... | Spam |
| 1776 | @Qasemebnlhasan #UAE will be a conflict zone f... | Spam |
| 1777 | @shieldintel #UAE will be a conflict zone for ... | Spam |
| 1778 | New Dubai Vlog Check it out here 👇\n\n#dubai #... | Neutral |
| 1779 | #Rwanda National Day is almost here! \n\nTune ... | Positive |
| 1780 | @AlMehairiAUH @etihad @AUH #AboDhabi is not th... | Spam |
| 1781 | @hamzaxofficial #UAE will be a conflict zone f... | Hate |
| 1782 | @mujrn Not anymore. #UAE will be a conflict zo... | Spam |
| 1783 | @AminaJMohammed #UAE will be a conflict zone f... | Spam |
| 1784 | @Mohamma49356772 #UAE will be a conflict zone ... | Spam |
| 1785 | @affeu2 #UAE will be a conflict zone for a fat... | Spam |
| 1786 | @AD_GQ #UAE will be a conflict zone for a fata... | Spam |
| 1787 | @halimalmhiri #UAE will be a conflict zone for... | Neutral |
| 1788 | @HodoMure #UAE will be a conflict zone for a f... | Spam |
| 1789 | @viper202020 It is #Yemen. #UAE will be a conf... | Spam |
| 1790 | :::TODAY:::\n#Rwanda @Expo2020Dubai\n#Expo2020... | Neutral |
| 1791 | @borneast55 #UAE will be a conflict zone for a... | Spam |
| 1792 | #UAE not safe anymore #Emirates #Expo2020 #D... | Hate |
| 1793 | Live@Expo: Belarus, Samoa, and Saint Lucia Pav... | Neutral |
| 1794 | We salute the Architects of Modern India and t... | Positive |
| 1795 | Dubai EXPO 2022 Holiday - Get Super Saver Pack... | Spam |
| 1796 | End of Winter Season super saver Package to vi... | Spam |
| 1797 | End of Winter Season super saver Package to vi... | Spam |
| 1798 | This art form is made to show beautiful illust... | Positive |
| 1799 | India promoting Kashmir in #DubaiExpo #dubaiex... | Neutral |
| 1800 | #CROWNSUP! Phenomenal dance group The Royal Fa... | Positive |
| 1801 | :::TODAY:::\n#Rwanda @Expo2020Dubai\n#Expo2020... | Neutral |
| 1802 | Meet the "faces" of our pavilion - frontliners... | Positive |
| 1803 | It has been years in the planning so it was in... | Positive |
| 1804 | In a world driven by technological innovation,... | Neutral |
| 1805 | AIM 2022 Startup welcomes AgroTop, an online p... | Neutral |
| 1806 | Congratulations Leading Hero of the Month. Rya... | Positive |
| 1807 | @altcryptocom https://t.co/e8rRPV4Mnd\n#niros ... | Spam |
| 1808 | @rovercrc https://t.co/P8mlU72YVc Please Check... | Spam |
| 1809 | @SharksCoins https://t.co/e8rRPV4Mnd\n#niros #... | Spam |
| 1810 | @choocolatier https://t.co/e8rRPV4Mnd\n#niros ... | Spam |
| 1811 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | Spam |
| 1812 | :::TODAY:::\n#Rwanda @Expo2020Dubai\n#Expo2020... | Neutral |
| 1813 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | Spam |
| 1814 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | Spam |
| 1815 | @Crypto__emily https://t.co/e8rRPV4Mnd\n#niros... | Spam |
| 1816 | @SharksCoins https://t.co/kR02ranic7 Please Ch... | Spam |
| 1817 | @SharksCoins https://t.co/e8rRPV4Mnd\n#niros #... | Spam |
| 1818 | @pushpendrakum https://t.co/kR02ranic7 Please ... | Spam |
| 1819 | @Whalesincoming @altcryptocom @Shibtoken @BscP... | Spam |
| 1820 | @propeus00 https://t.co/e8rRPV4Mnd\n#niros #ni... | Spam |
| 1821 | @propeus00 https://t.co/e8rRPV4Mnd\n#niros #ni... | Spam |
| 1822 | @SharksCoins https://t.co/e8rRPV4Mnd\n#niros #... | Spam |
| 1823 | Passing through Amazon Jungle.\n@expo2020peru ... | Neutral |
| 1824 | @AltcoinAdvisor_ @GalaxyHeroesGHC @CheemsInu @... | Spam |
| 1825 | @AltcoinAdvisor_ @GalaxyHeroesGHC @CheemsInu @... | Spam |
| 1826 | @pushpendrakum https://t.co/e8rRPV4Mnd\n#niros... | Spam |
| 1827 | @pushpendrakum https://t.co/e8rRPV4Mnd\n#niros... | Spam |
| 1828 | @pushpendrakum https://t.co/e8rRPV4Mnd\n#niros... | Spam |
| 1829 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | Spam |
| 1830 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | Spam |
| 1831 | @Whalesincoming https://t.co/e8rRPUNaYD\n#niro... | Spam |
| 1832 | @davidgokhshtein Same here with \nhttps://t.co... | Spam |
| 1833 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | Spam |
| 1834 | Here are the deets on todays show! Tune in at ... | Positive |
| 1835 | @pushpendrakum https://t.co/e8rRPV4Mnd\n#niros... | Spam |
| 1836 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | Spam |
| 1837 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | Spam |
| 1838 | @Whalesincoming https://t.co/e8rRPV4Mnd\n#niro... | Spam |
| 1839 | @CryptosBatman https://t.co/kR02ranic7 Please ... | Spam |
| 1840 | @CryptosBatman https://t.co/kR02ranic7 Please ... | Spam |
| 1841 | @pushpendrakum https://t.co/kR02ranic7 Please ... | Spam |
| 1842 | @CryptosBatman https://t.co/kR02ranic7 Please ... | Spam |
| 1843 | @CryptosBatman https://t.co/kR02ranic7 Please ... | Spam |
| 1844 | @pushpendrakum https://t.co/kR02ranic7 Please ... | Spam |
| 1845 | the Ladies Club Design\nfrom Emarati Engineeri... | Spam |
| 1846 | @pushpendrakum https://t.co/kR02ranic7 Please ... | Spam |
| 1847 | @pushpendrakum https://t.co/e8rRPV4Mnd Please ... | Spam |
| 1848 | #ItalyPavilion expresses #solidarity with #Ton... | Positive |
| 1849 | @AuqustNX @Bitcoinsensus @alienworldwars @Niro... | Spam |
| 1850 | @AuqustNX @BTCTN @NirosXFinance @NirosFinance ... | Spam |
| 1851 | @AuqustNX @dinaamattarr @NirosXFinance @NirosF... | Spam |
| 1852 | @AuqustNX @JakeGagain @NirosXFinance https://t... | Spam |
| 1853 | “We are the people of love."\nDeep emotions! I... | Positive |
| 1854 | Immerse and indulge yourself in this spectacul... | Spam |
| 1855 | @Dubai_Calendar @WeAreAlsayegh https://t.co/WA... | Neutral |
| 1856 | The health industry responded to COVID-19 by a... | Neutral |
| 1857 | Join for Global Goals week to see more spectac... | Positive |
| 1858 | Here are 10 photographs from @arrahman and @sh... | Positive |
| 1859 | Ecstatic music,Spiritual journey breathtaking ... | Positive |
| 1860 | Expo 2020 to celebrate International Day of Ed... | Positive |
| 1861 | US Commissioner-General Robert Clark & his... | Positive |
| 1862 | Sometimes a happy accident ends up creating a ... | Spam |
| 1863 | The Commissioner-General for Brazil at Expo 20... | Positive |
| 1864 | Need a break? We invite you to the Bosnia and ... | Positive |
| 1865 | Our guests spent some time at our elegant rest... | Positive |
| 1866 | We received a visit from Harsh Mehta, MD, Sanc... | Spam |
| 1867 | In collaboration with the United States, this ... | Positive |
| 1868 | Then, at Igarapé Hall, the curator of “Beyond ... | Positive |
| 1869 | All #sports #fans were in for a treat because ... | Positive |
| 1870 | Come & discover the stunning Caatinga biom... | Positive |
| 1871 | Expo 2020 Dubai hosted a great discussion on i... | Positive |
| 1872 | We hosted a great discussion on inclusive and ... | Positive |
| 1873 | Don't miss out on mega-talent Jacob Collier, w... | Positive |
| 1874 | Dubai expo run 2020/22\n10km goal accomplished... | Neutral |
| 1875 | Here are the highlights of the advanced Master... | Neutral |
| 1876 | Recognizing the significance of gender equalit... | Spam |
| 1877 | Mission Possible\n\nGear used @pentax.photogra... | Spam |
| 1878 | HE Sarah bint Yousif Al Amiri: I spoke Cluster... | Positive |
| 1879 | Mission Possible\n\nGear used @pentax.photogra... | Positive |
| 1880 | I listening this exuberant masterpiece by hold... | Positive |
| 1881 | #DubaiExpo2020\nIt’s a Grand, beautiful and ey... | Positive |
| 1882 | #Expo2020 Russian Pavilion was amazing! Concep... | Positive |
| 1883 | What an amazing and fascinating place, unlike ... | Positive |
| 1884 | Oum - An amazing mix of hassani, #jazz, #gospe... | Spam |
| 1885 | Hanging out at @expo2020dubai with the amazing... | Positive |
| 1886 | Ms. @midianalmeida, celebrated Brasilian singe... | Positive |
| 1887 | #MomentsThatMatter presents to you “Creating o... | Neutral |
| 1888 | #MomentsThatMatter presents to you “Creating o... | Spam |
| 1889 | At #VinylFlooring , #Vinyl #CarpetTiles Dubai ... | Spam |
| 1890 | Bring Gourmet Delicacy from around the world t... | Spam |
| 1891 | @XxZroyaxX Hi, your tweets are amazing. We are... | Spam |
| 1892 | @ZebraAlexandria Hi, your tweets are amazing. ... | Spam |
| 1893 | THE MOST ATTRACTIVE AND COLORFUL FACADE @expo2... | Positive |
| 1894 | Join us for a week of events and activities as... | Positive |
| 1895 | Saudi coffee represents an ancient culture tha... | Positive |
| 1896 | At #Expo2015, #Brazil took home Honorable Ment... | Positive |
| 1897 | Award-winning author #FlavelMonteiro is on #St... | Positive |
| 1898 | Welcomed by Filipino hospitality, James Deakin... | Positive |
| 1899 | Meet Grace, a talented handicraft specialist f... | Positive |
| 1900 | Inspired by AlUla is a collection of retail ce... | Neutral |
| 1901 | #Expo2020 #Dubai has resumed school visits and... | Positive |
| 1902 | Congratulations to United World College ISAK J... | Positive |
| 1903 | Shahid Rassam, an award-winning artist and for... | Positive |
| 1904 | Throughout this joyous day, we gave away speci... | Positive |
| 1905 | GM🌗GE-#FAZZA🇦🇪😘1⃣🦅❤️\nWow😍Love the picture of ... | Positive |
| 1906 | Saudi Commissioner General pay respects for th... | Positive |
| 1907 | #DubaiExpo is simply awesome, the arrangements... | Positive |
| 1908 | A promotion which made me awestruck !!!\n@emir... | Positive |
| 1909 | https://t.co/Xokv2QSrNZ\nIncredible arrangemen... | Positive |
| 1910 | The ‘Opportunity Gate’ looking beautiful at su... | Positive |
| 1911 | White sandy beaches, a beautiful coral reef an... | Positive |
| 1912 | Hello, #Dubai! #expo2020 #pakistan https://t.c... | Neutral |
| 1913 | @SamiYusuf 🎶🎼\nSo beautiful and so much\nLove ... | Positive |
| 1914 | The #SaudiArabia Pavilion presents timeless me... | Positive |
| 1915 | A beautiful design at the Dubai expo.\n#expo20... | Positive |
| 1916 | #Repost @samiyusuf\n...\nO you who blame,\nDo ... | Positive |
| 1917 | @gvizor @MarlinProtocol Hey there, we are lovi... | Spam |
| 1918 | @cordeira_joe Hey there, we are loving the pos... | Spam |
| 1919 | Sign up for Canon Professional Services and st... | Neutral |
| 1920 | Sign up for Canon Professional Services and st... | Positive |
| 1921 | Wow another one of my portfolio at the #DubaiE... | Positive |
| 1922 | #AbuDhabiCarpets is the best place to look for... | Spam |
| 1923 | Expo 2020 Dubai records 11 million visits with... | Positive |
| 1924 | Participate and share your experience for a ch... | Positive |
| 1925 | UAE: How Dubai became world's best tourist des... | Positive |
| 1926 | The RCA's @HHCDesign Director @RamaGheerawo wi... | Neutral |
| 1927 | Celebrating #EducationDay I’m reminded of an e... | Spam |
| 1928 | The ironic food on the table becomes more inti... | Positive |
| 1929 | Great start to the week, we are shooting world... | Neutral |
| 1930 | Now is the best time to come to Dubai, why?\n\... | Positive |
| 1931 | Get your Dubai Visa on best rates.\n\n#Dubai #... | Spam |
| 1932 | More than 10 million visits to @expo2020dubai ... | Positive |
| 1933 | Mercure Hotel - Barsha Heights\nDeluxe Suite\n... | Spam |
| 1934 | The opening ceremony of Gilgit-Baltistan as th... | Neutral |
| 1935 | Mercure Hotel - Barsha Heights\nDeluxe Suite\n... | Spam |
| 1936 | Buy #AntiSlip #Vinyl from #VinylFlooring in Du... | Spam |
| 1937 | At #ParquetFlooring we have the best and quali... | Spam |
| 1938 | My first 3km run at Expo2020. Happy to give my... | Positive |
| 1939 | Shukriya Dubai ! One of the best nights of my ... | Positive |
| 1940 | Together at the @expo2020dubai let's make the ... | Positive |
| 1941 | Explore the gateway to the world of future at ... | Positive |
| 1942 | We came together as one to \nensure a better a... | Spam |
| 1943 | The bliss of Brazil comes to #IndiaPavilion.\n... | Positive |
| 1944 | LIVE! Rosatom Week at #expo2020 is presenting ... | Positive |
| 1945 | We would love to wish you all a Happy Chinese ... | Positive |
| 1946 | India’s tourism sector shines bright at @expo2... | Positive |
| 1947 | #ICYMI As part of #InternationalDayofEducation... | Neutral |
| 1948 | Capable of sorting 240 tonnes of multiple wast... | Neutral |
| 1949 | Today is #Luxembourg Day @expo2020dubai 🎆\nWe... | Positive |
| 1950 | The most important day for #ElSalvador has com... | Positive |
| 1951 | Explore a range of events and activities at th... | Positive |
| 1952 | Education is the passport to our future and th... | Positive |
| 1953 | Begin a new age of possibilities and celebrate... | Positive |
| 1954 | Meet us at #Expo2020 in Dubai to celebrate Rwa... | Positive |
| 1955 | Rwanda will celebrate it’s National Day on 1st... | Positive |
| 1956 | @Ksayinzoga, CEO of @BRDbank, discussing gende... | Positive |
| 1957 | To celebrate his country’s national day, HE Mo... | Positive |
| 1958 | We cannot contain our excitement! 🤩 We look fo... | Positive |
| 1959 | Today we are excited to celebrate Luxembourg ... | Positive |
| 1960 | #IndiaPavilion at #Expo2020 #Dubai yesterday ... | Positive |
| 1961 | If you believe you are an expert at SDGs and h... | Positive |
| 1962 | #IndiaPavilion at @expo2020dubai celebrated ‘#... | Positive |
| 1963 | #IndiaPavilion at #Expo2020 #Dubai yesterday c... | Positive |
| 1964 | India Pavilion at #Expo2020 Dubai yesterday c... | Positive |
| 1965 | In celebration of his country’s national day, ... | Neutral |
| 1966 | Celebration of #ParakramDiwas, #IndiaPavilion ... | Positive |
| 1967 | Do you want to see what happens in the Swedish... | Neutral |
| 1968 | Highlights of Republic of Singapore’s National... | Positive |
| 1969 | The #UAEPavilion celebrated the National Day o... | Positive |
| 1970 | First impressions from the Luxembourg National... | Positive |
| 1971 | Expo 2020’s UK National Day to have a Royal vi... | Neutral |
| 1972 | The #IndiaPavilion and #BrasilPavilion both ce... | Positive |
| 1973 | #ARRahman #KhatijaRahman #DubaiExpo2020\nthe l... | Positive |
| 1974 | We’ll make sure you have a memorable experienc... | Spam |
| 1975 | What India shows at #DubaiExpo and what we sho... | Neutral |
| 1976 | 🇦🇪 @Emirates' colorful Airbus A380 (A6-EEU) wi... | Spam |
| 1977 | Enjoy the freedom of movement with Bharat Thak... | Positive |
| 1978 | The winners of the India-Sweden Healthcare Inn... | Positive |
| 1979 | Travel to and from Dubai via Abu Dhabi with Et... | Spam |
| 1980 | Congratulations on successful representation o... | Positive |
| 1981 | 🔔We are delighted to have been present at this... | Positive |
| 1982 | Congratulations to #Kazakhstan for the great p... | Positive |
| 1983 | Congratulations Expo 2020 Dubai Employees of t... | Positive |
| 1984 | We congratulate @dmutanga for being the first ... | Spam |
| 1985 | This was my first time to watch Korea's tradit... | Positive |
| 1986 | Expo 2020 Dubai to see India’s Jammu & Kas... | Neutral |
| 1987 | "I wish my death had been the decisive one."\n... | Spam |
| 1988 | Additionally, in order to bring Indian Heritag... | Positive |
| 1989 | His Highness Sheikh Mohammed bin Rashid meets ... | Neutral |
| 1990 | In the sleep of this separation blood-stained ... | Spam |
| 1991 | Discover on the esplanade our new photo exhibi... | Positive |
| 1992 | Welcome To Dubai:\nThe Future Starts Here @exp... | Neutral |
| 1993 | We are delighted to host our session with @Pre... | Positive |
| 1994 | So delighted to have spent time with our Zambi... | Positive |
| 1995 | The Pakistan Pavilion at Expo2020 would be del... | Positive |
| 1996 | We buy and sell radiator and fan.\nContact us ... | Spam |
| 1997 | "Dignity" (coming soon) Art that connects the ... | Spam |
| 1998 | The "dynamic role played by Minister @LindiweS... | Positive |
| 1999 | #IndiaPavilion's one of the most dynamic perfo... | Positive |
| 2000 | Basically a fancy spaza shop with no aircon th... | Negative |
| 2001 | I like all pavilions but UAE , Saudi and Czec... | Positive |
| 2002 | Get your mattresses shampooed by our professio... | Spam |
| 2003 | Help full process for company formation in Dub... | Spam |
| 2004 | Today we are featured in the Jamaica Gleaner f... | Positive |
| 2005 | #LittleAngelsOfKorea #DubaiExpo #RepublicOfKor... | Positive |
| 2006 | Coming soon at Creek Beach - Rosewater, 3 eleg... | Spam |
| 2007 | Empower employees for success with step-by-ste... | Positive |
| 2008 | BOOK your DUBAI Tour now,\nCLICK here: https:/... | Spam |
| 2009 | #PrinceWilliam will visit the United Arab Emir... | Neutral |
| 2010 | Are you at @expo2020dubai ?\nCome and enjoy ou... | Positive |
| 2011 | Innovation Factory will soon be inviting the w... | Spam |
| 2012 | We're about half way through @Expo2020 Dubai a... | Positive |
| 2013 | #Travel dilemma: Can't make up my mind for the... | Neutral |
| 2014 | Elias Martins, Brazil Commissioner-General at ... | Positive |
| 2015 | Here is a glimpse of this morning’s Expo 2020 ... | Positive |
| 2016 | @expo2020dubai Thx for the task! I was at #ex... | Positive |
| 2017 | Are you enjoying our content so far?\nLet us k... | Spam |
| 2018 | Black Eyed Pea land in Dubai. I was lucky enou... | Positive |
| 2019 | Expo love. Can't get enough of this place \n#e... | Positive |
| 2020 | His Highness Sheikh Mohamed bin Zayed Al Nahya... | Positive |
| 2021 | The growth is mainly due to the Expo 2020 exhi... | Positive |
| 2022 | At #DubaiRugs, #Nain #Rug is our one of the ma... | Spam |
| 2023 | #China pavilion at @expo2020dubai starts celeb... | Positive |
| 2024 | We take you behind the scenes of the kitchen o... | Positive |
| 2025 | Don’t forget to be a part of our National Day ... | Positive |
| 2026 | Super excited to be at the @expo2020dubai toda... | Positive |
| 2027 | Limited Edition has a wide range of luxurious ... | Spam |
| 2028 | Excited @UOW team heading out tomorrow #Expo2... | Positive |
| 2029 | .@UOW team Excited to be heading to #Dubai to ... | Positive |
| 2030 | 'Unveiling opportunities of #GB' our exciting ... | Positive |
| 2031 | Immerse yourself in sustainable technology. Fe... | Positive |
| 2032 | Another exciting week @expo2020dubai comes to ... | Positive |
| 2033 | Another exciting week @expo2020dubai comes to ... | Positive |
| 2034 | Italy's is the favourite Pavilion for those ha... | Positive |
| 2035 | Embark on an exciting journey and explore Expo... | Positive |
| 2036 | Embark on an exciting journey and explore Expo... | Positive |
| 2037 | #ExperienceIndia at the BurJuman Mall in Bur D... | Spam |
| 2038 | 20 exquisite #ODOP products from across the le... | Positive |
| 2039 | Add me on whatspp for your massage and other e... | Spam |
| 2040 | Dubai is hosting the greatest world's fair yet... | Positive |
| 2041 | Gujarat has given India a great heritage in em... | Positive |
| 2042 | Gujarat has given India a great heritage in em... | Positive |
| 2043 | Madhubani painting is one of the many famous I... | Spam |
| 2044 | @drshamamohd The description I heard was that ... | Negative |
| 2045 | Make your company identity, restaurant, or caf... | Spam |
| 2046 | New Zealand to host a fantastic live show at @... | Positive |
| 2047 | The models displayed are fantastic at Dubai Ex... | Positive |
| 2048 | At this fascinating World Majlis; ‘Extending t... | Positive |
| 2049 | At this fascinating World Majlis, “Extending t... | Positive |
| 2050 | #Women throughout history around the world hav... | Positive |
| 2051 | Women throughout history have been champions o... | Neutral |
| 2052 | #Expo2020 USB For Fast Charger Charging Cable ... | Neutral |
| 2053 | @dubai_south is UAE's fastest-developing #smar... | Spam |
| 2054 | Visiting #Dubai soon? Make sure to check out o... | Positive |
| 2055 | Explore Your Favorite Travel Destination\n👇👇👇👇... | Spam |
| 2056 | The session with @Ksayinzoga CEO of @BRDbank i... | Neutral |
| 2057 | 10k run!! First one of the year and after a lo... | Positive |
| 2058 | Storytelling is an art. And @DaniaDroubi is a ... | Positive |
| 2059 | @drshamamohd As usual, you both seem to seeing... | Neutral |
| 2060 | Less than 12 hours until the 3 day event "Mobi... | Neutral |
| 2061 | Tune in for today's free International Day of ... | Positive |
| 2062 | The Expo 2020 Kids’ Camp allows children to le... | Positive |
| 2063 | Free WiFi @ Expo2020 Dubai. \nJust accept term... | Positive |
| 2064 | 24-hour #LiveEvent #ActNowVR World Premiere 36... | Positive |
| 2065 | It's free to attend with your Expo 2020 ticket... | Positive |
| 2066 | Goa Showcases Investment-friendly Policies to ... | Neutral |
| 2067 | 🗓️ Tomorrow 13:00 CET online: Join @JordanKlar... | Positive |
| 2068 | Goa Showcases Investment-friendly Policies to ... | Neutral |
| 2069 | #GoaDiary_Goa_News_External Goa showcases in... | Positive |
| 2070 | Post Edited: Goa Showcases Investment-friendly... | Neutral |
| 2071 | Goa Showcases Investment-friendly Policies to ... | Neutral |
| 2072 | Goa Showcases Investment-friendly Policies to ... | Neutral |
| 2073 | - Goa Showcases Investment-friendly Policies t... | Positive |
| 2074 | Goa Showcases Investment-friendly Policies to ... | Neutral |
| 2075 | Goa Showcases Investment-friendly Policies to ... | Neutral |
| 2076 | Goa Showcases Investment-friendly Policies to ... | Positive |
| 2077 | Goa Showcases Investment-friendly Policies to ... | Positive |
| 2078 | @ArabNewsjp @tanaka_tatsuya @expo2020_jp Super... | Positive |
| 2079 | Goa Showcases Investment-friendly Policies to ... | Neutral |
| 2080 | JOIN #GEM #GlobalEntrepreneurshipMonitor \n\nA... | Neutral |
| 2081 | I couldn’t travel for #ExpoLive #GlobalGoalsWe... | Positive |
| 2082 | Glad to welcome this new exhibition by Swiss c... | Positive |
| 2083 | The crowning glory of #Expo2020... Don't miss ... | Positive |
| 2084 | The world's largest, aluminium and gold-plated... | Neutral |
| 2085 | @bitone_twit good project!\n@doc0102 @dubaiexp... | Spam |
| 2086 | Good morning #DubaiExpo https://t.co/SKT9XR1Lyn | Neutral |
| 2087 | Good morning from @RafflesThePalm #Dubai @raff... | Spam |
| 2088 | Just watched the @ParrisGoebel voices of youth... | Positive |
| 2089 | Over 200 Indian #startups get opportunity to s... | Positive |
| 2090 | Dear Pakistanio, we can generate good business... | Spam |
| 2091 | Have good event my friends \nGood news for me ... | Positive |
| 2092 | Korea Team Performance \nGood one @expo2020dub... | Positive |
| 2093 | LIVE! The grand finale of Rosatom Week at #exp... | Positive |
| 2094 | In 1 hr! The grand finale of Rosatom Week at #... | Positive |
| 2095 | Our new temporary exhibition "Grand Paris Expr... | Spam |
| 2096 | Innovators should not miss this great opportun... | Positive |
| 2097 | Don’t miss this great opportunity: \n#Rwanda ’... | Positive |
| 2098 | #Expo2020Dubai focuses on #education this week... | Positive |
| 2099 | #TeamTataCommunications is now officially at #... | Positive |
| 2100 | Today we are excited to celebrate Rwanda 🙌\nD... | Positive |
| 2101 | He was talking about beaches in Australia and ... | Positive |
| 2102 | A great event to be #dubai #expo2020 https://t... | Positive |
| 2103 | It was a great honour to have H.E @HHichilema ... | Positive |
| 2104 | Loved #expo2020 in Dubai. #UN SDGs framing bu... | Positive |
| 2105 | The @expo2020dubai @cartier #WomensPavilion co... | Positive |
| 2106 | #DubaiExpo2020 - The Greatest Show? - BBC Clic... | Positive |
| 2107 | @richharvey Hey, this is an interesting tweet.... | Spam |
| 2108 | @Duffernutter Hey, this is an interesting twee... | Spam |
| 2109 | @uniper_energy @Microsoft Hey, this is an inte... | Spam |
| 2110 | Happy Weekend everyone! #Dubai #weekendvibes #... | Spam |
| 2111 | “Champions have a way of making things happen ... | Spam |
| 2112 | Expo 2020 Dubai celebrates Lunar New Year at t... | Positive |
| 2113 | @Meghna_venture @drshamamohd Basically She Is ... | Negative |
| 2114 | Happy customer review of our Dubai Expo tour i... | Positive |
| 2115 | @ShannaCMA Hey, this is an interesting tweet. ... | Spam |
| 2116 | @bluecollections Hey, this is an interesting t... | Spam |
| 2117 | @GraanaCom Hey, this is an interesting tweet. ... | Spam |
| 2118 | @sojihausa @PaboskiW @AvantLacasa @harunbroker... | Spam |
| 2119 | Burj khalifa Fireworks | Wish you Happy New Ye... | Spam |
| 2120 | Today we are happy to introduce you to Thomas ... | Positive |
| 2121 | 'Make A Wish' Makes Two Siblings Happy in the ... | Positive |
| 2122 | Happy to share that we are at the Arab Health ... | Spam |
| 2123 | In marking the State of Israel's National Day ... | Positive |
| 2124 | The real happiness is when you do what you wan... | Positive |
| 2125 | Play your part in making people happier at #Ex... | Positive |
| 2126 | The #KuwaitPavilion at #Expo2020Dubai is happy... | Positive |
| 2127 | @CryptoPatron2 Hey, this is an interesting twe... | Spam |
| 2128 | @MerckHealthcare Hey, this is an interesting t... | Spam |
| 2129 | Cambodia pavilion. Peace and harmony. \n#expo2... | Positive |
| 2130 | We eat well and rest well,healthy body is a he... | Spam |
| 2131 | Which platforms are helping to democratise inn... | Neutral |
| 2132 | At “Helping Women Thrive,” we gathered women i... | Positive |
| 2133 | Which platforms are helping to democratise inn... | Neutral |
| 2134 | #Expo2020 #Dubai celebrated an important Emira... | Positive |
| 2135 | Part of the world’s largest Holy Quran was rec... | Positive |
| 2136 | World's Largest Holy Quran to go on display at... | Positive |
| 2137 | #tilalalfurjan comes hot on the heels of the s... | Spam |
| 2138 | 🤔 #DYK that in the #UAE business leaders have ... | Spam |
| 2139 | As the world faces a climate crisis, KKL-JNF’s... | Spam |
| 2140 | 1/2 Morocco has become an important economic h... | Positive |
| 2141 | Your account is impressive! To find more infor... | Spam |
| 2142 | @uniper_energy Hey, your tweet is impressive! ... | Spam |
| 2143 | @yyachts Your account is impressive! To find m... | Spam |
| 2144 | @ReidRankinHomes Your account is impressive! T... | Spam |
| 2145 | Director General, Expo 2020 Dubai, at an offic... | Positive |
| 2146 | @HSBC Hey, your tweet is impressive! To find m... | Spam |
| 2147 | @FinNewsNow Your account is impressive! To fin... | Spam |
| 2148 | @SAPropNetwork @DJBoonzaier001 Your account is... | Spam |
| 2149 | @AmazingCoin7 Hey, your tweet is impressive! T... | Spam |
| 2150 | Going to explore this impressive website at lu... | Neutral |
| 2151 | @TL_Briggs Your account is impressive! To find... | Spam |
| 2152 | @RoyaARealEstate Your account is impressive! T... | Spam |
| 2153 | @FernandezRealto Hey, your tweet is impressive... | Spam |
| 2154 | @RoseLinda Your account is impressive! To find... | Spam |
| 2155 | @jerrygoodejr Your account is impressive! To f... | Spam |
| 2156 | Just added number 17 to the Shapes from Expo20... | Neutral |
| 2157 | @maryam_shabazz Hey, your tweet is impressive!... | Spam |
| 2158 | @ID_razansh Your account is impressive! To fin... | Spam |
| 2159 | @RemediosJude Your account is impressive! To f... | Spam |
| 2160 | @Moderno_Decor Hey, your tweet is impressive! ... | Spam |
| 2161 | @goilaan @mophrd @GovtofPakistan @fawadchaudhr... | Spam |
| 2162 | @cantatagame Hey, your tweet is impressive! To... | Spam |
| 2163 | @NARINDIAtweets Your account is impressive! To... | Spam |
| 2164 | @SBIDHyd Your account is impressive! To find m... | Positive |
| 2165 | @JMREmarketing Hey, your tweet is impressive! ... | Spam |
| 2166 | @RichQuack Your account is impressive! To find... | Spam |
| 2167 | Ahead of Rwanda’s National Day, Minister @Muso... | Positive |
| 2168 | @TurboXBT Hey, your tweet is impressive! To fi... | Spam |
| 2169 | @contract2close_ Your account is impressive! T... | Spam |
| 2170 | @elliemcachren Your account is impressive! To ... | Spam |
| 2171 | Today, @Princymthombeni was one of the speaker... | Neutral |
| 2172 | ⚛️Watch @SamaBilbao's speech at @RosatomGlobal... | Positive |
| 2173 | Empowering & emancipating the marginalized... | Positive |
| 2174 | #Armenia’s #NationalDay will be held at #Dubai... | Positive |
| 2175 | 😲 The Incredible @Cristiano\nat the @expo2020d... | Positive |
| 2176 | Apply today for the opportunity to showcase yo... | Positive |
| 2177 | Mr. Shubham Gautam, Director of Gfarms Private... | Neutral |
| 2178 | Celebrating Namibian Tourism!\nOver the next t... | Positive |
| 2179 | Mr. Gaurav Shah, Co-founder and CIO of Communi... | Neutral |
| 2180 | The emerging innovation industry of Angola's P... | Neutral |
| 2181 | 🇨🇭 Switzerland values research! \n\nCheck out ... | Positive |
| 2182 | Accelerate #innovation in #HumanExperienceMana... | Spam |
| 2183 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 2184 | Honoured to be interviewed live by @shahindadi... | Positive |
| 2185 | A little over 2 months more to go!\nDon’t miss... | Neutral |
| 2186 | Julie Russell - Business Development Manager t... | Neutral |
| 2187 | Respiratory Innovation Wales are thrilled to b... | Positive |
| 2188 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 2189 | Muga silk is known for its extreme durability ... | Spam |
| 2190 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 2191 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 2192 | Accelerate #innovation in #HumanExperienceMana... | Spam |
| 2193 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 2194 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 2195 | Each country makes sure they transport you to ... | Positive |
| 2196 | A masterpiece design. That's is all about, inn... | Positive |
| 2197 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 2198 | @MultiChoiceGRP‘s Accelerator is an intensive ... | Spam |
| 2199 | Don't miss the largest gathering for Jordanian... | Positive |
| 2200 | The Living Laboratory was proud to join Scotla... | Positive |
| 2201 | Veehive is showcasing at the Innovation bus by... | Positive |
| 2202 | @MultiChoiceGRP Accelerator is an intensive in... | Spam |
| 2203 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 2204 | As part of the #Expo2020 #GlobalGoalsWeek, we ... | Neutral |
| 2205 | Join us in conversation with industry leaders ... | Positive |
| 2206 | The Finland pavilion @expo2020dubai showcases ... | Positive |
| 2207 | The Finland pavilion @expo2020dubai showcases ... | Positive |
| 2208 | Truly inspiring time at the @expo2020dubai #Du... | Positive |
| 2209 | Expo 2020 Dubai convened inspiring change make... | Positive |
| 2210 | #Art #Culture #Music on #EducationDay at #Duba... | Spam |
| 2211 | Now live from @expo2020dubai!\nOur Scientific ... | Neutral |
| 2212 | Inspiring people to take meaningful action, br... | Positive |
| 2213 | Expo 2020 Dubai has been global stage for SDGs... | Positive |
| 2214 | Crypto Falconry represents: \n✅UAE Culture \n✅... | Spam |
| 2215 | How do we use storytelling to humanise the SDG... | Neutral |
| 2216 | Islamic values can be an integral source for s... | Neutral |
| 2217 | @whsurveyors Your tweet seems so interesting. ... | Spam |
| 2218 | @GPN888 Your tweet seems so interesting. We ad... | Spam |
| 2219 | @kimkomando Your tweet seems so interesting. W... | Spam |
| 2220 | @windermere Your tweet seems so interesting. W... | Spam |
| 2221 | @sothebysrealty Your tweet seems so interestin... | Spam |
| 2222 | Recognition is priceless! #reemalhashimy #expo... | Neutral |
| 2223 | #ParquetFlooring supply appealing and noticeab... | Spam |
| 2224 | We are excited to welcome @cpfjo as a communit... | Positive |
| 2225 | @RClaremont Your tweet seems so interesting. W... | Spam |
| 2226 | @gavingibbons Your tweet seems so interesting.... | Spam |
| 2227 | @IoTeX_Community @SumoTex @CoinMarketCap Your ... | Spam |
| 2228 | The workshop specifically addressed challenges... | Positive |
| 2229 | @GiuPagnotta Hey, we have common interests. Yo... | Spam |
| 2230 | @TelegramTycoon Your tweet seems so interestin... | Spam |
| 2231 | @kaziislamLREA Hey, we have common https://t.c... | Spam |
| 2232 | It can take upto 6 months to complete a Banara... | Spam |
| 2233 | AUDI A5 CONVERTIBLE-Rediscover the joy of driv... | Spam |
| 2234 | Kindly contact with the details below:\nmobile... | Spam |
| 2235 | CHEVROLET TAHOE - \n➡️If you need a three-row ... | Spam |
| 2236 | #InteriorsDubai is the most leading supplier o... | Spam |
| 2237 | Women are leading the charge towards tomorrow ... | Neutral |
| 2238 | Women are leading the charge towards tomorrow.... | Positive |
| 2239 | #AbuDhabiCarpets is one of the leading manufac... | Spam |
| 2240 | Dr. Bu Abdullah meets legendary bollywood actr... | Spam |
| 2241 | Ansar allah warns #DubaiExpo in crosshairs if ... | Hate |
| 2242 | Legendary & epic & rare 💎\nA concert b... | Positive |
| 2243 | @Gemx10000 There is realy no one like #WOLVERI... | Spam |
| 2244 | @richharvey Hello, we like to read your tweets... | Spam |
| 2245 | @caribbeanmc Hello, we like to read your tweet... | Spam |
| 2246 | CHEVROLET TAHOE - \n➡️If you need a three-row ... | Spam |
| 2247 | @abslmf Hello, we like to read your tweets. If... | Spam |
| 2248 | @GaylordHansen Hello, we like to read your twe... | Spam |
| 2249 | @croatialuxrent Hello, we like to read your tw... | Spam |
| 2250 | @conceptstr Hello, we like to read your tweets... | Spam |
| 2251 | @theokriPro_show Hello, we like to read your t... | Spam |
| 2252 | @NewVisionAgent Hello, we like to read your tw... | Spam |
| 2253 | My friend, rise up and see\n\nThere’s a light ... | Positive |
| 2254 | An event that considers what types of schools ... | Neutral |
| 2255 | If you met your counterpart from another unive... | Spam |
| 2256 | Win a @PlayStation store voucher.\nTo get chan... | Spam |
| 2257 | "You need to bring the right idea, and the leg... | Spam |
| 2258 | @Ina_aIi00 You wouldn't be because alcohol tas... | Spam |
| 2259 | 📸I told you that I have been busy... finally a... | Spam |
| 2260 | When your spit goes down the wrong hole and yo... | Spam |
| 2261 | @DrifterShoots You did all that for 12k likes | Spam |
| 2262 | @marchiarten Actually I woudn't call it law bu... | Positive |
| 2263 | #charliebahama #ontheroadagain #dubai #desert ... | Spam |
| 2264 | @Gigisellsnashvl Hello, we like to read your t... | Spam |
| 2265 | Find a peaceful haven full of surprises at the... | Positive |
| 2266 | Am in love with the lady that interviewed CR7 ... | Positive |
| 2267 | We love you too bro\n#Expo2020 #Expo2020Dubai ... | Positive |
| 2268 | "I think that an idea cannot grow if the facil... | Neutral |
| 2269 | Our first release this year is the official an... | Positive |
| 2270 | I absolutely LOVE this!\n\nWe are catching vib... | Positive |
| 2271 | After utter failure of OLA/Uber drivers & ... | Negative |
| 2272 | Bro I love you both @HamdanMohammed @Cristiano... | Neutral |
| 2273 | @drshamamohd After utter failure of OLA/Uber d... | Positive |
| 2274 | After utter failure of OLA/Uber drivers & ... | Negative |
| 2275 | @drshamamohd I don't know what they have got i... | Negative |
| 2276 | Reasons to love #Expo2020 :\n\n1. The internat... | Positive |
| 2277 | I love you 🥺😘\n#البرنسيسة #ديانا_حداد #princes... | Spam |
| 2278 | Get in touch with us now! \n📞Call 800-INDUS (4... | Spam |
| 2279 | Earping at #Expo2020 \n\n#WynonnaEarp #BringWy... | Neutral |
| 2280 | LOVE desires that this secret should be reveal... | Positive |
| 2281 | Loved visiting #Expo2020 - a wonderful concoct... | Positive |
| 2282 | “We are the people of love.”\n \nMawwal is a v... | Positive |
| 2283 | My love 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | Spam |
| 2284 | My lovely princess 👑😍\n#البرنسيسة #ديانا_حداد ... | Positive |
| 2285 | Crypto Falconry #99 Is your lucky number 99??\... | Spam |
| 2286 | The seat of luxury- Burj Al Arab. #dubaiexpo20... | Spam |
| 2287 | A home with purely panoramic ocean views\n\nFu... | Spam |
| 2288 | Discover ideas and innovations for a more sust... | Positive |
| 2289 | Discover Haus 51 bespoke services, call us on ... | Spam |
| 2290 | #Expo2020Dubai received 11.6 million visitors ... | Positive |
| 2291 | 🎯🎯Majestic Falcon of Dubai 🎯🎯\nPrice: 0.009 et... | Spam |
| 2292 | Buyer of "Majestic Falcon" received "Crypto Fa... | Spam |
| 2293 | First "Majestic Falcon" sold\n\nAs a gift, I w... | Spam |
| 2294 | "Majestic Falcon of Dubai" \nPrice: 0.009 eth ... | Spam |
| 2295 | "Masterpiece #2 by Dennis" collectible! https:... | Spam |
| 2296 | Our KG2 students are collecting recyclable pac... | Spam |
| 2297 | Join us at the front Courtyard of the Pakistan... | Positive |
| 2298 | Join us at the front Courtyard of the Pakistan... | Positive |
| 2299 | Burj Khalifa in all its mighty 💯 #tonight #Dub... | Spam |
| 2300 | Join us at the Pakistan Pavilion to explore th... | Neutral |
| 2301 | - Why not develop a smart device that count nu... | Neutral |
| 2302 | Join us at the Pakistan Pavilion to explore th... | Neutral |
| 2303 | Join us at the Pakistan Pavilion to explore th... | Neutral |
| 2304 | Date: 31st January 2022\n\nTime: 3:00pm - 4:00... | Positive |
| 2305 | @fairytaegis subhanallah, i was looking at the... | Spam |
| 2306 | Charlie Moore scores seven quick points for Mi... | Spam |
| 2307 | UPSET WATCH: NCAA Basketball (I) - #168 ranked... | Spam |
| 2308 | @drshamamohd I visited the Indian pavellion af... | Negative |
| 2309 | okay 6 drinks in and im finally starting to fe... | Positive |
| 2310 | @peace4_kashmir @Pharmacrobat @UN @guardian @S... | Negative |
| 2311 | Do you have the vigour to debate on issues our... | Spam |
| 2312 | Technology: DSO-Innovation Hub to help Indian ... | Neutral |
| 2313 | Big experiences for the little ones 🤩\n\nFrom ... | Positive |
| 2314 | @ItalyExpo2020 Thanks for one if the wonderful... | Positive |
| 2315 | Me trying #indian popular song from #pushpa\n... | Positive |
| 2316 | Don’t forget to visit Birko in the Food Safety... | Positive |
| 2317 | Ready to go #WheelsUpHeelsUp to ATL. \n\nNo. 2... | Spam |
| 2318 | At #Expo2015, the #Kuwait #Pavilion received H... | Positive |
| 2319 | The Kenya Pavilion honours Zahro Sadova who is... | Positive |
| 2320 | Close to nature at Brazil pavilion. \n#expo202... | Neutral |
| 2321 | Ole!!!😃💃🏼💥\nMost fun happens when there's no t... | Positive |
| 2322 | Had fun at the #Expo2020Run this morning! Firs... | Positive |
| 2323 | A panel discussion highlighting community led ... | Neutral |
| 2324 | @Philipmarks87 Watched a bunch of old MAGA’s m... | Neutral |
| 2325 | @M4dlyHatting THERES BACKWARDS ROCKIN ROLLER C... | Positive |
| 2326 | Hope to see the Cox Pavilion packed to support... | Spam |
| 2327 | SHOWDOWN INSIDE COX PAVILION: The @UNLVLadyReb... | Spam |
| 2328 | The #Mexico Pavilion at #Expo2015 won Honorabl... | Positive |
| 2329 | I appreciate everyone's enthusiasm, and love f... | Positive |
| 2330 | DONALD HAS RETURNED TO MEXICO AND \nJOY & ... | Positive |
| 2331 | @USAExpo2020 \n“Life, Liberty and the Pursuit ... | Neutral |
| 2332 | @SuperWeenieHtJr No they should add a new and ... | Negative |
| 2333 | No idea why, but I've always loved the feeling... | Positive |
| 2334 | There are countless experiences across this la... | Positive |
| 2335 | We are waiting for you 🎊😍\n\n#yearofthefiftiet... | Positive |
| 2336 | @SuperWeenieHtJr I would reckon, they’ll just ... | Positive |
| 2337 | 'Donald Duck Meet and Greet Returns to Mexico ... | Positive |
| 2338 | We appreciate the visit of the US Commissioner... | Positive |
| 2339 | #Pakistan's third consecutive victory. #PakU19... | Spam |
| 2340 | @NemavholaIrene @MmusiMaimane Were you actuall... | Positive |
| 2341 | The concept behind our pavilion, is that it co... | Positive |
| 2342 | Thanks @MaherNasserUN and @DrDenaAssaf for vis... | Positive |
| 2343 | Don’t miss out on the NEW menu items at the Si... | Positive |
| 2344 | Do these buildings remind you of the Singapore... | Neutral |
| 2345 | Slovenia's 🇸🇮 #Expo2020Dubai pavilion is a "fl... | Positive |
| 2346 | They were accompanied by heroes who have been ... | Positive |
| 2347 | All you need to do is go see South Africa's Pa... | Negative |
| 2348 | Slovenia's forested Expo pavilion is shaded by... | Neutral |
| 2349 | Wonders of a non-literal transparency.\n\nAn a... | Positive |
| 2350 | Slovenia's forested Expo pavilion is shaded by... | Neutral |
| 2351 | CNN: Slovenia's forested @expo2020dubai is sha... | Neutral |
| 2352 | Slovenia’s forested Expo pavilion is shaded by... | Neutral |
| 2353 | Slovenia’s forested Expo pavilion is shaded by... | Positive |
| 2354 | Slovenia’s forested Expo pavilion is shaded by... | Neutral |
| 2355 | Slovenia's forested Expo pavilion is shaded by... | Spam |
| 2356 | @null Slovenia's forested Expo pavilion is sha... | Neutral |
| 2357 | #Pdethx: Full #NFTCollection link here -\nhttp... | Spam |
| 2358 | @null Slovenia's forested Expo pavilion is sha... | Neutral |
| 2359 | Slovenia's forested Expo pavilion is shaded by... | Neutral |
| 2360 | Slovenia's forested Expo pavilion is shaded by... | Neutral |
| 2361 | Slovenia's forested Expo pavilion is shaded by... | Neutral |
| 2362 | Slovenia's forested Expo pavilion is shaded by... | Neutral |
| 2363 | Slovenia's forested Expo pavilion is shaded by... | Spam |
| 2364 | Slovenia's forested Expo pavilion is shaded by... | Neutral |
| 2365 | @AnimalsHolbox: Slovenia's forested Expo pavil... | Neutral |
| 2366 | @Kevidently @parkscopejoe I wish they could do... | Positive |
| 2367 | For those who don't know, there are only a few... | Positive |
| 2368 | UAE Innovates 2022 begins with month-long even... | Positive |
| 2369 | At #DubaiRugs you can find a large variety of ... | Spam |
| 2370 | Lady at @Aquafina DROP at @expo2020dubai tells... | Positive |
| 2371 | The second edition of Expo Run is a huge succe... | Positive |
| 2372 | "Then He causes his death and provides a grave... | Spam |
| 2373 | Our Social Enterprise @LinkYourPurpose is feat... | Neutral |
| 2374 | #Italy's Pavillion at #Expo2020 is one of the ... | Positive |
| 2375 | Did you participate in the 3rd phase of #EnRou... | Neutral |
| 2376 | EATS time foodies! Nomad Restaurant at Jumeira... | Spam |
| 2377 | Our team will be at Expo 2020 this week delive... | Neutral |
| 2378 | Join the making of a new world. \n\nBook our E... | Neutral |
| 2379 | Ukraine pavilion #Expo2020 https://t.co/80rDm4... | Neutral |
| 2380 | Join Us Today At #Expo2020 for a seminar on: "... | Neutral |
| 2381 | The name 'blue pottery' comes from the eye-cat... | Spam |
| 2382 | #Estonia has always been a firm believer in #P... | Neutral |
| 2383 | Join Us Today At #Expo2020 for a seminar on: "... | Neutral |
| 2384 | In 1 hr! MSZ Machinery Manufacturing Plant vir... | Neutral |
| 2385 | Want to take stunning shots at @expo2020dubai?... | Positive |
| 2386 | Want to take stunning shots @expo2020dubai? He... | Positive |
| 2387 | NYE was bought to life at The Al Wasl Dome @ E... | Positive |
| 2388 | Starting a new project today ✨ #dubai #uae #ar... | Positive |
| 2389 | Before the curtains fall at Dubai Expo 2020, m... | Positive |
| 2390 | Honored and humbed to participate in a landmar... | Positive |
| 2391 | The Sustainable City, the first sustainable co... | Spam |
| 2392 | “once you occupy a leadership space, you have ... | Neutral |
| 2393 | Expo 2020 Dubai transforms into a marathon tra... | Neutral |
| 2394 | 👏🥳Kudos Penang! The Penang State Government ha... | Positive |
| 2395 | "Slovenia is one of the most forested countrie... | Spam |
| 2396 | #CC2020Dubai #GoInternational\nToday, the @ccl... | Neutral |
| 2397 | Virat Kohli's Daughter Vamika First Look:\n\n ... | Spam |
| 2398 | Every night at #Expo2020 #Dubai, the Al Wasl P... | Positive |
| 2399 | Roberto Carlos, Alvaro Arbeloa and Iker Casill... | Neutral |
| 2400 | If you are 13-18 yrs old with a drive for sust... | Positive |
| 2401 | EXPO 2020 Dubai here we come! Get complimentar... | Neutral |
| 2402 | 1/2 Our official partner, @MasenOfficiel, part... | Positive |
| 2403 | Hi All,\n\nWe know sometimes it is hard to kee... | Spam |
| 2404 | Riyadh| A two-day #Saudi-#Sweden event at #Exp... | Neutral |
| 2405 | Be it our Sustain-a-Livity tree planting initi... | Positive |
| 2406 | Come to Dubai, the business center of the glob... | Spam |
| 2407 | Expo 2020 adventures…Explore the awe-inspiring... | Positive |
| 2408 | Expo 2020 adventures…Explore the awe-inspiring... | Positive |
| 2409 | Sameer Muhammed connects with a punch to the f... | Spam |
| 2410 | SL has a big mess in their priorities. We are ... | Negative |
| 2411 | Arrange a #CustomMade #Reception by #Artificia... | Spam |
| 2412 | Watch their spectacular performance on 4 Febru... | Positive |
| 2413 | Investment opportunities in Saudi Arabia and S... | Neutral |
| 2414 | Invited to visit the Expo 2020 Dubai Slovenia ... | Neutral |
| 2415 | Musical extravagant by @arrahman x @shekharkap... | Positive |
| 2416 | It's the 4th weekend of 2022. Everyone is cele... | Spam |
| 2417 | Hi All,\n\nWe know sometimes it is hard to kee... | Positive |
| 2418 | Join us this Wednesday from #Expo2020 in Dubai... | Neutral |
| 2419 | Do you want to start your event management bus... | Spam |
| 2420 | Come be a part of our flag hoisting ceremony a... | Neutral |
| 2421 | The wait is over! \nWe will be performing live... | Positive |
| 2422 | MATI Consult, a service-oriented firm with hea... | Positive |
| 2423 | NEW ROLE - Application Specialist – Diagnostic... | Spam |
| 2424 | The #CanadaPavilion at @expo2020dubai introduc... | Positive |
| 2425 | #GlobalGoals Week is coming to an end after re... | Positive |
| 2426 | Have you visited the UAEU Pavilion at Expo 202... | Positive |
| 2427 | La Violeta at Villanova is a newly launched re... | Spam |
| 2428 | La Violeta at Villanova is a residential devel... | Spam |
| 2429 | Expo 2020 Dubai’s Pakistan pavilion hosts a fi... | Neutral |
| 2430 | The falcon has a vision for 2022. 👀\nBe a part... | Spam |
| 2431 | There were 127.82 billion Dh worth of mortgage... | Spam |
| 2432 | Abela's decision to cancel a long-awaited trip... | Negative |
| 2433 | Ending #GlobalGoals week at #Expo2020 #Dubai o... | Positive |
| 2434 | This week @essity will be supporting the @Swec... | Neutral |
| 2435 | Used as a prestigious and representative place... | Spam |
| 2436 | 🤣😂🤣 It's beyond pathetic.. "excellence" on sho... | Spam |
| 2437 | #armenianbreakingnews\n#Armenian stand at #Dub... | Negative |
| 2438 | The Jamaica Pavilion receives over 84,000 in t... | Positive |
| 2439 | Happy to see artists from GB in #DubaiExpo. Ex... | Negative |
| 2440 | KP business community protest lack of represen... | Negative |
| 2441 | Apply your Visa Change Inside Country today an... | Spam |
| 2442 | Hey #ShiryoArmy so@many account on Twitter cl... | Spam |
| 2443 | It is shame that their is no single woman part... | Negative |
| 2444 | @drshamamohd SHAME ON YOU for spreading lies. ... | Negative |
| 2445 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | Positive |
| 2446 | It's beautiful to see the flag of Israel next ... | Positive |
| 2447 | SA's laughable spaza shop "display" at the glo... | Negative |
| 2448 | @win_about_2_sin LOL I had some crackpot DM me... | Negative |
| 2449 | @dubaiexpo_korea Hello.plz excue me.plz i am ... | Spam |
| 2450 | Even the mountains ain't that steep.\n\n#shinj... | Spam |
| 2451 | In February, head for the City of Lights and t... | Neutral |
| 2452 | @drshamamohd Of the four floors, there's just ... | Negative |
| 2453 | Yemen AnsarAllah/Houthi Movement military spok... | Hate |
| 2454 | Trying to listen in to #LHRC but keep losing s... | Negative |
| 2455 | @HMhd202030 Now by @UAEExpo_2020 all Jewish by... | Neutral |
| 2456 | Herzog will also visit the #DubaiExpo2020 tomo... | Neutral |
| 2457 | Happy Chinese New Year to all our friends in C... | Positive |
| 2458 | #DubaiExpo delays concert after Yemen Houthi t... | Negative |
| 2459 | BREAKING NEWS 🔴 \n\nThe security situation in ... | Spam |
| 2460 | Houthis spokesperson threatens #DubaiExpo2020.... | Hate |
| 2461 | The technical rider which was not communicated... | Negative |
| 2462 | First overseas hit out since January 2020 - Du... | Spam |
| 2463 | #ALERT #URGENT #URGENT\nYemeni Armed Forces Sp... | Hate |
| 2464 | @drshamamohd You are wrong. #getwellsoon #Duba... | Spam |
| 2465 | At #Expo2020 we show how #EmpoweringMovement f... | Positive |
| 2466 | @KetanJ0 Santos supports Aust pavilion @COP26;... | Spam |
| 2467 | @cchanniee97 Now I kinda feel sad if ever he s... | Negative |
| 2468 | Today at the Italy Pavilion at #Expo2020 a dis... | Neutral |
| 2469 | (116) Albert Trott. Played for both England &a... | Spam |
| 2470 | @MarisePayne @DrSJaishankar @MEAIndia @AusHCIn... | Negative |
| 2471 | 'Health & Weakness Week' at #Expo2020 #Dub... | Neutral |
| 2472 | CM Pinarayi Vijayan @vijayanpinarayi received ... | Neutral |
| 2473 | Those who are passive sports fans, come and ch... | Positive |
| 2474 | We welcomed Ms Daniella Leite, the Director of... | Spam |
| 2475 | Let's welcome Paul Andrez, Equity Advisor Conn... | Neutral |
| 2476 | Join #SAPServices on-site at SAP House Dubai i... | Neutral |
| 2477 | Having some jasmine green tea from Foojoy tea.... | Positive |
| 2478 | Our sweet, sweet reporter Amber volunteered to... | Positive |
| 2479 | Today’s business highlights at Expo 2020 Dubai... | Neutral |
| 2480 | This is big and disney can’t ignore it anymore... | Positive |
| 2481 | @2020_pavilion Hello.plz excue me.plz i am Ch... | Spam |
| 2482 | Fighting Stigma : Lunar New Year brings hope ... | Positive |
| 2483 | Threat to US from China 'brutal, more damaging... | Spam |
| 2484 | @DisneyAnimation Build a Colombia pavilion in ... | Negative |
| 2485 | HE @epsycampbell, Vice President of Costa Rica... | Neutral |
| 2486 | 📢@EquidemOrg is live!\n\nOur latest report hig... | Negative |
| 2487 | Dirty, hi-carbon fossilfuel plastic/biomass 'e... | Negative |
| 2488 | @TeamSA_Expo2020 ... | Positive |
| 2489 | UK Pavilion at Expo 2020 Dubai - https://t.co/... | Negative |
| 2490 | F&B Pods serving the visitors of @expo2020... | Positive |
| 2491 | There’s only two months left for #Expo2020 and... | Negative |
| 2492 | ** Let’s celebrate 1948 Nakba!! .. \nKilling ... | Hate |
| 2493 | Unfortunately, migrant workers employed at #Ex... | Negative |
| 2494 | Ministry of Defense of the United Arab Emirate... | Spam |
| 2495 | My heart vibrating while listening your melodi... | Positive |
| 2496 | Saying boyfriend weak as hell. Let’s elope at ... | Spam |
| 2497 | Here's an insight into the workshops we held a... | Positive |
| 2498 | Is the #DubaiExpo2020 a showcase of the techno... | Positive |
| 2499 | The project "I'm sorry about the garden" will ... | Neutral |
| 2500 | Unfortunately, Corona strikes again. Stay up-t... | Negative |
| 2501 | Between novelty and tradition, classicism and ... | Positive |
| 2502 | His Highness Sheikh Mohammed bin Rashid Al Mak... | Neutral |
| 2503 | His Highness Sheikh Mohammed bin Rashid Al Mak... | Neutral |
| 2504 | Mohammed bin Rashid visits Germany Pavilion at... | Spam |
| 2505 | “Your majesty, he’s a young trainee from the R... | Spam |
| 2506 | What's wrong with people when it comes to food... | Spam |
| 2507 | @drshamamohd I agree and I live in Dubai, It i... | Negative |
| 2508 | I endorse the observation. Indian pavilion is ... | Negative |
| 2509 | @drshamamohd What did ur husband ji expect ?\n... | Positive |
| 2510 | @drshamamohd I absolutely agree. It's Modi pav... | Negative |
| 2511 | @drshamamohd https://t.co/nN0YP1zo96\n\nShame ... | Spam |
| 2512 | Dubai Silicon Oasis and India Innovation Hub P... | Spam |
| 2513 | @drshamamohd What is wrong in showing our PM’s... | Negative |
| 2514 | @mysterious_tri @drshamamohd Very Impressive I... | Positive |
| 2515 | Shama, I saw multiple images of the India pavi... | Spam |
| 2516 | @yogye @RSingh6969a One more to Sunil Manohar ... | Spam |
| 2517 | @NaorGilon Sir @IsraelExpoDubai proudly congra... | Positive |
| 2518 | @drshamamohd Its the worst pavilion... modi is... | Negative |
| 2519 | @CDawgVA @AbroadInJapan in case you need to fe... | Negative |
| 2520 | @Israel The Palestine pavilion at #ExpoDubai20... | Neutral |
| 2521 | Poor from @ThunderBBL. Jordan Silk comes out t... | Spam |
| 2522 | @WDWNT Dude was smoking in the Japan pavilion ... | Negative |
| 2523 | 60 more days to go till the end of World’s Gre... | Positive |
| 2524 | @SenatorIvy @DetroitQSpider @zoomerbread @Bulu... | Spam |
| 2525 | Israeli presidential visit went ahead in spite... | Hate |
| 2526 | this is so stupid why is there an israel pavil... | Negative |
| 2527 | It's Israel 🇮🇱 Day at Expo Dubai 2020!\n\nWhil... | Positive |
| 2528 | @NickJBrumfield It's too early to draw conclus... | Negative |
| 2529 | Organised ‘under gunfire’, Kazakhstan announce... | Spam |
| 2530 | This year’s commissioner for Kazakhstan's pavi... | Neutral |
| 2531 | |https://t.co/yX6oZ2Qno6| This year’s commissi... | Spam |
| 2532 | COUNTY FOCUS - EXPORT AGENDA KE\nHon. Joshua K... | Neutral |
| 2533 | https://t.co/akoQqVEF90\nDalal Abu Amna Palest... | Negative |
| 2534 | so so so impressed with @TalabatUAE cloud kitc... | Positive |
| 2535 | #Palestinian singer Dalal Abu Amna has refused... | Negative |
| 2536 | .@Mustafa_Qadri: "The entire international com... | Negative |
| 2537 | The 🇱🇺Pavilion made it into @CosmoMiddleEast :... | Positive |
| 2538 | #Palestinian singer Dalal Abu Amna has refused... | Negative |
| 2539 | Hey people saying they should put Encanto in t... | Negative |
| 2540 | @TheHorizoneer well i mean they can’t do that ... | Negative |
| 2541 | Can someone please find out how much it cost u... | Spam |
| 2542 | We’re excited to host the SAP Seaports Innovat... | Positive |
| 2543 | Mexico! The pavilion stars and water ride smel... | Positive |
| 2544 | @thatsso_kiki First. Thanks for the reminder o... | Positive |
| 2545 | Happy New Month.\n\n#HappyNewMonth #Security #... | Spam |
| 2546 | The Mexico Pavilion stole my heart today along... | Positive |
| 2547 | @TOCPE82 No, I was in the Mexico Pavilion drin... | Spam |
| 2548 | @Magda_Wierzycka Truly sad, we would have love... | Spam |
| 2549 | Can't regret this love @kruzdahypeman\nYou are... | Positive |
| 2550 | @drshamamohd In the Indian pavilion if not Ind... | Negative |
| 2551 | I made sure to visit @expo2020dubai and was ov... | Positive |
| 2552 | The Pakistan Pavilion is happy to announce tha... | Positive |
| 2553 | The Pakistan Pavilion is pleased to announce t... | Positive |
| 2554 | #Palestinian singer \nDalal Abu Amna has refus... | Negative |
| 2555 | @BlankSamuel @JudyWinslow_fm @DizDerek Exactly... | Spam |
| 2556 | India’s beautiful oral music tradition lives o... | Positive |
| 2557 | Wishing you a prosperous, marvelous, blissful ... | Positive |
| 2558 | Kafi Group is attending Gulfood (Sun, Feb 13, ... | Positive |
| 2559 | Jazaa is participating in Gulfood 2022, the wo... | Positive |
| 2560 | A new pavilion for spectators, a separate seat... | Spam |
| 2561 | SPOTLIGHT: One of the team members that worked... | Positive |
| 2562 | Did you ever do an Aquavit shot in Epcot's Nor... | Positive |
| 2563 | @drshamamohd Your husband should have visited ... | Positive |
| 2564 | If at 4th of February you happen to be at #Dub... | Positive |
| 2565 | UAE Vice President receives Kerala CM ... - ht... | Spam |
| 2566 | Great hearing from our expert panel on the lat... | Spam |
| 2567 | HMA Offers All Types of PRO Services to Assist... | Spam |
| 2568 | In the first of a special two-part podcast epi... | Neutral |
| 2569 | The Emconic collection ’s highlights also incl... | Positive |
| 2570 | Space is well-crafted and uniquely suited for ... | Spam |
| 2571 | @LindiweSisuluSA @MYANC @PresidencyZA this is ... | Negative |
| 2572 | Dubai Metro - One of the most advanced rail sy... | Spam |
| 2573 | HH Sheikh Hamdan bin Mohammed: Today I met wit... | Neutral |
| 2574 | Unveiling a multilingual robot at UAEU pavilio... | Positive |
| 2575 | @AmrullahSaleh2 How’s Dubai jigar? \nHave you ... | Positive |
| 2576 | Grab your #Expo2020 tickets to see the VALE ex... | Positive |
| 2577 | Join YouTuber Dhruv Rathee as he explores the ... | Neutral |
| 2578 | From enjoying immersive experiences at the Emi... | Positive |
| 2579 | Follow us at https://t.co/vyIPORKWxK or call u... | Spam |
| 2580 | “I am so close, I may look distant.\nSo comple... | Positive |
| 2581 | Our Head of Protocol, Fabiola Cavallini with A... | Positive |
| 2582 | Georgia has some gorgeous silver jewelry … The... | Positive |
| 2583 | It may be one of the small pavilions in #Expo2... | Positive |
| 2584 | #Expo2020 #Dubai #expo Nowadays everything loo... | Neutral |
| 2585 | The #GCC Pavilion at #Expo2020 #Dubai offers i... | Positive |
| 2586 | The #GCC Pavilion at #Expo2020 #Dubai holds th... | Neutral |
| 2587 | The Pakistan Pavilion at Expo2020 would like t... | Positive |
| 2588 | Join us for a live talk on traditional archite... | Neutral |
| 2589 | Presenting the opening ceremony of Gilgit - Ba... | Positive |
| 2590 | Assam Tea is over 170 years old and plays a ve... | Spam |
| 2591 | ✈️ @Emirates x @Expo2020Dubai \n \n😍 The boys ... | Positive |
| 2592 | Prime Minister of #Spain, visits the #UAE Pavi... | Positive |
| 2593 | College of Medicine and Health Sciences organi... | Neutral |
| 2594 | @emirates , the premier partner and official a... | Positive |
| 2595 | Great to see @UOWD President’s name on the w... | Positive |
| 2596 | Day 1 : Swecare together with the Swedish Mini... | Neutral |
| 2597 | Day 1 : Swecare together with the Swedish Mini... | Neutral |
| 2598 | The Youth Pavilion @expo2020 hosted H.E. Ghann... | Positive |
| 2599 | Did you know that many of us are multilingual ... | Positive |
| 2600 | @JEK_Psych God bless her . Hopefully the Immun... | Neutral |
| 2601 | "Governments need to lead, they set the rules.... | Neutral |
| 2602 | Expo 2020 Dubai’s Emirates pavilion hosts the ... | Neutral |
| 2603 | Come visit us today at the Pakistan Pavilion.\... | Neutral |
| 2604 | Come visit the Maldives Pavilion and celebrate... | Positive |
| 2605 | Relationship between humanity and artificial i... | Positive |
| 2606 | Holland pavilion #Expo2020 https://t.co/jSj7zI... | Neutral |
| 2607 | Dubai's Minister of Foreign Affairs and Intern... | Neutral |
| 2608 | #USAPavilion Youth Ambassadors take the runway... | Neutral |
| 2609 | To all foosball fans out there! Don’t miss the... | Positive |
| 2610 | @expo2020_jp I tried to book today at 12 pm an... | Negative |
| 2611 | In Unlimited Space, you’re set to explore the ... | Positive |
| 2612 | NFT Collection "Dignity"\n💪She is powerful. \n... | Spam |
| 2613 | #GoGB is the first edition of an #investmentco... | Neutral |
| 2614 | The Jamaica Pavilion has welcomed 84,683 visit... | Positive |
| 2615 | Dasman Diabetes Institute participates in the ... | Neutral |
| 2616 | #DubaiExpo 2020 #Pakistan pavilion is making s... | Positive |
| 2617 | Welcome to Expo #Dubai 2020 Gilgit-Baltistan, ... | Neutral |
| 2618 | Prayed Sonobe Handpan at Afganistan Pavilion D... | Neutral |
| 2619 | Prayed Didge at Somalia Pavilion Dubaiexpo2020... | Neutral |
| 2620 | Discover Afghanistan at Expo 2020. You can lea... | Positive |
| 2621 | #DubaiExpo: Gombe Governor Visits Nigerian Pav... | Neutral |
| 2622 | Watch: Israel celebrates India's Republic Day ... | Positive |
| 2623 | It's the halfway point of Expo 2020 Dubai &... | Positive |
| 2624 | The world’s largest Quran is on display in the... | Neutral |
| 2625 | Our very own Dr. Philip Webb is in the line up... | Neutral |
| 2626 | Visited with pleasure and honour pavilion “Aze... | Positive |
| 2627 | The Belarus Pavilion at EXPO 2020 congratulate... | Positive |
| 2628 | Al Kaabi :Gabon Pavilion at Expo a space to re... | Neutral |
| 2629 | The @ArchMOC Commission is working to document... | Positive |
| 2630 | Greek 🇬🇷 pavilion at the Cairo international B... | Positive |
| 2631 | #Greece is the Country of Honour at the 53rd C... | Positive |
| 2632 | @KashoonLeeza @ForeignOfficePk @mincompk Bhikh... | Negative |
| 2633 | Today I met with Pinarayi Vijayan, Chief Minis... | Positive |
| 2634 | "We have to act on the assumption that we will... | Neutral |
| 2635 | @ndtvfeed @ndtv finally , Air India back to pa... | Spam |
| 2636 | Traditional Cultural Performance by Ladakh || ... | Positive |
| 2637 | Traditional Cultural Performance by Ladakh || ... | Positive |
| 2638 | Today I met with Pinarayi Vijayan, Chief Minis... | Positive |
| 2639 | Outside the Sweden Pavilion "The Forest" at Ex... | Neutral |
| 2640 | 02 February 2022: Screenprinting and Graphics ... | Spam |
| 2641 | 29th @Convergenc India Expo & 7th @smartci... | Spam |
| 2642 | 7th @smartcitiesind expo and 29th @Convergenc ... | Positive |
| 2643 | @vijayanpinarayi @expo2020dubai What is kerala... | Negative |
| 2644 | Kerala Week will begin on February 4 in the In... | Positive |
| 2645 | It’s first February today! Have you registered... | Neutral |
| 2646 | Expo 2020 Dubai: India Pavilion to host Kerala... | Neutral |
| 2647 | Expo 2020 Dubai: India Pavilion to host Kerala... | Neutral |
| 2648 | Dikshu Kukreja, key Architecht of India Pavili... | Positive |
| 2649 | CHECK IN Announcement\nOFFICIAL INDIA PAVILION... | Positive |
| 2650 | CHECK IN Announcement\nOFFICIAL INDIA PAVILION... | Neutral |
| 2651 | I am so destined to find the best butter chick... | Positive |
| 2652 | Start your day with nokume...\nhttps://t.co/Oz... | Spam |
| 2653 | @ndtv This oldie is the biggest spinner in the... | Spam |
| 2654 | Indian Chamber of Commerce along with Departme... | Spam |
| 2655 | On a session on Medical Value Travel and telem... | Neutral |
| 2656 | "This pandemic further strengthened the partne... | Neutral |
| 2657 | START YOUR DAY WITH NOKUME\nhttps://t.co/OzZx1... | Spam |
| 2658 | Expo 2020 Dubai: Sheikh Hamdan visits DP World... | Neutral |
| 2659 | In the latest 'Opening This Week' entry we fea... | Spam |
| 2660 | #FlyWithIX : Hey #Dubai!\n\nFly with us to Dub... | Positive |
| 2661 | START YOUR DAY WITH NOKUME\nhttps://t.co/OzZx1... | Spam |
| 2662 | START YOUR DAY WITH NOKUME\nhttps://t.co/OzZx1... | Spam |
| 2663 | India Pavilion hosts discussion on MedTech sec... | Neutral |
| 2664 | @drshamamohd Your husband is not the only one ... | Spam |
| 2665 | Explore the emerging trends at the Wood & ... | Neutral |
| 2666 | OpIndia: Congress spokesperson lies about Indi... | Negative |
| 2667 | It is always your next move!\n#businessadvisor... | Spam |
| 2668 | Manchester City and England midfielder Jack Gr... | Positive |
| 2669 | Honoured to meet H.E. Lee Seok-gu, Republic of... | Positive |
| 2670 | Department of Commerce and Industry is organiz... | Spam |
| 2671 | Indian Chamber of Commerce along with Departme... | Spam |
| 2672 | #ASSOCHAM with the support of @DoC_GoI is org... | Neutral |
| 2673 | PART-IV REF 9903\nConclusion is 35% raised at ... | Spam |
| 2674 | @Meghna_venture @drshamamohd Ummmm.... honey? ... | Negative |
| 2675 | I will be visiting Dubai Expo by the end of th... | Negative |
| 2676 | This sky over the India Gate was a lovely fini... | Positive |
| 2677 | @drshamamohd Why do u find reasons to defame I... | Neutral |
| 2678 | @drshamamohd Am here in Dubai for quite some t... | Positive |
| 2679 | #Oum - An amazing mix of hassani, #jazz, #gosp... | Positive |
| 2680 | @getnagu @bahl65 @oldschoolmonk @__Hegde @Neta... | Neutral |
| 2681 | Indian Chamber of Commerce along with Departme... | Spam |
| 2682 | @drshamamohd A big lier your husband is. Visit... | Positive |
| 2683 | We were thrilled to visit @IndiaExpo2020 where... | Positive |
| 2684 | @drshamamohd He is lying for sure. Anyway we c... | Positive |
| 2685 | Aster Volunteers conduct Basic Life Support aw... | Positive |
| 2686 | Map of india , Jammu and Kashmeer in Indian pa... | Negative |
| 2687 | In her chronic hate for Modi, the Congress spo... | Positive |
| 2688 | .@HOSTSalford has been announced as the Lead S... | Spam |
| 2689 | India is huge but mostly a boasting pavilion w... | Negative |
| 2690 | There are endless reasons to visit Hungary. \n... | Positive |
| 2691 | @shelo9 Visit USA , a walk and opposite India ... | Positive |
| 2692 | @drshamamohd https://t.co/pptWXjiBnE\nthis sho... | Neutral |
| 2693 | Happening Now!\n@Sepc_India Chairman, Shri Sun... | Positive |
| 2694 | START YOUR DAY WITH NOKUME*\nhttps://t.co/OzZx... | Spam |
| 2695 | @BoredMallu @drshamamohd Her husband must be a... | Positive |
| 2696 | @drshamamohd I was wondering why are you lying... | Negative |
| 2697 | Congress spokesperson lies about India Pavilli... | Positive |
| 2698 | @drshamamohd This Means Ur Hubby dint Visit An... | Positive |
| 2699 | @drshamamohd Maybe your husband was hallucinat... | Positive |
| 2700 | No wonder more than 8 Lakh people have visited... | Positive |
| 2701 | "We need to be mindful, I hope this pandemic i... | Neutral |
| 2702 | World Showcase (3/3) new pavilion elaboration,... | Positive |
| 2703 | @loraxstanclub I’ll drop you off India Pavilio... | Positive |
| 2704 | Bhag!\n\nHere’s India Pavilion @ Dubai Expo. I... | Positive |
| 2705 | @drshamamohd There's hardly any pictures of th... | Neutral |
| 2706 | @drshamamohd Maybe that why the longest queues... | Neutral |
| 2707 | OpIndia: Congress spokesperson lies about Indi... | Negative |
| 2708 | @MonicaK2511 She’s as dumb if not more like he... | Positive |
| 2709 | Congress spokesperson lies about India Pavilli... | Negative |
| 2710 | @drshamamohd I have visited the Dubai Expo 4 t... | Positive |
| 2711 | Congress spokesperson lies about India Pavilli... | Negative |
| 2712 | If you do have the opportunity to visit #Expo2... | Positive |
| 2713 | Congress spokesperson lies about India Pavilli... | Negative |
| 2714 | @Sweet_HoneygaI I have been to the India pavil... | Positive |
| 2715 | @drshamamohd Yaass... thats reality all the pa... | Neutral |
| 2716 | Chef Vikas Khanna unveils new book from India ... | Neutral |
| 2717 | Chef Vikas Khanna unveils new book from India ... | Neutral |
| 2718 | Aster DM Healthcare launches its corporate boo... | Neutral |
| 2719 | @drshamamohd Ma'am I will try to find out whic... | Negative |
| 2720 | A highly rated and well respected Global Leade... | Positive |
| 2721 | @drshamamohd @cgidubai false information about... | Negative |
| 2722 | @cgidubai kindly look into this false informat... | Negative |
| 2723 | "We need you to give us the ideas, your brains... | Positive |
| 2724 | Chef Vikas Khanna unveils new #book from India... | Positive |
| 2725 | Absolute nonsense. India pavilion is one of th... | Positive |
| 2726 | If #RahulGandhi was PM, \nShama:“My husband lo... | Negative |
| 2727 | @drshamamohd Anyone who is reading this, just ... | Positive |
| 2728 | @drshamamohd Madam don’t lie . Indian pavilion... | Positive |
| 2729 | @drshamamohd What these fake....contd:\nD. For... | Negative |
| 2730 | Shama, your husband & you have no sense of... | Spam |
| 2731 | @drshamamohd I've been at the Dubai Expo for f... | Neutral |
| 2732 | Expo 2020 Dubai: India pavilion hosts power-pa... | Positive |
| 2733 | Aster DM Healthcare launches its corporate boo... | Neutral |
| 2734 | "Digital technology has to serve the people" —... | Neutral |
| 2735 | @drshamamohd Wat he said he so true..none of t... | Negative |
| 2736 | I asked my husband about Dubai Expo, especiall... | Positive |
| 2737 | #Repost @IndiaExpo2020 \n\nIndia Pavilion capt... | Positive |
| 2738 | .@euronews: India’s Pavillion at @expo2020duba... | Positive |
| 2739 | Explore new opportunities with a Lighting-focu... | Spam |
| 2740 | .@euronews: India’s Pavillion at @expo2020duba... | Positive |
| 2741 | At the EXPO India Pavilion, I caught up with ... | Positive |
| 2742 | START YOUR DAY WITH NOKUME\nhttps://t.co/OzZx1... | Spam |
| 2743 | Indian Chamber of Commerce along with Departme... | Spam |
| 2744 | The Brighton Pavilion-Construction work began ... | Spam |
| 2745 | "The key point here is collaboration and partn... | Spam |
| 2746 | @TraderHarneet @velumania It's there in India ... | Neutral |
| 2747 | @velumania Good photoshop at India pavilion Ex... | Positive |
| 2748 | @AMP86793444 And thats out yes its all over th... | Spam |
| 2749 | Republic Day @timesofindia special featured Ho... | Neutral |
| 2750 | A great gesture from true friend of India #Isr... | Positive |
| 2751 | #RepublicDayIndia: #India pavilion at #Expo202... | Neutral |
| 2752 | #RepublicDayIndia: #India pavilion at #Expo202... | Positive |
| 2753 | Celebration of #RepublicDay at Indian pavilion... | Positive |
| 2754 | India's 73rd #RepublicDay at #India Pavilion i... | Positive |
| 2755 | Happy Republic Day Everyone 🇮🇳 \n\nSharing a f... | Positive |
| 2756 | "The UAE is in the second country in the world... | Spam |
| 2757 | On India’s 73rd Republic Day, We Congratulate ... | Spam |
| 2758 | #RepublicDayIndia: Artists perform cultural da... | Neutral |
| 2759 | #RepublicDayIndia: The Consul General of India... | Neutral |
| 2760 | #RepublicDayIndia: The Consul General of India... | Neutral |
| 2761 | Tourism is an important part of India's econom... | Spam |
| 2762 | @HinaRKhar @Expo2020Pak @expo2020dubai Did you... | Neutral |
| 2763 | - India Pavilion Crosses 800K Footfall Milesto... | Positive |
| 2764 | HP Pavilion 15, Omen 15 Gaming Laptops Launche... | Spam |
| 2765 | The India pavilion at Expo 2020 has been attra... | Positive |
| 2766 | I'm at India Pavilion in Dubai https://t.co/QF... | Neutral |
| 2767 | Armenian National Day was celebrated at #Expo2... | Positive |
| 2768 | #FlyWithIX : Expo 2020 Dubai!\n\nJust a Flight... | Positive |
| 2769 | @EmiratiPatriot She was born in Israel, and ed... | Negative |
| 2770 | @Celebrty_0 She was born in Israel, and educat... | Negative |
| 2771 | In response to her boycott of Expo 2020, I enc... | Negative |
| 2772 | #Israel's President @Isaac_Herzog opened Isra... | Positive |
| 2773 | #Israel's President @Isaac_Herzog opened Isra... | Positive |
| 2774 | Israel and UAE discuss use of AI and Cybersecu... | Neutral |
| 2775 | so expo has a israel pavilion now… | Neutral |
| 2776 | Israel\nIsraeli President Herzog opened the co... | Positive |
| 2777 | We had the honour of welcoming H.E. Isaac Herz... | Positive |
| 2778 | 🔵⚪ From 28 February, the enfant terrible of fa... | Neutral |
| 2779 | "The health sector being strong enough and how... | Positive |
| 2780 | Israel's President Herzog visits Expo 2020 Dub... | Positive |
| 2781 | @Israel @expo2020dubai @IsraelExpoDubai @Israe... | Neutral |
| 2782 | Israel's President Isaac Herzog was in Dubai t... | Neutral |
| 2783 | Blue and white, shining so bright! \n\nWhat a ... | Positive |
| 2784 | It’s Israel Day at @IsraelExpoDubai! \n\nFollo... | Neutral |
| 2785 | WOAH! Now that's an impressive pavilion! 😮🇮🇱😍@... | Positive |
| 2786 | Israel National Day party at the Israeli Pavil... | Positive |
| 2787 | Blue and white, #ExpoDubai tonight. \n\nNothin... | Positive |
| 2788 | #Israel #UAE : Inside #Israel’s pavilion at #E... | Neutral |
| 2789 | jan wrap up\n• ten myths about israel\n• templ... | Spam |
| 2790 | La Violeta is the latest release at one of Dub... | Spam |
| 2791 | @HHShkMohd on Monday met @Isaac_Herzog at the ... | Neutral |
| 2792 | President Isaac Herzog is joined by Expo 2020 ... | Neutral |
| 2793 | @Israel No it’s what Arab hospitality bought w... | Negative |
| 2794 | Today we’re celebrating peace, success and pro... | Positive |
| 2795 | 🇮🇱 “Israel is a country in which obstacles bec... | Neutral |
| 2796 | Mohammed bin Rashid meets with President of #I... | Positive |
| 2797 | The Israeli pavilion at Expo 2020 Dubai hosts ... | Positive |
| 2798 | 🔴 As Herzog visits, UAE intercepts ballistic m... | Spam |
| 2799 | Our pavilion at @expo2020dubai is in full swin... | Positive |
| 2800 | The Israeli pavilion at Expo 2020 Dubai will h... | Positive |
| 2801 | Wishing you all the success this year 🙏 Cheers... | Positive |
| 2802 | Today we’re covering Israel Day at @expo2020du... | Neutral |
| 2803 | The Israeli Pavilion at Expo 2020 will play ho... | Positive |
| 2804 | @SaulWahlK It's unreal https://t.co/ASyHgC1qsK | Spam |
| 2805 | Please just boycott Dubai Expo one time. They ... | Negative |
| 2806 | Israel Pavilion at Dubai Expo Commemorates the... | Neutral |
| 2807 | The #UAE hosts its first-ever #InternationalHo... | Positive |
| 2808 | Visitors observed the International Holocaust ... | Positive |
| 2809 | Visitors observed the International Holocaust ... | Spam |
| 2810 | Our Commissioner General, Mr @JThesleff, parti... | Neutral |
| 2811 | #Israel Pavilion at #Expo2020Dubai marks #Inte... | Positive |
| 2812 | "As a nation we punch above our weight when it... | Positive |
| 2813 | International Holocaust Remembrance Day - Janu... | Positive |
| 2814 | The #Israel Pavilion enchanted attendees at #E... | Positive |
| 2815 | But all thy gates; that received of the LORD, ... | Spam |
| 2816 | @Our_Levodopa The Israel pavilion is next to t... | Neutral |
| 2817 | "Israel's President Visits United Arab Emirate... | Hate |
| 2818 | For the first time ever, the pavilion of #Kaza... | Spam |
| 2819 | After a False Start in 2019, Kazakhstan Has An... | Positive |
| 2820 | After a false start in 2019, Kazakhstan has an... | Spam |
| 2821 | After a False Start in 2019, Kazakhstan Has An... | Negative |
| 2822 | We are honored to welcome in Moldova Pavilion ... | Positive |
| 2823 | "Majestic Falcon of Dubai"\nPrice: 0.009 eth (... | Spam |
| 2824 | Expo 2020 Dubai: Mr.Sheikh Hamdan meets Chief ... | Neutral |
| 2825 | HE Fatmire Isaki, Deputy Minister of Foreign A... | Positive |
| 2826 | Learn all about traditional architecture style... | Positive |
| 2827 | Philippines Pavilion at Expo 2020 Dubai highli... | Positive |
| 2828 | Philippines Pavilion at Expo 2020 Dubai highli... | Positive |
| 2829 | Philippines Pavilion at Expo 2020 Dubai highli... | Neutral |
| 2830 | The healthcare sector is the 2nd largest expor... | Neutral |
| 2831 | Applause to Sweden pavilion for organising and... | Positive |
| 2832 | Sweden is in the frontline in healthcare. Toda... | Neutral |
| 2833 | It's the halfway point of Expo 2020 Dubai &... | Positive |
| 2834 | I’m surprised NO ONE took pictures of the Geme... | Positive |
| 2835 | We are in 2022.\nAny updates. \nWere the produ... | Neutral |
| 2836 | Someone has to say it.. the U.K. stand at #Exp... | Negative |
| 2837 | Slavery does not stop at construction labor ex... | Spam |
| 2838 | That one time when Kim Jibeom noticed me , Ist... | Spam |
| 2839 | Sources to MTV: The situation at #DubaiExpo is... | Positive |
| 2840 | Deal of the day\nPS2 Fat 1tb loaded with 250 g... | Spam |
| 2841 | If u can't do hard workout just stopped going ... | Spam |
| 2842 | Nicole Smith Ludvik is back on top of #BurjKha... | Neutral |
| 2843 | Earl Brooks Jr. big up yourself brother . #Dub... | Positive |
| 2844 | Watch Health & Wellness Business Forum LIV... | Neutral |
| 2845 | H.E Jakov Milatovic, Minister of Economic Deve... | Neutral |
| 2846 | Lie machine - @INCIndia - says #DubaiExpo #Ind... | Negative |
| 2847 | @Ina_aIi00 You've lost the argument at that point | Spam |
| 2848 | Pump it loud with the Black Eyed Peas at Expo ... | Neutral |
| 2849 | Dubai Events Mar 2022\nExpo until 31st \nhttps... | Neutral |
| 2850 | VIDEO LINK 👉https://t.co/ruPufkcBu2\nCLICK THE... | Spam |
| 2851 | Apparently missed the gig by #BlackEyedPeas in... | Neutral |
| 2852 | Don’t miss this #SDG event tomorrow, live from... | Neutral |
| 2853 | Here are highlights from Day 1 of the Mastercl... | Neutral |
| 2854 | Expand your network of connections in the bigg... | Positive |
| 2855 | Gong Xi Fa Cai!🎆🎆\nMay the new lunar year brin... | Spam |
| 2856 | Don't miss out \nEgyptian band Cairokee will ... | Positive |
| 2857 | The #InvestinDubai Trade Mission at #Expo2020 ... | Positive |
| 2858 | Monster bali island #12\nSpecial tour off duba... | Spam |
| 2859 | Monster bali island #12\nSpecial tour off duba... | Spam |
| 2860 | Expo 2020 Dubai invited Sima Dance Company to ... | Neutral |
| 2861 | Crowd goes wild as #AliZafar rocks the Jubilee... | Positive |
| 2862 | “THE HVAC HIGHLIGHT IS THE LACK OF HVAC ” \nTh... | Neutral |
| 2863 | Check out my latest article: DITF pavilion or ... | Spam |
| 2864 | @drshamamohd Absolutely correct.\nONLY Pavilio... | Negative |
| 2865 | Wishing you all the success this year 🙏 Cheers... | Spam |
| 2866 | DO NOT MISS: Coppersmith handicraft & arti... | Positive |
| 2867 | Fried gnocchi poutine. 🔥 \n\nThank you, Canada... | Positive |
| 2868 | Together with 8 Canadian companies, the Consul... | Neutral |
| 2869 | 📅Feb. 8-10: Don't miss the @IntlBldrsShow in #... | Neutral |
| 2870 | Canada’s #OceanTech community is #MakingWaves ... | Positive |
| 2871 | #广州美术学院 走进#迪拜 #世博会,“艺齐#抗疫 ”作品\nAnti-epidemic t... | Neutral |
| 2872 | @BTBullion Agreed. 💯 \n\nBecause now it’s not ... | Negative |
| 2873 | @JasonRempala And those would probably be just... | Positive |
| 2874 | @EmmaReillyTweet @UNHumanRights @mbachelet @UN... | Spam |
| 2875 | @DOB23 @HyVee There are a couple of things in ... | Spam |
| 2876 | Minister of Tolerance and Coexistence and Comm... | Neutral |
| 2877 | @MyChinaTrip Thank you ~I think that the Jin M... | Positive |
| 2878 | @joshgad @Lin_Manuel @thejaredbush @ByronPHowa... | Negative |
| 2879 | Hot dog! I’ll be at the #EPCOT International F... | Positive |
| 2880 | Postcards have arrived! Check out the #WonderG... | Neutral |
| 2881 | Photonics Finland Pavilion is building up at t... | Neutral |
| 2882 | @NCAA @MarchMadnessMBB GEORGIA TECH IS PUMPING... | Negative |
| 2883 | Dear @expo2020dubai, I visited the pavilions. ... | Positive |
| 2884 | Home sweet home 🏡 \n\n🆚 No. 15 Georgia\n📍Oxfor... | Spam |
| 2885 | @KennyWCarson @YolettMcCuin @OleMissWBB @OleMi... | Spam |
| 2886 | So #Israel-i enemy PM has been well received t... | Hate |
| 2887 | VIP entrance at the Morocco pavilion at Expo 2... | Positive |
| 2888 | .@Gulfood will also be a precursor to the much... | Neutral |
| 2889 | @ReginaldPFunk @Timcast Dude went from saying ... | Spam |
| 2890 | Pssst, did you know...\n\nThat @HiltonHotels w... | Spam |
| 2891 | Famous for its saliya or massive fishing nets,... | Positive |
| 2892 | @sincerelyivy It would honestly be so fun if h... | Negative |
| 2893 | So #Israel-i enemy PM has been well received t... | Spam |
| 2894 | Mexican studio Gerardo Broissin have designed ... | Spam |
| 2895 | Checking in from Cox Pavilion, where UNLV is p... | Spam |
| 2896 | I really hope this image clears everything up:... | Negative |
| 2897 | @SuperWeenieHtJr I actually had a talk once wi... | Negative |
| 2898 | Things happening at Dubai Expo\n\nLeft: SA pav... | Neutral |
| 2899 | Its not just a dream of success ,work hard for... | Spam |
| 2900 | Construction of Pavilion by "Digital Lifestyle... | Neutral |
| 2901 | Discover their unique heritage, vibrant energy... | Positive |
| 2902 | @RIPcotCenter Its not a recent thing...\n\nEve... | Positive |
| 2903 | Culture of the village life in the Pakistan th... | Spam |
| 2904 | "If the goal is to give people a taste of some... | Neutral |
| 2905 | The former post-show theater for Maelstrom in ... | Neutral |
| 2906 | We would like to remind guests that seats are ... | Neutral |
| 2907 | That Maelstrom mural was a thing of beauty and... | Positive |
| 2908 | @sebstrades @deltaonearb @TheEthicalTout Big s... | Spam |
| 2909 | #Dubai #DubaiExpo #AbuDhabi Welcome to the gat... | Spam |
| 2910 | where she will be discussing and promoting her... | Positive |
| 2911 | @apldeap @JReysoul and @TabBep honor their Fil... | Positive |
| 2912 | CEO Clubs Network is proud to announce another... | Positive |
| 2913 | A funky installation I saw in the Dubai expo, ... | Positive |
| 2914 | @MadiBoity This pic is cut in half. Go on yout... | Negative |
| 2915 | Eduardo Paniagua, who visited the #SpainPavili... | Neutral |
| 2916 | Health and Wellness Week at the #swisspavilion... | Positive |
| 2917 | The one of the most beautiful pieces from “Col... | Positive |
| 2918 | The art of storytelling in motion comes to the... | Positive |
| 2919 | Unidentified Artist, Charity, Hospitals: Unite... | Spam |
| 2920 | Expo 2020 Dubai top events\n\n#إكسبو2020\n#Exp... | Positive |
| 2921 | Pray for the peoples of Vanuatu and those who ... | Positive |
| 2922 | Don’t miss them if you’re around too! #LifeSci... | Positive |
| 2923 | @HHichilema An opportunity to connect young m... | Negative |
| 2924 | @BTBullion Ok, I guess I’m kinda gross but I’d... | Positive |
| 2925 | Stunning visuals, immersive audio, interactive... | Positive |
| 2926 | The Al Wasl Plaza is stunning. Everyone night ... | Positive |
| 2927 | How to be successful in life?\n\n#AustralianOp... | Spam |
| 2928 | Find out why #SAPtraining is vital to digital ... | Positive |
| 2929 | #SaudiArabia is one of the world's largest cof... | Positive |
| 2930 | The #ActNow Live #VR Experience and Global Fes... | Positive |
| 2931 | Call us on; 04 554 3603 | +971552824466 or +9... | Spam |
| 2932 | #منى_زكي\n\n#SBISIALI Support The Arab Actress... | Spam |
| 2933 | Andorra Pavilion | World Expo in Dubai! \n\nHe... | Neutral |
| 2934 | You can virtually follow it at https://t.co/bX... | Neutral |
| 2935 | When you are at @expo2020 in Dubai, and you ge... | Positive |
| 2936 | Mobilizing Big Data and Data Science for the S... | Spam |
| 2937 | Here is how Islam Inspires sustainable develop... | Neutral |
| 2938 | Expo 2020 sustainability pavilion project.\nEx... | Positive |
| 2939 | 🇦🇪Dubai Visa\n\nVISA TYPE:\n\nVisit Visa , Tou... | Spam |
| 2940 | Thank you #Expo2020 https://t.co/lyfpLiRa9D | Positive |
| 2941 | Well done KP, Pakistan.....\nthank you Expo202... | Positive |
| 2942 | #UAE Vice President, Prime Minister and ruler ... | Neutral |
| 2943 | Jamaica Showcases Its Top Women Sportspersons-... | Positive |
| 2944 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | Positive |
| 2945 | Eradicating Hunger at top of world's to do lis... | Positive |
| 2946 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | Positive |
| 2947 | Come and explore tourism opportunities and dis... | Positive |
| 2948 | The most anticipated day in our pavilion is cl... | Positive |
| 2949 | Two days left for global megastars Black Eyed ... | Positive |
| 2950 | SOLD SOLD SOLD!\n\nSidra 3 Villas | Dubai Hill... | Spam |
| 2951 | Welcome to Suha’s Creek Residence💫!\n.\nOur do... | Spam |
| 2952 | Participate in a unique on-site #HXM innovatio... | Neutral |
| 2953 | 📢📅The 6 #frenchhealthcare conferences start to... | Neutral |
| 2954 | “When the well is dry, we know the worth of wa... | Spam |
| 2955 | @UKPavilion2020 @KensingtonRoyal @expo2020duba... | Positive |
| 2956 | Idk about you but im excited for $CHIRO #Chihi... | Spam |
| 2957 | WE ARE ALL RUNNERS & WINNERS!\n"We don't r... | Positive |
| 2958 | Windhoek named the 'Healthiest City in Africa'... | Spam |
| 2959 | https://t.co/wINm9qt2RV \n#DubaiExpo #Ethereum... | Spam |
| 2960 | KENYA EYES GCC MARKET FOR EXPORT GROWTH \n\nCu... | Spam |
| 2961 | The #expo2020dubai visitor numbers continue to... | Positive |
| 2962 | HE Hamad Buamim, President & CEO of Dubai ... | Positive |
| 2963 | South Indian Hit Music Festival wows crowds at... | Positive |
| 2964 | The #UAE 🇦🇪 will not be safe until it stops it... | Hate |
| 2965 | Angry Birds\n#uae #fujairah #dubai #expo2020 #... | Spam |
| 2966 | #Breaking \n#Yemen's Iran🇮🇷-backed Houthi mili... | Hate |
| 2967 | So #Expo2020 is bonkers. Follow me on Instagra... | Positive |
| 2968 | #BREAKING #UAE\n\n🔴UNITED ARAB EMIRATES: EXPLO... | Negative |
| 2969 | According to eyewitnesses, at around 4 am #UAE... | Negative |
| 2970 | 🔴 #BREAKING \nThe movement is #normal within ... | Positive |
| 2971 | List of fines for breaking social media rules ... | Negative |
| 2972 | #Breaking - H.H.Sheikh Saif bin Zayed Al Nahy... | Neutral |
| 2973 | Our President, Ms. Alwazna Falah, & VP &am... | Neutral |
| 2974 | #saitama Burn 🔥 Burn 🔥and HyperBurn 🔥\n\n#Sait... | Spam |
| 2975 | @prudensfx #SHINJA\n5 new exchange listings, w... | Neutral |
| 2976 | Xiaomi Poco X3 GT Dual SIM 8GB RAM 128GB Star... | Spam |
| 2977 | Cold day with sunny wether.\n#DubaiExpo #UAE | Neutral |
| 2978 | The Nigerian Igbo people am living with here i... | Spam |
| 2979 | Night in desert #dubai_DATING \n#DubaiExpo2020... | Positive |
| 2980 | Last chance to register and ask your questions... | Neutral |
| 2981 | And of course I visited the @ethnotecham pavil... | Positive |
| 2982 | Today, we celebrate Australia 🇦🇺 at Expo’s Por... | Positive |
| 2983 | @expo2020dubai #Australia Pavilion. Wonderful ... | Positive |
| 2984 | VIP Protocol organized a trip to Marmum Dairy ... | Spam |
| 2985 | BREAKING NEWS: Israeli president presses on wi... | Hate |
| 2986 | @MarisePayne @DrSJaishankar @MEAIndia @AusHCIn... | Negative |
| 2987 | Yesterday, CEO Clubs hosted 'Introduction to T... | Neutral |
| 2988 | Work in progress 🙌\n\n#swissexpresso #kaffee #... | Spam |
| 2989 | @TR1N1TYxWARR10R So before I moved to Belgium,... | Spam |
| 2990 | @Knack Visitors to the Belgium Pavilion at Exp... | Positive |
| 2991 | Commissioner-General Clark & his wife note... | Positive |
| 2992 | Support our #socialproject & #shopforacaus... | Neutral |
| 2993 | We were honored to welcome Shaikh Sultan Bin S... | Neutral |
| 2994 | 🚇 Until 21 February, dive into the pharaonic #... | Neutral |
| 2995 | VAT Consultancy Services\n\nThe Bookkeeper\nCo... | Spam |
| 2996 | Our pavilion ambassadros welcome you at the Bo... | Positive |
| 2997 | Chef Rodrigo Oliviera, one of #Brazil's most r... | Positive |
| 2998 | Guess who’s coming to the #BrazilPavilion? He ... | Positive |
| 2999 | Modern-day Bosnia and Herzegovina has been hom... | Positive |
| 3000 | @SuperWeenieHtJr Maybe they should make a Braz... | Negative |
| 3001 | A must-see physical-meets-digital immersive se... | Positive |
| 3002 | Advocating and Thriving ICT Innovators. The mi... | Neutral |
| 3003 | #DubaiExpo\nThe top 5 are epic.\n#DubaiExpo202... | Positive |
| 3004 | It was such an honour to welcome H.E. Mr. Pak ... | Positive |
| 3005 | Welcome to the Health & Spa week in the Bu... | Spam |
| 3006 | Traveller-centric approach needed now: STB for... | Spam |
| 3007 | Welcome to the Health & Spa week in the Bu... | Positive |
| 3008 | Christie immerses visitors to Canada Expo pavi... | Positive |
| 3009 | HE Mohamed bin Hadi Al Hussaini, Minister of S... | Spam |
| 3010 | Are you interested in #business opportunities ... | Spam |
| 3011 | Now available in Canada (as an e-book only)! T... | Spam |
| 3012 | @AnotherElle "Debbie wonders if we're about to... | Spam |
| 3013 | @SalNJ19 Cool! She works tomorrow all day in t... | Neutral |
| 3014 | I wanna meet celebs and compliment them on thi... | Positive |
| 3015 | On Feb 5th, the Canadian Business Council of D... | Positive |
| 3016 | @TheHorizoneer If someone ever does a concept ... | Positive |
| 3017 | #DeepLearning accurately analyzed abdominal mu... | Spam |
| 3018 | The online CAEXPO is divided into China Pavili... | Neutral |
| 3019 | @SuperWeenieHtJr Well, no they could use an em... | Neutral |
| 3020 | #Funfact At the #Expo2012Yeosu held in #SouthK... | Positive |
| 3021 | @Frankenfarts @TheHorizoneer @VileAgatha There... | Negative |
| 3022 | @TheHorizoneer Encanto could work as part of a... | Positive |
| 3023 | President Herzog at the #DubaiExpo2020 despite... | Neutral |
| 3024 | My first trip, Oct.1985 on our honeymoon. Firs... | Positive |
| 3025 | #Repost @samiyusuf \nThe Universe found manife... | Neutral |
| 3026 | @FoxNews … check on how China feels about (UKR... | Spam |
| 3027 | Dude, the movie is only like 2 months old and ... | Negative |
| 3028 | We’re taking a meditative look at the power of... | Neutral |
| 3029 | I would love to see a Mirabel Madrigal meet an... | Positive |
| 3030 | @sincerelyivy We need a Colombia pavilion at E... | Positive |
| 3031 | @ScottGustin I've said it before and I'll say ... | Positive |
| 3032 | @TCJaalin I want a compromise. Colombia Pavili... | Positive |
| 3033 | Let’s welcome Ms. Nadimeh Mehra, Vice Presiden... | Positive |
| 3034 | Enjoyed celebrating “Rock” Ransdale’s life wit... | Positive |
| 3035 | @PresidenciaSV @nayibbukele I wonder if they a... | Neutral |
| 3036 | Pure Genius: ... | Positive |
| 3037 | Take a good look at these stunning portraits ... | Positive |
| 3038 | #Cambium Networks' PTP 820C, an all Outdoor du... | Spam |
| 3039 | Take a good look at these stunning portraits ... | Positive |
| 3040 | Video shows the stunning portraits which are ... | Positive |
| 3041 | Take a good look at these stunning portraits ... | Positive |
| 3042 | Pure Genius 🙏 These are some of the stunning p... | Positive |
| 3043 | Take a good look at these stunning portraits e... | Positive |
| 3044 | Take a good look at these stunning portraits ... | Positive |
| 3045 | Imperial Pavilion at the World's fair of 1867 ... | Spam |
| 3046 | My never ending sincere Gratitude & Salute... | Positive |
| 3047 | Photonics West Exhibition 2022 has now officia... | Positive |
| 3048 | Call us on; 04 554 3603 | +971552824466 or +9... | Spam |
| 3049 | Futudesign++ [architects]Helsinki Finland --"F... | Spam |
| 3050 | #Dubai Marina always excites me with her light... | Spam |
| 3051 | For #PotatoEurope 2022 (Sept 7-8,Germany) @DLG... | Spam |
| 3052 | How did you moss to check the contents of the ... | Negative |
| 3053 | Can Georgia Tech take down the ACC's top team ... | Spam |
| 3054 | On Friday, Jan. 28, the Georgia hockey team de... | Spam |
| 3055 | The Georgia hockey team was able to comeback a... | Spam |
| 3056 | More work to be done.\nSee you Sunday at the S... | Positive |
| 3057 | RĀTŪ\n- It's official: our kids are getting to... | Spam |
| 3058 | Ghana has named the three artists who will sho... | Spam |
| 3059 | @LottinPackeddd Damn, I wish I could go but I’... | Positive |
| 3060 | 14/358* | Georgia Tech | Hank McCamish Pavilio... | Spam |
| 3061 | Thank you for coming! We love having students ... | Positive |
| 3062 | On Monday, part of the world’s largest copy of... | Positive |
| 3063 | Zsófia Keresztes will represent Hungary at the... | Neutral |
| 3064 | We were honoured to have a stunning four-piece... | Positive |
| 3065 | Meet our Expo Players! 🪕\n\nBarry, Laura, Step... | Neutral |
| 3066 | Timely dismissal for India Maharajas. Set batt... | Spam |
| 3067 | Visiting #Expo2020 is easier than you think!\n... | Positive |
| 3068 | @AnimeshFooty @ashwinravi99 @babarazam258 @iSh... | Spam |
| 3069 | Get ready to experience the world of endless o... | Spam |
| 3070 | India is missing @RaviShastriOfc sleep in the ... | Spam |
| 3071 | Thrilled to be a community partner in “JORDAN ... | Positive |
| 3072 | Top Ten Things We Love About Epcot's Japan Pav... | Positive |
| 3073 | My favorite pavilion art goes to Italy. Well d... | Positive |
| 3074 | Win tickets for Dr. Jordan B. Peterson: Beyond... | Spam |
| 3075 | Jamaica pavilion is winning over visitiors' he... | Positive |
| 3076 | Here are some discussions that will happen sho... | Neutral |
| 3077 | July 26, 1854.. We went to Rockaway Friday mor... | Spam |
| 3078 | Antioxidant, immunomodulatory & Anti-infla... | Neutral |
| 3079 | Getting rid of the Saki bar in the Japan Pavil... | Negative |
| 3080 | The Kenya Pavilion at the Expo Dubai 2020 has ... | Positive |
| 3081 | Amy from Lebanon was the 500 000th visitor at ... | Positive |
| 3082 | Andy Vermaut shares:Virtual Therapy Lab Presen... | Neutral |
| 3083 | We were moved to see the warmth displayed towa... | Positive |
| 3084 | Wonderful to see @ShimhaShakyb’s stunning pain... | Positive |
| 3085 | Good morning from Dubai Exhibition Centre #Exp... | Neutral |
| 3086 | We are here now for Sustainable Energy and Nat... | Neutral |
| 3087 | Come and join us live today for Opening Ceremo... | Neutral |
| 3088 | Visit the Maldives Pavilion at the Sustainabil... | Neutral |
| 3089 | 1 DAY TO GO [Opening of Week 18: Sustainable E... | Positive |
| 3090 | All this is happening during the Sustainable A... | Neutral |
| 3091 | 2 days to go to Sustainable Energy and Natural... | Neutral |
| 3092 | 3 more days to go for the opening of Week 18 -... | Positive |
| 3093 | 3 more days to go for the opening of Week 18 -... | Neutral |
| 3094 | 25 JAN 2022 | 3PM UAE | 7PM MYT \n\nJoin Mr Ha... | Neutral |
| 3095 | 🍳 From 10 to 22 February, meet on the esplanad... | Positive |
| 3096 | @girney_expo2020 You didn’t 😬😬 | Spam |
| 3097 | Enter the weekly raffle draw to stand a chance... | Neutral |
| 3098 | Injecting Malaysia's diverse and vibrant cultu... | Positive |
| 3099 | Wow, what a game we saw at the Cox Pavilion to... | Spam |
| 3100 | At the Cox Pavilion for a big time matchup bet... | Spam |
| 3101 | @DreamfinderGuy Now, to just get rid of the pe... | Negative |
| 3102 | COLOMBIA is not Mexico. Stop suggesting an #En... | Negative |
| 3103 | Thank you @TravTalkME for this nice article ab... | Positive |
| 3104 | The sangria/chickpea snack bar in the middle o... | Positive |
| 3105 | Roy our photo pass photographer in the Morocco... | Positive |
| 3106 | It’s amaziiiiiiiiiing😳\nThank you for great ti... | Positive |
| 3107 | Both #AMUM 50KM and 5KM races will take place ... | Neutral |
| 3108 | @KLM recently co-hosted a reception at the Net... | Neutral |
| 3109 | Are you interested in horticulture contributin... | Neutral |
| 3110 | So I went to the Netherlands Pavilion. Instead... | Positive |
| 3111 | Premier #Construction - The Oman Pavilion at E... | Positive |
| 3112 | The #LEAP2022 exhibition is going to be awesom... | Positive |
| 3113 | The #LEAP22 exhibition is going to be awesome!... | Positive |
| 3114 | The wait is over!! Our team has landed and wil... | Positive |
| 3115 | Throwback to side event at #Pakistan's pavilio... | Neutral |
| 3116 | Its still surreal to grasp how much love the P... | Positive |
| 3117 | How can business and emerging technologies hel... | Neutral |
| 3118 | We thank all our official Pavilion sponsors fo... | Positive |
| 3119 | The Pakistan Pavilion wholeheartedly would lik... | Positive |
| 3120 | What an honor to take #Malala's and her family... | Positive |
| 3121 | Thank you so much Zia bhai @ZiauddinY \n@Malal... | Positive |
| 3122 | The #Pakistan Pavilion won Honorable Mention i... | Positive |
| 3123 | The Pakistan Pavilion was honored to have Paki... | Neutral |
| 3124 | As a country Pakistan does not impress much gl... | Positive |
| 3125 | Today’s business highlights at Expo 2020 Dubai... | Positive |
| 3126 | Part of the world’s largest Holy Quran was rec... | Positive |
| 3127 | The Pakistan Pavilion was proud to unveil the ... | Positive |
| 3128 | come to Pakistan the beautiful country on the ... | Positive |
| 3129 | You know our color, right? IT'S BLUE!!! 💙\nSho... | Positive |
| 3130 | @IpDaMan https://t.co/kR02ra5GNx Please Check!... | Spam |
| 3131 | Yesterday's magical performance at @expo2020du... | Positive |
| 3132 | Dont miss expo2020 dubai soon to reach to end ... | Positive |
| 3133 | Pavel Volya — a Russian TV host, actor and Lya... | Positive |
| 3134 | 4/5 Palestinian civil society has been calling... | Negative |
| 3135 | We were thrilled to host His Excellency Hussai... | Positive |
| 3136 | @expo2020dubai : Saudi Arabia’s pavilion is de... | Positive |
| 3137 | @TeffuJoy @MmusiMaimane @kabelodick No I don’t... | Spam |
| 3138 | During @HamdanMohammed's visit to #Expo2020, h... | Neutral |
| 3139 | Congrats to the 6️⃣ #EUeic companies selected ... | Positive |
| 3140 | Together with @SSPHplus we brought @ATeatroDim... | Neutral |
| 3141 | @uwuketz This small pavilion was a gift from t... | Positive |
| 3142 | Staff at work 🇨🇭👷 \n\nBravo to all our staff f... | Positive |
| 3143 | @drshamamohd Shama, given the real video of In... | Neutral |
| 3144 | @JakeGagain https://t.co/e8rRPV4Mnd\n#niros #n... | Spam |
| 3145 | Dubai Ruler and the Prime Minister of Somalia ... | Neutral |
| 3146 | @klaraliron https://t.co/e8rRPV4Mnd\n#niros #n... | Spam |
| 3147 | @klaraliron https://t.co/e8rRPV4Mnd\n#niros #n... | Spam |
| 3148 | MXP600 delivers best-in-class coverage so vita... | Spam |
| 3149 | Ruler of Dubai meets the President of Israel a... | Neutral |
| 3150 | Wishing you all the success this year. Cheers ... | Positive |
| 3151 | The spaces of the future must be designed with... | Positive |
| 3152 | Stunning Views & A Lively Neighbourhood, D... | Spam |
| 3153 | HH Sheikh Mohammed bin Rashid received today ... | Neutral |
| 3154 | Number of visitors to the largest tourism even... | Positive |
| 3155 | #Expo2020 random shots 🤷🏻♂️ https://t.co/47lO... | Neutral |
| 3156 | Hola amigos, I want to confess something one o... | Positive |
| 3157 | @JohnGallagherUK @UKPavilion2020 @expo2020duba... | Neutral |
| 3158 | #GlobalGoalsforAll\n#ObjetivosGlobalesparaTodo... | Neutral |
| 3159 | We are newly establish travel agency in Maldiv... | Spam |
| 3160 | @suqaaaar But I did have a chance 😑 | Spam |
| 3161 | Really..?!! #FreePalestine #Palestine \n #الام... | Spam |
| 3162 | Mr. Parag Ghosh, Founder & CEO of Auspice ... | Neutral |
| 3163 | Today's the day! As #Expo2020's Health and Wel... | Positive |
| 3164 | It’s never too late to start using tools of th... | Spam |
| 3165 | Promises are made to be kept for people and pl... | Positive |
| 3166 | I'm (covid) free again! #Expo2020 https://t.co... | Spam |
| 3167 | #UAE Innovates will Start Tomorrow and will Co... | Neutral |
| 3168 | @AD_GQ BTw today I visited #IsrealPavilion ver... | Positive |
| 3169 | "Isophotes" are widely used in astronomy to de... | Spam |
| 3170 | @ScotExpo2020 @jasonleitch @HIMSS @dhiscotland... | Negative |
| 3171 | 60 More Days with Expo 2020 Dubai\n#Expo2020 #... | Neutral |
| 3172 | @ICCROM @expo2020 @ItalyExpo2020 I could not r... | Negative |
| 3173 | It’s amazing 🤩 \nSix60 is the greatest artist... | Positive |
| 3174 | Mr. Bhushan Chhajed, Founder of Khetiwalo Orga... | Positive |
| 3175 | Exciting news! In celebration of our milestone... | Spam |
| 3176 | @girney_expo2020 Mason says bye bye to his car... | Spam |
| 3177 | Okay these mason greenwood memes are going cra... | Spam |
| 3178 | First-of-its-kind prosthetic limb socket made ... | Neutral |
| 3179 | #UAE Innovates 2022 kicks off its journey in a... | Neutral |
| 3180 | You may say, I'm a dreamer #expo2020 https://t... | Positive |
| 3181 | Crowd at the Six60 performance in Dubai right ... | Neutral |
| 3182 | People in large numbers have started visiting ... | Positive |
| 3183 | The one and only, Lucky Ali is making his way ... | Positive |
| 3184 | We are sharing some memories from the economic... | Positive |
| 3185 | Committed to enhancing the health & well-b... | Spam |
| 3186 | Technologies Transforming Healthcare at Expo 2... | Neutral |
| 3187 | The #spaces of the future must be designed wit... | Neutral |
| 3188 | @rihanna please visit Kenya 🇰🇪 for your #baby ... | Spam |
| 3189 | "Klunk-klank": that's the sound meaning your v... | Neutral |
| 3190 | In collaboration with the UN, the #UAE launche... | Spam |
| 3191 | Meanwhile in the United Arab Emirates. 🇮🇱🇦🇪\n\... | Neutral |
| 3192 | The @Saudi_fda_en has launched an ‘RSD’ system... | Spam |
| 3193 | The brilliant folks at @EquidemOrg are launchi... | Positive |
| 3194 | Six60 take the stage at #Expo2020 Dubai for th... | Positive |
| 3195 | Excellent to see the UK Pavilion at #Expo2020.... | Positive |
| 3196 | Rukan 2 Lofts from #Reportage_Real_Estate \nA ... | Spam |
| 3197 | A fantasy masterpiece in multiple languages🙏🎶💞... | Positive |
| 3198 | Invest in a city that promises the fantasy of ... | Spam |
| 3199 | Gabon Pavilion at Expo 2020 Dubai a Space to R... | Neutral |
| 3200 | .@iamkatieovery chats with @AhlamBolooki on wh... | Spam |
| 3201 | using the same ancient techniques practiced in... | Positive |
| 3202 | Did you know that Kidovation has been to the D... | Positive |
| 3203 | #UAE Innovates will Start Tomorrow and will Co... | Positive |
| 3204 | Terry Fox Run at #Expo2020 #Dubai \n#Expo2020D... | Neutral |
| 3205 | Myriam I'm so excited that you will have a con... | Positive |
| 3206 | UAE’s Ministry of Defence to perform weekly pa... | Neutral |
| 3207 | Project: UAE Pavilion, @expo2020dubai\nhttps:/... | Neutral |
| 3208 | Inside the Russian pavilion - Expo moment\nDub... | Neutral |
| 3209 | #WATCH: Pakistani artist’s unique Qur’anic ins... | Positive |
| 3210 | SHAME!!!!! \n#Dubai #AbuDhabi #Expo2020 #Dubai... | Negative |
| 3211 | SMF Team visit To EXPO 2020, exploring culture... | Neutral |
| 3212 | It was an unforgettable night! Superstar Balqe... | Positive |
| 3213 | #loymachedo shares\nHouthi Claim Explosion In ... | Hate |
| 3214 | #loymachedo shares\nHouthi Claim Explosion In ... | Hate |
| 3215 | What a huge honour to have H.E. Isaac Herzog, ... | Positive |
| 3216 | Fifth visit to Expo 2020 Dubai, wonderful afte... | Positive |
| 3217 | Israel's president Isaac Herzog visits Israeli... | Neutral |
| 3218 | Haider Tuaima, Head of Real Estate Research sp... | Spam |
| 3219 | Israel's president Isaac Herzog visits Israeli... | Neutral |
| 3220 | Israel's president Isaac Herzog visits Israeli... | Neutral |
| 3221 | So beautiful 😍\nhttps://t.co/4J3b6MnxCb\n#trav... | Spam |
| 3222 | It starts with a dream 📸\n#expo2020 #Dubai #Ru... | Neutral |
| 3223 | Each month, we highlight the notable moments f... | Positive |
| 3224 | UAE Innovates 2022 kicks off its journey in al... | Positive |
| 3225 | #Elemeno Kids, a unique startup glorifying Ind... | Spam |
| 3226 | #Houhti view on the #AbrahamAccords. Consider ... | Neutral |
| 3227 | With the participation of H.E. Dr. Yousif Moha... | Neutral |
| 3228 | NEW: The Royal Family Dance Crew's #Expo2020 N... | Negative |
| 3229 | Everything you desire and more is yours for th... | Spam |
| 3230 | Discover the #KuwaitPavilion at #Expo2020Dubai... | Neutral |
| 3231 | Don't miss the opportunity to join us tomorrow... | Positive |
| 3232 | Missing that strawberry kinder beauno cheeseca... | Positive |
| 3233 | A Tribute to “Netaji Subhas Chandra Bose” in t... | Neutral |
| 3234 | Visitors will be able to virtually experience ... | Neutral |
| 3235 | THE KENYA PAVILLION AT #EXPO2020\nThe Kenya Pa... | Positive |
| 3236 | To celebrate his country’s national day, H.E. ... | Positive |
| 3237 | 60 More Days with #Expo2020 #Dubai\n#Expo2020D... | Neutral |
| 3238 | Incredible miniatures, and much much more, at ... | Positive |
| 3239 | New Zealand’s national day is being celebrated... | Positive |
| 3240 | Alain Ebobissé, CEO, Africa50, will be speakin... | Neutral |
| 3241 | Happy dayoff at expo2020 #mybff https://t.co/i... | Positive |
| 3242 | They’re talented, they’re full of energy, and ... | Positive |
| 3243 | Today, we reached 700,000 visitors. We thank e... | Positive |
| 3244 | Welcome to our country UAE that still the safe... | Spam |
| 3245 | Scotland is looking to the future of health at... | Positive |
| 3246 | From @MyriamFares to @LuckyAli, here are six c... | Positive |
| 3247 | This week, join us virtually in the Swedish pa... | Neutral |
| 3248 | Guest House (guest house) were on hand to eng... | Spam |
| 3249 | The Great Indian Recipe Contest has started. A... | Neutral |
| 3250 | Visit Expo 2020 Dubai for Chinese New Year Cel... | Positive |
| 3251 | Mr. Shubham Dungarwal, Director - Gfarms Pvt L... | Positive |
| 3252 | Getting to know Luxemburg #expo2020 (@ Luxembo... | Neutral |
| 3253 | Join us @RwandaExpo2020 in #Dubai for the Rwan... | Positive |
| 3254 | Sheikh Mohammed bin Rashid, Vice President and... | Neutral |
| 3255 | No one is safe until everyone is safe. We need... | Neutral |
| 3256 | World Expo has undergone great challenges; glo... | Positive |
| 3257 | Among the speakers for the #GEMGlobalReport22 ... | Neutral |
| 3258 | 125th Birth Anniversary: A Tribute to “Netaji ... | Neutral |
| 3259 | Discover the Côte d'Azur, a unique destination... | Positive |
| 3260 | #Expo2020 #Dubai Where life happens - A shor... | Neutral |
| 3261 | Get the chance to win exciting prizes! \nHere'... | Positive |
| 3262 | The Pakistan Pavilion Cordially invites you fo... | Neutral |
| 3263 | “#Israel's president spoke at #Dubai's #Expo20... | Hate |
| 3264 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 3265 | Discover the land of vibrant culture and endle... | Positive |
| 3266 | With all the love we’ve received, we can’t wai... | Positive |
| 3267 | We are excited to welcome @INJAZorg as a commu... | Positive |
| 3268 | Some photos from the "National Day" ceremony a... | Positive |
| 3269 | An insightful end to Scotland's Digital Health... | Positive |
| 3270 | Scotland's Digital Health and Wellness Day at ... | Positive |
| 3271 | It’s now or never before it’s gone forever! 60... | Positive |
| 3272 | Eat and save! Go for these affordable must-try... | Positive |
| 3273 | Will be sharing my thoughts at the Rwanda Busi... | Neutral |
| 3274 | @PascalMurasira, Managing Director, Norrsken E... | Neutral |
| 3275 | Celebrity chef #VineetBhatia is back on #Studi... | Neutral |
| 3276 | #StudioExpo team is getting bigger! \nJoin the... | Positive |
| 3277 | Kalamkari painting involves over 20. Know more... | Spam |
| 3278 | Connecting Minds, Creating the Future! Join Co... | Positive |
| 3279 | The #USAPavilion welcomed Hochschule Munich Un... | Positive |
| 3280 | It’s now or never before it’s gone forever! 60... | Positive |
| 3281 | Exciting! Israel's National Day at #Expo2020 D... | Positive |
| 3282 | The Musical Journey full of wonder every Thurs... | Hate |
| 3283 | We are incredibly proud that the @UofGLivingLa... | Positive |
| 3284 | Expo 2020 Dubai @expo2020dubai has announced i... | Neutral |
| 3285 | If there is just one African exhibition you mu... | Positive |
| 3286 | Canadians and others from all over the globe j... | Positive |
| 3287 | Helping you capitalize on current leads and ge... | Spam |
| 3288 | It was so wonderful to welcome students back a... | Positive |
| 3289 | Vertebral Deformity Measurements on MRI, CT, a... | Spam |
| 3290 | Teachers all over the world are special. We at... | Spam |
| 3291 | We are delighted to have joined Scotland's Dig... | Positive |
| 3292 | This week @essity will be supporting the @Swec... | Positive |
| 3293 | On February 1, from 4 PM - 6 PM, she will part... | Positive |
| 3294 | #WATCH: Pakistani artist’s unique Qur’anic ins... | Positive |
| 3295 | Expo 2020 Dubai India Pavilion building design... | Neutral |
| 3296 | Egypt used stunning audio-visual screens and r... | Positive |
| 3297 | @girney_expo2020 Get a job bro 😁 | Spam |
| 3298 | The Wasl dome in all its glory @expo2020dubai... | Positive |
| 3299 | Ambassador of the Syrian Arab Republic in the ... | Positive |
| 3300 | Expo 2020 Dubai is the world’s biggest event a... | Positive |
| 3301 | Celebrating the connecting power of sport and ... | Positive |
| 3302 | Eat and save! Go for these affordable must-try... | Positive |
| 3303 | #StudioExpo is live at #Expo2020Dubai. \n#Duba... | Neutral |
| 3304 | BioClavis is part of the expert panel discussi... | Neutral |
| 3305 | Slip in a workout while you’re visiting @expo2... | Positive |
| 3306 | Srikalahasthi Kalamkari produced mainly in Sri... | Spam |
| 3307 | @VusiThembekwayo, CEO, MyGrowthFund Venture, w... | Neutral |
| 3308 | The Syria Pavilion at Expo 2020 Dubai and the ... | Positive |
| 3309 | Dive into this winter season with the best cla... | Spam |
| 3310 | The famous #NaatuNaatuSong @expo2020schools @e... | Neutral |
| 3311 | Meet the people leading the science and use of... | Spam |
| 3312 | Celebrating Israel National Day at #Expo2020 #... | Positive |
| 3313 | #Herzog and First Lady Michal Herzog opened #I... | Neutral |
| 3314 | We are excited to welcome @Oasis_500 as a comm... | Positive |
| 3315 | 👀 There’s so much to see at #EXPO2020Dubai tha... | Positive |
| 3316 | UAE’s Ministry of Defence to perform a live pa... | Neutral |
| 3317 | Pleased and proud to see Dr Ujala Nayyar from ... | Neutral |
| 3318 | Weak disease labels classify diseases for 3 or... | Spam |
| 3319 | Get the chance to meet the brilliant @ShankarA... | Positive |
| 3320 | Don’t miss our next running event, the Terry F... | Neutral |
| 3321 | A week of sharing the unique history, aroma, a... | Positive |
| 3322 | Happening today! #Expo2020 https://t.co/UyyA5Y... | Positive |
| 3323 | HH Sheikh Mohammed bin Rashid Meets with the P... | Neutral |
| 3324 | "The control of covid19 came at a cost, such a... | Neutral |
| 3325 | .@UofGLivingLab are at #Expo2020 with @Precisi... | Positive |
| 3326 | #Avigilon Presence Detector. The impulse #rada... | Spam |
| 3327 | Opening this year, the assisted living lab at ... | Spam |
| 3328 | #SmartPTT enables dispatchers to talk to diffe... | Spam |
| 3329 | Gooooood Morning ☀️💛💟💛☀️\n\n#NFT #NFTs #NFTcom... | Spam |
| 3330 | We are proud to be at #Expo2020 with @Precisio... | Positive |
| 3331 | AIM 2022 Startup welcomes FlashBeats, a mobile... | Spam |
| 3332 | "Clue No.1 🗝 \n💪She is powerful. \n🔥She is fea... | Spam |
| 3333 | We had the opportunity to attend a debate focu... | Positive |
| 3334 | #Herzog and First Lady Michal Herzog opened #I... | Neutral |
| 3335 | Stay tuned for #UAE Innovates events at #Expo2... | Positive |
| 3336 | These new creations, the largest we've ever bu... | Positive |
| 3337 | Enjoy opera 🎻 music with a pop twist 🎸 as Sol3... | Positive |
| 3338 | What a great moment. Fantastic to see. Well do... | Positive |
| 3339 | “The Walk for the Ocean” took place at the #... | Positive |
| 3340 | #ArtficialGrassDubai provide #Artificial grass... | Spam |
| 3341 | @expo2020 @TheNationalNews Meanwhile, Dr Kanda... | Neutral |
| 3342 | Interesting panel discussion at Scotland's Dig... | Neutral |
| 3343 | A Tribute to “Netaji Subhas Chandra Bose” in t... | Neutral |
| 3344 | Incorporating many complex choreographies, inc... | Positive |
| 3345 | #StudioExpo goes live a 4PM #Expo2020Dubai!\n\... | Neutral |
| 3346 | Scottish digital health #Expo2020 panel highli... | Neutral |
| 3347 | #Israel: President Isaac Herzog kicked off the... | Positive |
| 3348 | 125th Birth Anniversary: A Tribute to “Netaji ... | Neutral |
| 3349 | The technical ability of its musicians 🎼 and t... | Positive |
| 3350 | "VIPs from around the world visit the Japan Pa... | Positive |
| 3351 | Join us for the long-awaited #SpainDay at #Exp... | Positive |
| 3352 | This was followed with an opening address by #... | Positive |
| 3353 | My lovely princess 👑😍\n#البرنسيسة #ديانا_حداد ... | Spam |
| 3354 | New Video: Emirates - A #VisitDubai, #Expo2020... | Positive |
| 3355 | New Video: Emirates - A #VisitDubai, #Expo2020... | Positive |
| 3356 | UN at Expo 2020 Dubai | United Nations https:/... | Neutral |
| 3357 | Srikalahasti Kalamkari is inspired by religiou... | Spam |
| 3358 | What a day! Great to have our guests from Etis... | Positive |
| 3359 | By experimenting with materials, techniques an... | Positive |
| 3360 | Great to hear @djlmed, @jasonleitch and @HalWo... | Positive |
| 3361 | Our #Expo2020 National Day celebrations began ... | Positive |
| 3362 | #InterTalk’s Encompass Mobile Dispatch Console... | Spam |
| 3363 | #HealthandWellness week at the pavilion in #Du... | Neutral |
| 3364 | Israel's President Isaac Herzog visits #Expo20... | Positive |
| 3365 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | Neutral |
| 3366 | The #USAPavilion hosted Stephen Shaya, M.D. of... | Positive |
| 3367 | As part of #Expo2020 \nHealth & Wellness W... | Positive |
| 3368 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | Neutral |
| 3369 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | Spam |
| 3370 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | Neutral |
| 3371 | UAE’s Minister of Tolerance Sheikh Nahyan bin ... | Positive |
| 3372 | Last week, DMU was back at @Expo2020, showing ... | Positive |
| 3373 | If you are planning to visit #Expo2020 Dubai, ... | Neutral |
| 3374 | "There is no subtitute for quality. We need a ... | Neutral |
| 3375 | The #USAPavilion welcomed Minister of Health o... | Neutral |
| 3376 | Today our CEO Mohan Frick and Finance Director... | Neutral |
| 3377 | Fighting Stigma : India pavilion at EXPO2020 ... | Positive |
| 3378 | Discover Haus 51 bespoke services, call us on ... | Spam |
| 3379 | Finally 😍😍😍 #Expo2020 https://t.co/sgxvk5tUCJ | Positive |
| 3380 | MSME Minister Narayan Rane inaugurates MSME Pa... | Spam |
| 3381 | Today is the day...our official @expo2020dubai... | Positive |
| 3382 | 4 months down, 2 more to go! 🇾🇪\n\n#أحفاد_سبأ ... | Neutral |
| 3383 | #IweWosvora\n\n#Zimbabwe’s healthcare system h... | Positive |
| 3384 | Join #SAPServices on-site at SAP House Dubai i... | Neutral |
| 3385 | In the India Pavilion yoga is really on displa... | Positive |
| 3386 | Essential to #learn from the #polio eradicatio... | Neutral |
| 3387 | The Greek pavilion was designed based on the m... | Positive |
| 3388 | "We live in an age of misinformation and disin... | Neutral |
| 3389 | EXPO AL WASL PLAZA\n\nPFC is taking a main par... | Neutral |
| 3390 | “Wild animals don’t cause pandemics: people do... | Neutral |
| 3391 | What A Place This #Expo2020 Dubai Is 😊 Feel My... | Positive |
| 3392 | FOR MORE INQUIRIES:\n☎: 04 442 6766/055 8104 6... | Spam |
| 3393 | You cannot make a wolf look cute sorry https:/... | Spam |
| 3394 | Malaysia Pavilion spreads smiles with a unique... | Positive |
| 3395 | Today we are excited to celebrate Spain 🙌\nDo... | Positive |
| 3396 | Timber industry thrives in a sustainable setti... | Positive |
| 3397 | Today we are excited to celebrate New Zealand ... | Positive |
| 3398 | Luxembourg Pavilion presents a disaster rapid-... | Neutral |
| 3399 | Talabat showcasing how automation can be used ... | Neutral |
| 3400 | Welcome to Colombia 🇨🇴 only in \nDubai \n#expo... | Positive |
| 3401 | I'm tuning in to #Expo2020 this morning with @... | Neutral |
| 3402 | We can’t believe it’s been over a month since ... | Positive |
| 3403 | WOW! Well done, and you still have 2 more mont... | Positive |
| 3404 | Fabulous key note address summarising the chan... | Neutral |
| 3405 | From Nicola Fanetti to Rodrigo de la Calle, he... | Positive |
| 3406 | @Shivonbk1, Managing Director, Babyl Health Rw... | Neutral |
| 3407 | We are excited to kick off our sessions at Exp... | Positive |
| 3408 | Read the summary of the International Business... | Neutral |
| 3409 | #WATCH: Pakistani artist’s unique Qur’anic ins... | Positive |
| 3410 | Y12 studying neurotransmission in the Russian ... | Positive |
| 3411 | There has been continual background chatter or... | Hate |
| 3412 | Enhance the quality of your food with our new ... | Spam |
| 3413 | Opening Scotland's Digital Health Day at #Expo... | Positive |
| 3414 | #MondayTip with @jruzzmerca\nTake a time-lapse... | Positive |
| 3415 | #MondayTip with @jruzzmerca\nTake a time-lapse... | Positive |
| 3416 | #UAE and #Australia discuss ways to strengthen... | Positive |
| 3417 | Expo 2020 Dubai is a fantastic opportunity to ... | Positive |
| 3418 | Today we are excited to celebrate Israel 🙌\nD... | Positive |
| 3419 | @Malala YOUSAFZAI VISITS PAKISTAN PAVILION AT ... | Neutral |
| 3420 | Join @SwecareSweden, @SocialDep, Vision Zero C... | Neutral |
| 3421 | #Expo2020Dubai will mark #WorldCancerDay with ... | Neutral |
| 3422 | Women have been disproportionately affected by... | Neutral |
| 3423 | AIM 2022 Startup Pillar welcomes Ukrainian Sta... | Spam |
| 3424 | @Ina_aIi00 Oh no 😧 | Spam |
| 3425 | We @FierceKitchens visited the Japan Pavilion ... | Positive |
| 3426 | Highlights from" Experience Redefining the Age... | Neutral |
| 3427 | Expo 2020 #Dubai to Host Terry Fox Run on 5 Fe... | Neutral |
| 3428 | @mreazi, Founder and CEO, Zagadat Capital, and... | Neutral |
| 3429 | Check out this aerial view of the United Kingd... | Positive |
| 3430 | What makes the desert beautiful is that somewh... | Spam |
| 3431 | @expo2020dubai Dioxin from burning high-carbon... | Negative |
| 3432 | 🤗 Innovation Month in UAE 🥰\n\nSay Hello to in... | Positive |
| 3433 | Food for Future Summit & Expo to debut at ... | Neutral |
| 3434 | Check out the Indian Pavilion at EXPO 2020 to ... | Positive |
| 3435 | His Highness #SheikhHamdan bin Mohammed bin Ra... | Neutral |
| 3436 | The #UAEPavilion celebrated the National Day o... | Positive |
| 3437 | MEET THE TEAM\n\nMr Ipyana Mfune is the Retail... | Neutral |
| 3438 | His Majesty #KingCarlXVI Gustaf of #Sweden vis... | Neutral |
| 3439 | Amb. @YKaritanyi, CEO, Rwanda Mines, Petroleum... | Neutral |
| 3440 | As part of the Health and Wellness week, the S... | Neutral |
| 3441 | NEW ROLE - Medical Representative\nAPPLY HERE ... | Spam |
| 3442 | It's Scotland's Digital Health Day at #Expo202... | Positive |
| 3443 | India pavilion at Expo 2020 Dubai reflects Ind... | Positive |
| 3444 | From SAP #HumanCapitalManagement, to #Intellig... | Neutral |
| 3445 | Expo 2020 lake look like a #COVID19 virus ... ... | Neutral |
| 3446 | It's Scotland's Digital Health Day at #Expo202... | Positive |
| 3447 | Kindly contact with the details below:\nmobile... | Spam |
| 3448 | Today’s business highlights at Expo 2020 Dubai... | Neutral |
| 3449 | Join us at Expo 2020 Dubai as we examine lesso... | Neutral |
| 3450 | Dubai Freelance visa / all kind of family visa... | Spam |
| 3451 | The #USAPavilion was honored to host the signi... | Neutral |
| 3452 | A lot of Hyperloop here and there. Will it rea... | Spam |
| 3453 | I see that SA pavilion stand at #Expo2020 is s... | Neutral |
| 3454 | Opening remarks\n🎙Enzo Grossi, Scientific Advi... | Neutral |
| 3455 | Basant Panchami is an auspicious day to start ... | Positive |
| 3456 | If a music has given me goosebumps after the s... | Positive |
| 3457 | The @expo2020dubai Health& Wellness busine... | Neutral |
| 3458 | India pavilion at EXPO2020 Dubai hosts discuss... | Neutral |
| 3459 | Expo 2020 Dubai sponsors camel racing festival... | Positive |
| 3460 | Visit Expo for Chinese New Year Celebration. J... | Positive |
| 3461 | Expo 2020 Dubai is to showcase the innovations... | Neutral |
| 3462 | Discover ideas and innovations for a more sust... | Positive |
| 3463 | The SKN Pavilion team, ready to discuss St. Ki... | Positive |
| 3464 | Only she gets a copy of the deposition by the ... | Negative |
| 3465 | Mr. @SunilDuggal_Ved, Vedanta Group CEO, talks... | Positive |
| 3466 | Looking for help due to an urgent situation? O... | Spam |
| 3467 | 🗓️Ready for this week's Canon activities @expo... | Positive |
| 3468 | 🗓️Ready for this week's Canon activities @expo... | Positive |
| 3469 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | Positive |
| 3470 | How can #business and #EmergingTech help shape... | Neutral |
| 3471 | 📢#HappeningNow\n\nThe WALK FOR THE OCEAN start... | Positive |
| 3472 | Join #SAPServices on-site at SAP House Dubai i... | Neutral |
| 3473 | Participate in a unique on-site #HXM innovatio... | Positive |
| 3474 | From SAP #HumanCapitalManagement, to #Intellig... | Neutral |
| 3475 | Send a Special Gift to your Loved one Grab 15%... | Spam |
| 3476 | Tune in for a very special panel discussion on... | Positive |
| 3477 | Check out our omnidirectional base antennas th... | Spam |
| 3478 | Weakly supervised 3D classification workflow g... | Spam |
| 3479 | 📲Call us on; 04 554 3603 | +971552824466 or +... | Spam |
| 3480 | Tune into @DubaiEye1038FM Business Breakfast w... | Neutral |
| 3481 | ONPOINT Fixed #antenna re-alignment systems: F... | Spam |
| 3482 | Hi Monday…\nI’m ready…. \n#monday #imready #we... | Neutral |
| 3483 | It was a wonderful day in the Saudi pavilion 🇸... | Positive |
| 3484 | People in large numbers have started visiting ... | Positive |
| 3485 | Participate in a unique on-site #HXM innovatio... | Spam |
| 3486 | From SAP #HumanCapitalManagement, to #Intellig... | Neutral |
| 3487 | Throwback to the Nigeria Pavilion at #Expo2020... | Positive |
| 3488 | At #AbuDhabiCarpets you can find #Customized #... | Spam |
| 3489 | At #DubaiRugs, #Isfahan #Rug is one of the mos... | Spam |
| 3490 | H.H. Sheikh Abdullah bin Zayed Al Nahyan, Mini... | Spam |
| 3491 | 📢Dr. Sarthak Das and Aidan O’Leary, Director, ... | Neutral |
| 3492 | To mark 🇦🇺 national day at the Australian Pavi... | Positive |
| 3493 | Visited Expo2020 Dubai to Russia, UK , Pakista... | Positive |
| 3494 | “We built a city, and then we lent it to @expo... | Neutral |
| 3495 | Morning 🇦🇪\n\n#Expo2020 https://t.co/Ve4wZ9LXrD | Neutral |
| 3496 | #BreakingNews\nYemeni Armed Forces to announce... | Spam |
| 3497 | Are you ready World Expo 2020??\nJoin the #USA... | Neutral |
| 3498 | #أكسبو...\nمعنا قد تخسر ..ننصح بتغير الوجهه؟؟؟... | Hate |
| 3499 | Marta Jaramillo, Commissioner General of @Mexi... | Positive |
| 3500 | Using #NLP of cardiovascular radiology reports... | Spam |
| 3501 | Inspiring Look Redefines Our Perception of Art... | Positive |
| 3502 | #loymachedo asks BREAKING NEWS\nIs this True O... | Neutral |
| 3503 | A short clip from the cultural performance as ... | Positive |
| 3504 | Today you could have designed a next generatio... | Neutral |
| 3505 | It is done - I have now visited 192 national p... | Positive |
| 3506 | @Rohshan_Din @MARIA_hunzai @parveen_mehnaz @al... | Negative |
| 3507 | Twitterati are saying there's no local #Dubai ... | Hate |
| 3508 | ‘Breaking Barriers Through Digital Medicine’\n... | Spam |
| 3509 | That Dubai life.\n\n#dubai #expo2020 #trending... | Neutral |
| 3510 | Which do you NOT do? 😆\n\n#Batt4Less #dubai #e... | Spam |
| 3511 | A week of sharing the unique history, aroma, a... | Positive |
| 3512 | New Zealand is celebrating its national day at... | Positive |
| 3513 | Six60 have arrived in Dubai ahead of their muc... | Positive |
| 3514 | The magical moment at Dubai Expo 2020. Part th... | Positive |
| 3515 | The magical moment at Dubai Expo 2020. Part tw... | Positive |
| 3516 | Women Incredible Contributions to Healthcare \... | Positive |
| 3517 | @Rohshan_Din @MARIA_hunzai @parveen_mehnaz @al... | Positive |
| 3518 | The magical moment at Dubai Expo 2020. Part on... | Positive |
| 3519 | "Welcome to Expo 2020" / "I'm here for your se... | Neutral |
| 3520 | @ganymedeworld @JackD157 The bigger picture ye... | Negative |
| 3521 | Last day volunteering at Expo2020 🥳🥳 https://t... | Positive |
| 3522 | @123maryoom45 Keep in mind that having the pro... | Neutral |
| 3523 | Back of TV tour #FacebookLive #Expo2020 #Beati... | Spam |
| 3524 | At the #Expo2020 today i effortlessly spoke Lu... | Positive |
| 3525 | Every country’s pavilion at the Expo2020 looks... | Negative |
| 3526 | *pimple popping | Spam |
| 3527 | Okay I'm seeing a pattern here why is it every... | Spam |
| 3528 | #Expo2020 \n\nStop war on #Yemen https://t.co/... | Hate |
| 3529 | @TigayBarry @RationalSettler When cases go dow... | Positive |
| 3530 | Black Eyed Peas' New Remix // Expo 2020 Guests... | Neutral |
| 3531 | Expo 2020 practical points before visiting.\n\... | Neutral |
| 3532 | The Saudi Genome Program is decoding and analy... | Neutral |
| 3533 | The sky looks nice today https://t.co/1KR5EOfvxR | Positive |
| 3534 | @AusCG_Expo2020 @dfat Well done to you and the... | Spam |
| 3535 | They never stand still, but they are not in th... | Neutral |
| 3536 | My life 🥺😘\n#البرنسيسة #ديانا_حداد #princess #... | Spam |
| 3537 | 40 Ministries & Government agencies to par... | Neutral |
| 3538 | Health Minister Didier Gamerdinger launching o... | Neutral |
| 3539 | Presents full product line to show the technol... | Neutral |
| 3540 | The one and only, Lucky Ali is making his way ... | Positive |
| 3541 | Thank God there is no truth to what is rumored... | Positive |
| 3542 | Great day at @expo2020dubai and no better plac... | Positive |
| 3543 | According to the information of the "mtv" chan... | Positive |
| 3544 | HH Sheikh Abdullah bin Zayed Meets with Govern... | Neutral |
| 3545 | Expo 2020 Dubai Thanks Unsung Heroes, Our Vita... | Positive |
| 3546 | Technology’s impact on healthcare carries a a ... | Positive |
| 3547 | If you aspire to live close to Downtown but no... | Spam |
| 3548 | If you are feeling hot, Singapore Pavilion is ... | Positive |
| 3549 | Must be some art that dignifies #women #womeni... | Spam |
| 3550 | Lets take a tour with this unique Expo Explore... | Neutral |
| 3551 | @TheUAEnft Nice date of launch...\nWaiting....... | Spam |
| 3552 | Couldn't wait to see the stalls at @expofestiv... | Positive |
| 3553 | Nobel Prize winning activist Malala Yousafzai ... | Positive |
| 3554 | Accelerate #innovation in #HumanExperienceMana... | Neutral |
| 3555 | We're accelerating towards the grand finale\n#... | Positive |
| 3556 | The Great Indian Recipe Contest has started. \... | Neutral |
| 3557 | The amazing Egyptian artist and musician ‘Omar... | Positive |
| 3558 | Liking this picture! Raising awareness of the ... | Neutral |
| 3559 | A global exhibition only means one thing for f... | Positive |
| 3560 | The Australian Pavilion at #EXPO2020 is a rema... | Positive |
| 3561 | 3/3 Since its debut,the Rdn pavilion at #Expo2... | Positive |
| 3562 | Armenia’s Minister of Economy, visits the #UAE... | Neutral |
| 3563 | Student and inventor Ghala Hammoud Al-Enzi par... | Positive |
| 3564 | I can't get enough of this spectacular, magica... | Positive |
| 3565 | Expo 2020 Dubai is Celebrating #Chinese New Ye... | Positive |
| 3566 | Try Sushiro, popular sushi place next to us.Th... | Positive |
| 3567 | Watch “Interdependence in Action: Practices of... | Positive |
| 3568 | Some of the striking visuals at #expo2020 @ Ex... | Positive |
| 3569 | Using #AlUla as inspiration for her designs, p... | Spam |
| 3570 | Making the most of my #expo2020 season pass 😎 ... | Positive |
| 3571 | Ending another edutainment week @expo2020dubai... | Positive |
| 3572 | Prof. Dr. Milo Puhan from @UZH_ch shared with ... | Spam |
| 3573 | Ending another edutainment week @expo2020dubai... | Positive |
| 3574 | #campusgermany #expo2020 #germanypavilion #s20... | Neutral |
| 3575 | Great discussions at today’s Healthcare System... | Positive |
| 3576 | #campusgermany #expo2020 #s20fe @ Campus Germa... | Neutral |
| 3577 | Discover 'Studio Expo' at #Expo2020 #Dubai \n#... | Neutral |
| 3578 | How many Expo stamps did you collect so far? #... | Neutral |
| 3579 | Cristiano Ronaldo accepts Globe Soccer's Top S... | Positive |
| 3580 | "I always felt that nature is peaceful. Once y... | Neutral |
| 3581 | The world`s youngest nation!! https://t.co/E8L... | Positive |
| 3582 | "The future remain ours to make”, “Buildings a... | Neutral |
| 3583 | A lovely day at #expo2020 #Dubai https://t.co/... | Positive |
| 3584 | You can choose your favorite color and flavor ... | Spam |
| 3585 | The official ceremony concluded with a vivid m... | Positive |
| 3586 | Polish culture celebrated with a traditional d... | Positive |
| 3587 | A warm welcome and lots of good wishes from ou... | Positive |
| 3588 | Here are tips and tricks for perfect shot \n#E... | Neutral |
| 3589 | Israel's President Isaac Herzog arrives in the... | Neutral |
| 3590 | Eco-friendly artificial limb exhibited at the ... | Neutral |
| 3591 | Visit Expo 2020 Dubai, where creativity, innov... | Positive |
| 3592 | "The way we built our cities before are way di... | Neutral |
| 3593 | "The health we know today is perhaps the bigge... | Positive |
| 3594 | While in #Dubai, today #Arsenal players (Xhaka... | Neutral |
| 3595 | "They say that our health not only depends on ... | Neutral |
| 3596 | An automated pipeline for body composition ana... | Spam |
| 3597 | Make a wish!\n\n#lecadeau #cake #cakeforbreakf... | Spam |
| 3598 | "We embrace health from all sides that is why ... | Neutral |
| 3599 | "Weather says Winter, heart says Chaclet Hot C... | Positive |
| 3600 | Chaclet Winter Mix with Drinks\n\nEnjoy our Ch... | Spam |
| 3601 | Enjoy our Chaclet Wonders with the 4 flavors (... | Spam |
| 3602 | Customized silver tray mini chocolate\n\nLayer... | Spam |
| 3603 | Customized Egg box\n\nLayer of chocolate mouss... | Spam |
| 3604 | Tune in to our revamped flagship show “Studio ... | Neutral |
| 3605 | 15 Places You Must Visit In the World 🌎 | BBI ... | Spam |
| 3606 | Rwanda Celebrates its National Day at Expo 202... | Positive |
| 3607 | Who doesn’t want to jazz up their night with s... | Positive |
| 3608 | Tune in to our revamped flagship show “Studio ... | Neutral |
| 3609 | Award-winner Tarek Yamani is all energy—a meld... | Positive |
| 3610 | What's new in radiology #AI? Check out The Va... | Spam |
| 3611 | His Excellency, Nasser Khalifa Al Budoor (Assi... | Spam |
| 3612 | this is our time \n#expo2020 https://t.co/L7L8... | Neutral |
| 3613 | Love love just love how the kids were enjoying... | Positive |
| 3614 | Expo2020 Dubai paid tribute at ' Celebrating u... | Positive |
| 3615 | We maybe need an entire pavilion to learn how ... | Negative |
| 3616 | Kenyan 🇰🇪 Rapper \nrecording his new single 🍀\... | Spam |
| 3617 | Prospective evaluation of prostate and organs-... | Spam |
| 3618 | Kenyan 🇰🇪 Rapper \nrecording his new single 🍀\... | Spam |
| 3619 | Aqua Fun is giving #Expo2020 #Dubai special tr... | Positive |
| 3620 | "Clue No.1 🗝 She is powerful. She is fearless.... | Spam |
| 3621 | Nobel Prize winning activist Malala Yousafzai ... | Positive |
| 3622 | VIPs from around the world visit the Japan Pav... | Positive |
| 3623 | A pavilion with a twist. @brazilpavilion \n\n#... | Positive |
| 3624 | #Expo2020 Tempered Glass For Samsung Galaxy ht... | Spam |
| 3625 | Dubai Expo2020 San marina pavilion. I thoughts... | Positive |
| 3626 | #Expo2020 #Dubai was really diverse, cool and ... | Positive |
| 3627 | Have you checked out our live street art insta... | Positive |
| 3628 | Simply Awesome #Expo2020Dubai #Expo2020 #Dubai... | Positive |
| 3629 | Let's get lost in the woods at Dubai Expo\n\n#... | Negative |
| 3630 | I love you 🥺😘\n#البرنسيسة #ديانا_حداد #princes... | Spam |
| 3631 | Phase 2 Volunteers, you will be missed 💚! Than... | Positive |
| 3632 | Pure Indigenous products are being showcased a... | Neutral |
| 3633 | We are so excited to finally have @SIX60 and @... | Positive |
| 3634 | If you can smell something in this infinite ro... | Positive |
| 3635 | We're accelerating towards the grand finale! E... | Positive |
| 3636 | Join ‘Run the World’ Family Run Today at #Expo... | Neutral |
| 3637 | Have you checked out our #Expo2020 National Da... | Positive |
| 3638 | @TheUAEnft Maybe you can add Twitter handle of... | Spam |
| 3639 | We will not recognize any country that recogni... | Spam |
| 3640 | H.E. Vahan Kerobyan, Armenia’s Minister of Eco... | Neutral |
| 3641 | @TheUAEnft Awesome, Lucky\n\n#NFT #NFTs #NFTco... | Spam |
| 3642 | @TheUAEnft Awesome \n\n#NFT #NFTs #NFTcommun... | Spam |
| 3643 | Our pavillon. Great! #expo2020 monaco can be p... | Positive |
| 3644 | Proud to be health ambassador on behalf of #ch... | Positive |
| 3645 | Fatty fish is a source of vitamin E which act ... | Spam |
| 3646 | Press Conference - Regional Day Abruzzo 👉 http... | Neutral |
| 3647 | We are delighted to be back at @expo2020dubai ... | Neutral |
| 3648 | His Highness honored 🇩🇪 and @expo2020germany w... | Positive |
| 3649 | Make iT Ignite!\nJoin our Registration Evening... | Spam |
| 3650 | And what a celebration it was 🙌🏿🇷🇼 \n#Rwanda #... | Positive |
| 3651 | A peek to the #Expo2020Dubai from the garden i... | Positive |
| 3652 | Just how important are architecture and urban ... | Neutral |
| 3653 | Visit Sultanate of Oman Pavilion and be inspir... | Positive |
| 3654 | Today’s business highlights at Expo 2020 Dubai... | Neutral |
| 3655 | Historic: #Israel's President @Isaac_Herzog &a... | Spam |
| 3656 | At #Expo2020 in #Dubai it takes only a few ste... | Neutral |
| 3657 | An unforgettable day, thank you to our graciou... | Positive |
| 3658 | Fighting Stigma : India bullish on medical va... | Spam |
| 3659 | The world at Dubai Expo2020 - Mobility Pavilio... | Neutral |
| 3660 | Oh hey @SIX60! Catch these legends on Jubilee ... | Positive |
| 3661 | @EquidemOrg Migrant workers across the #UAE co... | Negative |
| 3662 | #ExperienceIndia at the Nakheel Mall in Palm J... | Spam |
| 3663 | Happy National Day to all Aussies\n\n#Australi... | Spam |
| 3664 | Our guests receive unique virtual flowers from... | Spam |
| 3665 | WHEN IN SOKOR. CHARS #Expo2020 https://t.co/gz... | Neutral |
| 3666 | First NFT with Armenian ornaments. \nGet if fr... | Spam |
| 3667 | We set our sights high on ensuring your visit ... | Positive |
| 3668 | Fighting Stigma : Experts discuss regulatory ... | Positive |
| 3669 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | Positive |
| 3670 | #MohammedAlattas catches #ArjunSingh off balan... | Spam |
| 3671 | Women have been disproportionately affected by... | Neutral |
| 3672 | Youth have a central role of in driving innova... | Neutral |
| 3673 | Join us @Expo2020Dubai as we examine lessons l... | Neutral |
| 3674 | In Russia Pavilion, don't forget to visit the ... | Positive |
| 3675 | Good Morning 💖☀️☀️💛\n\n#NFT #NFTs #NFTcommunit... | Spam |
| 3676 | Women's World Majlis just gets bigger and bett... | Neutral |
| 3677 | #DeepLearning locates landmarks to measure ver... | Spam |
| 3678 | Health is wealth 👩⚕️ \n\nInterested in our fu... | Positive |
| 3679 | It's Health and Wellness Week at #Expo2020Duba... | Positive |
| 3680 | Today we are excited to celebrate Armenia 🙌\n... | Positive |
| 3681 | What a day! Great to have our guests from Etis... | Positive |
| 3682 | Visiting #expo2020 in Dubai has giving me so m... | Positive |
| 3683 | Andy Wilson, head of Ogilvy's Sustainability P... | Neutral |
| 3684 | Enter the weekly raffle draw to stand a chance... | Spam |
| 3685 | #FrontPage today: #SheikhMohammed visits Germa... | Neutral |
| 3686 | @OManojKumar @poonamkachandd But the info woul... | Positive |
| 3687 | RUSSIA PAVILION - EXPO2020\nA unique and a pow... | Positive |
| 3688 | His Highness Sheikh Mohammed bin Rashid Al Mak... | Neutral |
| 3689 | Add a touch of nature with #Artificial #GrassC... | Spam |
| 3690 | Choose from the widest collection of #CarpetsD... | Spam |
| 3691 | #CarpetsDubai is one of the largest manufactur... | Spam |
| 3692 | #InteriorDubai offers a wide range of Curtain ... | Spam |
| 3693 | #VinylFlooring supply quality #Acoustic #Vinyl... | Spam |
| 3694 | Don't miss @equidemorg's webinar tomorrow at 1... | Neutral |
| 3695 | #ParquetFlooring gives you best #Waterproof #F... | Spam |
| 3696 | #ArtificialGrassDubai supplies the pleasant #C... | Spam |
| 3697 | #LindiweSisulu is the epitome of Kakistrocracy... | Negative |
| 3698 | Building Virtual Communities of Trust\nThursda... | Positive |
| 3699 | #SciBERT transformer accurately categorizes ca... | Spam |
| 3700 | Australia Celebrates its National Day at Expo ... | Positive |
| 3701 | This week the Census Bureau served as the U.S.... | Spam |
| 3702 | #DubaiExpo2020 #Expo2020 loading................. | Neutral |
| 3703 | You can obviously feel di riddim at the Jamaic... | Positive |
| 3704 | Enter a world of imagination and explore endle... | Positive |
| 3705 | Dubai, the only place where the sky is not the... | Positive |
| 3706 | African union: At the Expo2020 in Dubai, gende... | Positive |
| 3707 | United we can prevail and be stronger to push... | Positive |
| 3708 | Enter a world of imagination and explore endle... | Neutral |
| 3709 | Thousands gather to greet Cristiano Ronaldo at... | Positive |
| 3710 | All progress takes place outside the comfort z... | Spam |
| 3711 | The official ceremony at Al Wasl Plaza was cap... | Positive |
| 3712 | 📍 Venue: Multipurpose Room, Pakistan Pavilion ... | Neutral |
| 3713 | @jacobcollier you are amazing👌👌😍😍😍😍😍😍😍 \nJ the... | Positive |
| 3714 | Doing nothing all day at all then going to gym... | Spam |
| 3715 | Well planned day at #Expo2020 \n\nHopefully se... | Positive |
| 3716 | At GTR MENA 2022, @FABConnects @OxfordEconomic... | Spam |
| 3717 | SAP #S4HANA is revolutionizing how organizatio... | Neutral |
| 3718 | Emirates A380 with the colourful #expo2020 liv... | Neutral |
| 3719 | Expo 2020 Dubai Celebrates Australian National... | Positive |
| 3720 | #Yellow_Sapphire \n\nYellow Sapphire \n5 Carat... | Spam |
| 3721 | Meeting with the @sloveniapavilion to discuss ... | Positive |
| 3722 | Our Commissioner General Mr. Namory Camara was... | Positive |
| 3723 | Head of the Public Relations and Protocol Depa... | Neutral |
| 3724 | Noura Al Kaabi launches World Poetry Tree Anth... | Positive |
| 3725 | Celebrating Australia #expo2020 https://t.co/f... | Positive |
| 3726 | Youngest @NobelPrize Winner, Pakistani activis... | Positive |
| 3727 | You can eventually learn how to dance salsa in... | Positive |
| 3728 | Participate in a unique on-site #HXM innovatio... | Neutral |
| 3729 | Andorra Commends Expo 2020 Dubai’s ‘Unpreceden... | Positive |
| 3730 | HCT Health Science student Farrah Aljneibi gra... | Positive |
| 3731 | "Majestic Falcon of Dubai" in the air.\nPrice:... | Spam |
| 3732 | FREE NFT at the Australian Pavillon 🥰 #expo202... | Positive |
| 3733 | 𝗔𝘁 ❤️ 𝗘𝘅𝗽𝗼 2020 𝘀𝗼𝗺𝗲𝘁𝗵𝗶𝗻𝗴 𝘄𝗼𝗿𝗹𝗱 𝗵𝗮𝘀 𝗻𝗲𝘃𝗲𝗿 𝘀𝗲𝗲... | Positive |
| 3734 | My lovely princess👑😍\n#البرنسيسة #ديانا_حداد #... | Spam |
| 3735 | H.E. David Hurley, Governor-General of the Com... | Positive |
| 3736 | @AmbRonAdam @YolandeMakolo @RwandaInUAE If in ... | Positive |
| 3737 | Nice @Malala 👏 \n\nWas there in October and I... | Positive |
| 3738 | Rwanda National Day at #expo2020 is fast appro... | Positive |
| 3739 | From SAP #HumanCapitalManagement, to #Intellig... | Spam |
| 3740 | During Saudi Coffee Week our visitors have bee... | Positive |
| 3741 | Reposted from Instagram @amberlab_nyuad \n\nCh... | Positive |
| 3742 | Clay Ross was born in the upstate of SC but he... | Spam |
| 3743 | No safity, no stability ; that is the UAE toda... | Negative |
| 3744 | #Dubai has unveiled what is claimed to be the ... | Neutral |
| 3745 | and she reiterated that not only must girls be... | Neutral |
| 3746 | Prison Tiktok teaching me how to cook any food... | Spam |
| 3747 | They’re giving out free NFTs at the Australian... | Positive |
| 3748 | Join #SAPServices at #expo2020dubai in the SAP... | Neutral |
| 3749 | @JenkinsSamael A uae thing…expo2020 dubai | Neutral |
| 3750 | Any spaces that a Somali is in cannot be civil... | Spam |
| 3751 | The Human Fraternity Festival is a message of ... | Positive |
| 3752 | The only rockstars you should be listening to ... | Positive |
| 3753 | THE KENYA PAVILLION AT #EXPO2020\nThe Kenya Pa... | Positive |
| 3754 | @ProjectChaiwala I’m in Expo2020 and your coun... | Negative |
| 3755 | Sard offers a unique experience that enriches ... | Positive |
| 3756 | Pakistani activist for female education Malala... | Neutral |
| 3757 | Khumariyaan have all of #EXPO2020 dancing. \n\... | Positive |
| 3758 | Today at #EXPO2020 it's the incredible Khumari... | Positive |
| 3759 | Tuvalu has got a message for us #expo2020 #Exp... | Neutral |
| 3760 | A very happy #Expo2020 National Days to our fr... | Positive |
| 3761 | Inspired from the frankincense tree externally... | Positive |
| 3762 | #NSTnation The Malaysian Rubber Council (#MRC)... | Neutral |
| 3763 | The #USAPavilion welcomed the delegates of the... | Neutral |
| 3764 | #AbuDhabiCarpets offers you Best #Laminate #Fl... | Spam |
| 3765 | Volumetric deep convolutional network achieved... | Spam |
| 3766 | Buy high-quality and excessive best #Kilim #Ru... | Spam |
| 3767 | Which theme would you focus on capturing at @e... | Neutral |
| 3768 | Which theme would you focus on capturing at @e... | Positive |
| 3769 | @margbrennan With more than 18000 cases record... | Negative |
| 3770 | Araku coffee can cost upto Rs 7000 per kg. Kno... | Spam |
| 3771 | Coffee from the Araku valley was made a geogra... | Spam |
| 3772 | Join us tomorrow as the #16Windows program exp... | Positive |
| 3773 | It's hard not to be mesmerized by the Al Wasl ... | Positive |
| 3774 | In addition to that, they will also present th... | Positive |
| 3775 | @expo2020_jp @expo2020dubai How's the neighbor... | Negative |
| 3776 | Read for yourself 🇦🇪.\n#expo2020 https://t.co/... | Neutral |
| 3777 | A bit about our first big trip international t... | Spam |
| 3778 | Celebrating COVID-19 heroes at the Expo 2020 D... | Positive |
| 3779 | 🦿 Discover the Bioman capsule which highlights... | Neutral |
| 3780 | HyperSport Responder — The world’s fastest amb... | Positive |
| 3781 | Afrian child its possible, no amount of gate k... | Positive |
| 3782 | Want to know how to make the delicious Dadinho... | Positive |
| 3783 | Join us tomorrow as the #16Windows program exp... | Neutral |
| 3784 | while his melodies and tunes will take us on a... | Positive |
| 3785 | @c0ke21 I've been searching for it for years t... | Spam |
| 3786 | POOL ACADEMY AQUATICS (ECA) 🏊\nJOIN & BOOK... | Spam |
| 3787 | Check out the latest radiology #AI research! h... | Neutral |
| 3788 | Fantastic shots 👌🏻👏🏻🙏🏻\n\n@SamiYusuf #samiyusu... | Positive |
| 3789 | Great Grandpa... you're looking good!\n#egyptp... | Positive |
| 3790 | Looking for #inspiration to be an agent for #c... | Neutral |
| 3791 | Coffee grown in the highlands of the Araku val... | Spam |
| 3792 | Real niggas remember watching this show https:... | Spam |
| 3793 | ➡️The Mercedes-Benz S-class is as much a perso... | Spam |
| 3794 | #breaking Yemeni Army spokman .. New warning f... | Hate |
| 3795 | Just how important are #architecture and #urba... | Positive |
| 3796 | He was livebin Expo2020 Dubai https://t.co/58W... | Neutral |
| 3797 | "Clue No.1 🗝 She is powerful. She is fearless.... | Spam |
| 3798 | :::TODAY:::\n#Australia at @Expo2020Dubai \n#E... | Neutral |
| 3799 | :::TODAY:::\n#Australia at @Expo2020Dubai \n#E... | Neutral |
| 3800 | :::TODAY:::\n#Australia at @Expo2020Dubai \n#E... | Neutral |
| 3801 | :::TODAY:::\n#Australia @Expo2020Dubai \n#Expo... | Neutral |
| 3802 | Express your ideas with gestures:\nExplorers a... | Positive |
| 3803 | Thank you Your Highness for honoring @expo2020... | Positive |
| 3804 | Minister of State for Foreign Trade. The celeb... | Positive |
| 3805 | Themed "Experience China," the China Pavilion ... | Positive |
| 3806 | Those who keep hope alive during times of cris... | Positive |
| 3807 | Greetings to Australia on their National Day a... | Positive |
| 3808 | Another busy week at #Expo2020 in Dubai for DM... | Neutral |
| 3809 | @elonmusk Thinking of mars at #Expo2020 https:... | Neutral |
| 3810 | Funnily enough I'm missing the robots that roa... | Negative |
| 3811 | 🌃5 Days Dubai Winter & Easter Packages🐣\n\... | Spam |
| 3812 | Before #Expo2020 ends, we urge the #UAE govt t... | Negative |
| 3813 | Spotted the greatest Asian conquerer at #Mongo... | Positive |
| 3814 | We are the people of love...\n🪕♥️\n\nWatch now... | Positive |
| 3815 | Ms. Lena Borno (Australian National University... | Positive |
| 3816 | @monicn0 The next station is expo2020 | Spam |
| 3817 | Expo 2020 Dubai begins the Camel Racing Festiv... | Positive |
| 3818 | #Breaking - Cristiano Ronaldo has picked up th... | Spam |
| 3819 | There are more and more new sources to collect... | Spam |
| 3820 | Expo day 1 of volunteering! #Expo2020 \n@expo2... | Neutral |
| 3821 | Our PR ambassador, Yumi Wakatsuki (@WAKA_Y_off... | Positive |
| 3822 | Minister of Economy Vahan Kerobyan will lead a... | Positive |
| 3823 | Red paths are softer #expo2020 #expodetails ht... | Neutral |
| 3824 | Today we are excited to celebrate Australia 🙌... | Positive |
| 3825 | What an honour to meet the Nobel Peace Prize l... | Positive |
| 3826 | Food For Future Summit \nDWTC has launched it... | Neutral |
| 3827 | 1-2 Feb: Opening of 🇸🇪 Pavilion #Expo2020Swede... | Neutral |
| 3828 | Ghana has named artists for its national pavil... | Positive |
| 3829 | It is a common practise on ground for camerame... | Spam |
| 3830 | The world’s leading business event for future ... | Neutral |
| 3831 | ‘Desert Pavilion’ is a 3D printed pavilion des... | Spam |
| 3832 | The Pakistan Pavilion would like to thank Khum... | Positive |
| 3833 | The Pakistan Pavilion at Expo is an absolute t... | Positive |
| 3834 | Not only did I miss the expo itself, but I als... | Negative |
| 3835 | The Pakistan Pavilion @Expo2020Pak at @expo202... | Positive |
| 3836 | Part of the world’s largest Holy Quran was rec... | Positive |
| 3837 | Part of the world’s largest Holy Quran was rec... | Positive |
| 3838 | Meet Ruslan Usachev — a popular video blogger,... | Positive |
| 3839 | @UN @UN_PGA @antonioguterres\n@KremlinRussia_E... | Spam |
| 3840 | 1/5 #Expo2020 is ‘Celebrating Israel’ and, in ... | Negative |
| 3841 | We are thrilled to be exhibiting at Singapore'... | Positive |
| 3842 | The #Singapore Pavilion won Honorable Mention ... | Positive |
| 3843 | I went to Thailand 🇹🇭 pavilion today in dubai ... | Positive |
| 3844 | Slovenia is a country rich in forest, rivers, ... | Positive |
| 3845 | @JakeGagain https://t.co/e8rRPV4Mnd\n#niros #n... | Spam |
| 3846 | @klaraliron https://t.co/e8rRPV4Mnd\n#niros #n... | Spam |
| 3847 | @JakeGagain https://t.co/e8rRPV4Mnd\n#niros #n... | Spam |
| 3848 | @klaraliron https://t.co/e8rRPV4Mnd\n#niros #n... | Spam |
| 3849 | Daily briefings are first order of the day. Ap... | Spam |
| 3850 | SAP #S4HANA is revolutionizing how organizatio... | Positive |
| 3851 | Dubai to the world...\nlive, study and work in... | Spam |
| 3852 | Australia’s presence at this year’s global con... | Spam |
| 3853 | ❤️🤎🧡Take a good look at these stunning portra... | Positive |
df.shape
(3854, 2)
df.describe()
| body | label | |
|---|---|---|
| count | 3854 | 3854 |
| unique | 3854 | 5 |
| top | VIDEO:\nPrime Minister, @EdNgirente officiates... | Positive |
| freq | 1 | 1568 |
df.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 3854 entries, 0 to 3853 Data columns (total 2 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 body 3854 non-null object 1 label 3854 non-null object dtypes: object(2) memory usage: 90.3+ KB
Now we analyse our dataframe of tweets and its labels, initial findings show the vast discrepancy between labels, especially between Positve compared to Neutal, Negative or Hate. Spam tweets despite our best efforts to curb the amount of spam tweets, the remainings ones were manually removed, our corpus from 3854 tweets is now 2802 tweets, with the 1052 spam tweets discarded which made up 27.3% of our corpus.
Further investigation enhances the discrepancy of our corpus, revealing the degree of positive skewness, this gives an initial impression on people's opinion about Expo2020. An overwhelming majority of tweets reflect positively on Expo2020, this finding will be tested through subjectivity analysis while building multiple ML models. 56% of our corpus is comprised of Positive tweets, 34.4% is Negative tweets and 9.6% of Negative tweets.
df['label'].value_counts().plot(
kind='pie', startangle=90, figsize=(20, 10), autopct='%1.1f%%',)
plt.show()
printmd('### {} spam tweets'.format(df[df['label'] == 'Spam'].shape[0]))
print('Size of data before removing spam', df.shape[0])
# filter out the tweets with the label "spam"
df = df[df['label'] != 'Spam']
df['label'].value_counts().plot(kind='pie', startangle=90, figsize=(20, 10), autopct='%1.1f%%',)
plt.show()
# map the label to 1 = "positive" and -1 = "negative" and 0 = "neutral"
df.loc[:, 'label'] = df['label'].map(
{'Positive': 1, 'Negative': -1, 'Neutral': 0, 'Hate': -1})
df.reset_index(drop=True, inplace=True)
print('Size of data after removing spam', df.shape[0])
manually_labeled_counts = [value for value in df['label'].value_counts()]
def percentage(part, whole):
return 100 * float(part)/float(whole)
whole = len(df)
manually_labeled_labels = [f'Positive [{percentage(manually_labeled_counts[0], whole):.2f}%]',
f'Neutral [{percentage(manually_labeled_counts[1], whole):.2f}%]',
f'Negative [{percentage(manually_labeled_counts[2], whole):.2f}%]']
def plot_pie_distribution(labels, colors, counts, title):
plt.figure(figsize=(10,10), facecolor='white')
patches, texts = plt.pie(counts, colors=colors, startangle=90)
plt.legend(patches, labels, loc="best")
plt.title(title, fontsize=14)
plt.axis('equal')
# plt.tight_layout()
plt.show()
# Create variables to hold the average polarity #
positive = 0
negative = 0
neutral = 0
polarity = 0
correct_labels = 0
for i in range(len(df)):
analysis = TextBlob(df["body"][i])
polarity += analysis.sentiment.polarity
if(analysis.sentiment.polarity == 0):
neutral += 1
if (df["label"][i] == 0):correct_labels += 1
elif(analysis.sentiment.polarity < 0.00):
negative += 1
if (df["label"][i] == -1):correct_labels += 1
elif(analysis.sentiment.polarity > 0.00):
positive += 1
if (df["label"][i] == 1):correct_labels += 1
positive = format(percentage(positive, len(df)), '.2f')
negative = format(percentage(negative, len(df)), '.2f')
neutral = format(percentage(neutral, len(df)), '.2f')
polarity = percentage(polarity, len(df))
## Print the Pie Chart ##
labels = ['Positive ['+str(positive)+'%]',
'Neutral ['+str(neutral)+'%]',
'Negative ['+str(negative)+'%]']
sizes = [positive, neutral, negative]
colors = ['yellowgreen', 'gold', 'red']
plot_pie_distribution(manually_labeled_labels, colors, manually_labeled_counts, "Manually Labeled Data")
plot_pie_distribution(labels, colors, sizes, "TextBlob Labeled Data")
# Calculate the accuracy of textblob's labeling
printmd(f"# Accuracy of TextBlob's auto-generated labels compared to manually labeled data is __{percentage(correct_labels, len(df)):.2f}%__")
sid = SentimentIntensityAnalyzer()
# Create variables to hold the average polarity #
positive = 0
negative = 0
neutral = 0
correct_labels = 0
for i in (range(len(df))):
analysis = sid.polarity_scores(df["body"][i])
polarity = analysis['compound']
if(polarity == 0):
neutral += 1
if (df["label"][i] == 0):correct_labels += 1
elif(polarity < 0.00):
negative += 1
if (df["label"][i] == -1):correct_labels += 1
elif(polarity > 0.00):
positive += 1
if (df["label"][i] == 1):correct_labels += 1
positive = format(percentage(positive, len(df)), '.2f')
negative = format(percentage(negative, len(df)), '.2f')
neutral = format(percentage(neutral, len(df)), '.2f')
## Print the Pie Chart ##
labels = ['Positive ['+str(positive)+'%]',
'Neutral ['+str(neutral)+'%]',
'Negative ['+str(negative)+'%]']
sizes = [positive, neutral, negative]
colors = ['yellowgreen', 'gold', 'red']
plot_pie_distribution(manually_labeled_labels, colors, manually_labeled_counts, "Manually Labeled Data")
plot_pie_distribution(labels, colors, sizes, "TextBlob Labeled Data")
# Calculate the accuracy of nltk's vaders labeling
printmd(
f"# Accuracy of NLTK-Vaders' auto-generated labels compared to manually labeled data is __{percentage(correct_labels, len(df)):.2f}%__")
While using Vader to label our tweets, it could only correctly label 66.17% of the tweets, while better than TextBlob, it is insufficient which led to the conclusion of manually labelling our tweets using our website.
df
| body | label | |
|---|---|---|
| 0 | Wow, this gonna be an awesome performance. \n#... | 1 |
| 1 | We are excited to welcome @issfjo as a communi... | 1 |
| 2 | Are you wondering what the Dubai Expo is about... | 0 |
| 3 | Come to #Expo2020 with your family and get mes... | 1 |
| 4 | Expo 2020’s UK pavilion showcases the first pr... | 0 |
| 5 | South African 🇿🇦 Rapper \nrecording his new si... | 0 |
| 6 | Dubai Expo 2020\n\n"Connecting Minds, Creating... | 0 |
| 7 | Let's take the first step together. #Uzbekista... | 0 |
| 8 | Dubai ruler tours the pavilion of Germany at t... | 0 |
| 9 | Discover Azerbaijan with Frisaga. #Ukraine #Uz... | 0 |
| 10 | Rwanda National Day at #Expo2020Dubai \n\n#Her... | 1 |
| 11 | A scale model of Hyperloop is at the Spain Pav... | 1 |
| 12 | It was an honor inviting our friends from USA ... | 1 |
| 13 | @AliZafarsays thank u for this... It was su h ... | 1 |
| 14 | #ExperienceIndia at the Nakheel Mall in Palm J... | -1 |
| 15 | Zimbabwe Deputy Minister of Health and Child C... | 0 |
| 16 | Passionate dancers, romantic songs and delicio... | 1 |
| 17 | Expo 2020 Dubai’s Pakistan pavilion welcomes a... | 1 |
| 18 | "Breaking Barriers Through Digital Medicine" b... | 1 |
| 19 | ADPHC participated in 2 events held at #Expo20... | 0 |
| 20 | Leading figure in Indipop and the Bollywood in... | 1 |
| 21 | Really great time in Dubai with customers and ... | 1 |
| 22 | Look: #Dubai gets Dh13-million ambulance respo... | 1 |
| 23 | Discover ideas and innovations for a more sust... | 1 |
| 24 | Our world and our wellbeing are interconnected... | 1 |
| 25 | Expo 2020 Dubai hosts football legend Cristian... | 0 |
| 26 | Look: #Dubai gets Dh13-million ambulance respo... | 1 |
| 27 | Dubai reveals the world’s fastest and most exp... | 1 |
| 28 | Golf meets @EXPO2020Dubai 👋\n\n@Collin_Morikaw... | 1 |
| 29 | Our exhibition is presented in a tour format a... | 0 |
| 30 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | 1 |
| 31 | At 10am we're ready to welcome you. Book ahead... | 1 |
| 32 | Chairman of Abu Dhabi Executive Office visits ... | 0 |
| 33 | To all the explorers, wanderers and travelers ... | 1 |
| 34 | Full Video Link : https://t.co/91DaOYmxfd\nCri... | 0 |
| 35 | The view from the Morocco Pavilion #Expo2020Du... | 0 |
| 36 | Highlights from Rwanda National Day at Dubai E... | 1 |
| 37 | 📽️ The moment Cristiano Ronaldo (@Cristiano) ... | 0 |
| 38 | Join us at #expo2020 Dubai for a unique opport... | 1 |
| 39 | Cristiano Ronaldo was given a warm welcome at ... | 1 |
| 40 | #FrontPage today: Australian official praises ... | 1 |
| 41 | Dubai ruler meets with the Governor-General of... | 0 |
| 42 | H.H. Sheikh Abdullah bin Zayed Al Nahyan, Mini... | 0 |
| 43 | The National Day of principality of Andorra wa... | 1 |
| 44 | Highlights from Rwanda National Day at Expo 20... | 0 |
| 45 | Somebody pinch me please!!!! #Expo2020Dubai #e... | 1 |
| 46 | Stray kids Exp2020 Dubai 🇦🇪performance in fr... | 0 |
| 47 | We were already masked but my kids were really... | 1 |
| 48 | Finally!!!\n\n#Expo2020 #Dubai #Dubai2020Expo ... | 0 |
| 49 | What a fabulous way to end the week! Meeting t... | 1 |
| 50 | Minister of State for Foreign Trade. The celeb... | 1 |
| 51 | @AshishJThakkar, Founder of Mara Group and Mar... | 0 |
| 52 | #Expo2020 | @IsaMunozM rounded off a busy day ... | 0 |
| 53 | #Expo2020 | @IsaMunozM met with @seedgroupme, ... | 0 |
| 54 | #Expo2020Dubai | @IsaMunozM toured #Expo2020. ... | 1 |
| 55 | Dubai is ahead of the world. here the economy... | 0 |
| 56 | The one and only @BalqeesFathi !\nYou set the ... | 1 |
| 57 | From that time till we did our part and being ... | 1 |
| 58 | Visited Morocco again and it’s still one of my... | 1 |
| 59 | 'You are my motivation,' Ronaldo tells fans at... | 0 |
| 60 | Rwandan PM Visits UAE Pavilion at Expo 2020 \n... | 0 |
| 61 | You don't want to be the guy telling people to... | 1 |
| 62 | Great honor for me to accompany Madam Presiden... | 0 |
| 63 | We are beyond excited to be part of “The year ... | 1 |
| 64 | Congrats to Kuwait for showcasing birds at #ex... | 0 |
| 65 | Cristiano Ronaldo's Statements During his Visi... | 0 |
| 66 | Never met a sunset I didn’t like 🌅 #expo2020 #... | 1 |
| 67 | Grealish at Expo 2020 Dubai now 😍\n#Grealish #... | 1 |
| 68 | Sheikh Mohammed fulfils Emirati boy’s wish to ... | 1 |
| 69 | Finishing up my trip to #Expo2020 thinking abo... | 0 |
| 70 | 💢Cristiano Ronaldo talks about his love for #D... | 1 |
| 71 | Dubai Expo, paradise on earth #Expo2020Dubai #... | 1 |
| 72 | A glimpse of the most beautiful moments that v... | 1 |
| 73 | Discover what Scotland is doing to promote wel... | 1 |
| 74 | #Bogota present at #Expo2020 through @investin... | 0 |
| 75 | Accelerate #innovation in #HumanExperienceMana... | 0 |
| 76 | Thousand of Fans gathered to greet RONALDO at ... | 0 |
| 77 | @Nbarigye, CEO, Rwanda Finance Limited, will ... | 0 |
| 78 | Our visitors enjoyed exploring coffee colors a... | 1 |
| 79 | #RTA informs you about the updated buses’ oper... | 0 |
| 80 | See it on https://t.co/iKOHLUidUv and stay tun... | 1 |
| 81 | The #KuwaitPavilion at #Expo2020Dubai through ... | 0 |
| 82 | .@TheMinimalists would maybe love the Terra Pa... | 1 |
| 83 | Relax with the aroma of coffee blends and ench... | 1 |
| 84 | Join Professor @jasonleitch at the Scotland Di... | 0 |
| 85 | What a pleasure it is to welcome @Malala, her ... | 1 |
| 86 | Take part in a variety of fun activities at th... | 1 |
| 87 | Dubai #Expo2020\n\nEveryone else: LOOK AT WHAT... | -1 |
| 88 | We had such a wonderful time seeing all of you... | 1 |
| 89 | Watch this video and join us as we unpack how ... | 1 |
| 90 | The Black Eyed Peas MADE IT HAPPEN! The MEGA S... | 1 |
| 91 | In celebration of his country’s national day, ... | 1 |
| 92 | Relax with the aroma of coffee blends and enc ... | 1 |
| 93 | Ronaldo spoke about family, health, and motiva... | 1 |
| 94 | "Home is where love resides, memories are crea... | 1 |
| 95 | Emirates Airways Airbus A380-861 A6-EOT / ZRH ... | 0 |
| 96 | Such a fab afternoon at #Expo2020 and an absol... | 1 |
| 97 | How could i miss an opportunity to see this ma... | 0 |
| 98 | News: PM @EdNgirente will be speaking at #Rwan... | 0 |
| 99 | Cristiano Ronaldo in #Dubai at the #expo2020 h... | 0 |
| 100 | The Coffee Exhibition showcases the types of S... | 1 |
| 101 | We're excited about @ScotExpo2020's Digital He... | 1 |
| 102 | 🗓️ Join WDO Member @AndreuWorld on 31 January ... | 0 |
| 103 | Football legend Cristiano Ronaldo was the big ... | 1 |
| 104 | Of course the South Africa Expo2020 stand has ... | -1 |
| 105 | During Health and Wellness Week, Professor Kho... | 0 |
| 106 | @cakamanzi, CEO, Rwanda Development Board, wil... | 0 |
| 107 | Alira has a special show due to a special tale... | 1 |
| 108 | You can now order a memento of your visit to t... | 1 |
| 109 | Amazing! The incredible Cristiano Ronaldo made... | 1 |
| 110 | Who else was at #Expo2020 to see @Cristiano to... | 0 |
| 111 | Meanwhile in #Dubai #Expo2020 https://t.co/kOp... | 0 |
| 112 | Scotland is set to showcase our Digital Health... | 0 |
| 113 | Ronaldo at Dubai 😍\nCraze Level Infinity 🔥\n\n... | 1 |
| 114 | You can now order souvenirs from the #SaudiAra... | 1 |
| 115 | Watch this video and join us as we unpack how ... | 1 |
| 116 | #Cristiano_Ronaldo from #Expo2020 : I've neve... | 1 |
| 117 | The Great Indian Recipe Contest has started. A... | 0 |
| 118 | Exciting news! In celebration of our milestone... | 1 |
| 119 | This! Was mad disappointed & very underwhe... | -1 |
| 120 | Record breaking goal scorer and legend footbal... | 1 |
| 121 | Waiting For @JackGrealish Entry \n\n#EXPO2020 ... | 0 |
| 122 | Football legend Cristiano Ronaldo visits Expo ... | 1 |
| 123 | In partnership with @InsamlingChoice, we are t... | 1 |
| 124 | I would like to make the claim to fame that @N... | 0 |
| 125 | I would like to make the claim to fame that @N... | 1 |
| 126 | Time for prayer is an important part of the pr... | 1 |
| 127 | Watch: @Cristiano Ronaldo visits #Expo2020Duba... | 1 |
| 128 | Oh hey Grealish #Expo2020 https://t.co/7wxW5l8nvB | 0 |
| 129 | Designed by #MatteoBelletti, a 24-year-old stu... | 0 |
| 130 | During Health Week at Expo2020, we’re turning ... | 0 |
| 131 | 🚨 The news we’ve all been waiting for! 🚨 Our E... | 1 |
| 132 | Sheikh Hamdan bin Mohammed, #crown #Prince of... | 0 |
| 133 | ben and ben sa EXPO2020 pls 😭🤞🏼 | 0 |
| 134 | Our #eForce Student Formula Team will present ... | 0 |
| 135 | Sheikh Hamdan bin Mohammed, Crown Prince of Du... | 0 |
| 136 | Hon. @habyarimanab, Minister of Trade and Indu... | 0 |
| 137 | The Sports Boulevard Project @SportsBlvdSA in ... | 1 |
| 138 | Football legend Cristiano Ronaldo tours Expo 2... | 1 |
| 139 | Coming up at @UKPavilion2020 on Thursday the 1... | 0 |
| 140 | Ronaldo just being Ronaldo. \n#ManUtd #Expo202... | 0 |
| 141 | 🎉 🎉 🎉 The @ParksCanada mascot, Parka, is makin... | 0 |
| 142 | It was great to see Mariarosa Cutillo at #UNHu... | 1 |
| 143 | Important event re #UAE #Expo2020- not to miss... | 1 |
| 144 | Small gems in small pavilions: Fiji, Montenegr... | 1 |
| 145 | KENYA MEANS BUSINESS AT #EXPO2020\nKenya plans... | 0 |
| 146 | #BREAKING\n\n#Expo Dubai, To be safe... we rep... | -1 |
| 147 | Legend\n💎💎💎💎💎💎💎💎\n#بلقيس_اكسبو_دبي #Expo2020 h... | 0 |
| 148 | The moment @Cristiano came up to the stage at ... | 0 |
| 149 | Beautiful @Talabat #Dubai #mydubai #talabat #t... | 1 |
| 150 | How can a hospital be bigger without growing? ... | 0 |
| 151 | i saw Cristiano Ronaldo today at Expo2020 Duba... | 0 |
| 152 | Oh hey @Cristiano #Expo2020 https://t.co/Gkiya... | 0 |
| 153 | Premier League Stars enjoying the winter break... | 0 |
| 154 | 2/2\n🗓 February 2nd to 8th, 2022\n⏰ 10am to 10... | 0 |
| 155 | @LynnHolliday8 @Dr_FarrisD These robots are al... | 1 |
| 156 | Yellow Friday with Ronaldo @Cristiano 🐐!! 💛\n\... | 0 |
| 157 | Unreal scenes at Expo 2020 as Cristiano Ronald... | 1 |
| 158 | Get ready to celebrate our #Expo2020 National ... | 1 |
| 159 | My GOAT @Cristiano 🤩#expo2020 https://t.co/nNm... | 1 |
| 160 | Join us at Expo 2020 Dubai as we celebrate Spa... | 1 |
| 161 | @Tourism_gov_za - is there a response to this ... | -1 |
| 162 | On vacation with Cristiano Ronaldo live at Al ... | 0 |
| 163 | 1/2 Come discover @TheSDY Exhibition of the UN... | 1 |
| 164 | The India Pavilion at EXPO2020 Dubai will host... | 1 |
| 165 | That's it from the goat. Unreal scenes #Expo20... | 1 |
| 166 | The goat in Expo2020 😢🤍🤍 https://t.co/aQm7mcmTrc | 0 |
| 167 | In this special day for Rwanda, a delegation o... | 1 |
| 168 | Cristiano Ronaldo live right now at @expo2020d... | 0 |
| 169 | The first steps to a "breathtaking journey int... | 1 |
| 170 | How Humans Heal — Expo 2020’s curated visitor ... | 0 |
| 171 | @Annamartling at @karolinskainst and Ebba Hall... | 0 |
| 172 | Hon. @MusoniPaula, Minister of ICT and Innovat... | 0 |
| 173 | Amazing Finnish pavilion, great iHAC space pro... | 1 |
| 174 | Wizards, are you ready for the TCS IT Wiz - UA... | 1 |
| 175 | Explore the world of sports and fitness at the... | 1 |
| 176 | All of the UAE is at the #Expo2020 to see the... | 1 |
| 177 | #Thailand invites #UAE to engage in contract #... | 1 |
| 178 | @TalkitAfrica merch is ready\nY'all can start... | 0 |
| 179 | JUST IN:\nOn behalf of President Paul Kagame, ... | 1 |
| 180 | Celebrity Chef #CarlaHall is on #StudioExpo sh... | 1 |
| 181 | Five #Kiwi artists have joined forces at #Expo... | 1 |
| 182 | Dubai Bags Record for World’s Largest Inflatab... | 1 |
| 183 | Shankar–Ehsaan–Loy, the award-winning trio fro... | 1 |
| 184 | Celebrating the dedication of #WorldSecurity e... | 1 |
| 185 | Are you ready world? Tonight the Queen is goin... | 1 |
| 186 | As a homegrown company and one of the fastest ... | 1 |
| 187 | The #GCC Pavilion at #Expo2020 #Dubai conclude... | 0 |
| 188 | Day 120 of 182! Comment 🍃 if you’re planning t... | 1 |
| 189 | Commissioner General of Expo 2020 Dubai. The o... | 1 |
| 190 | Kolhapuri chappla can be dated back to the 13t... | 1 |
| 191 | Sheikh Hamdan visits DP World Pavilion at #Exp... | 0 |
| 192 | Join us for the long-awaited #SpainDay at #Exp... | 1 |
| 193 | Fire hydrants at Austria Pavilion are really i... | 0 |
| 194 | :::TODAY:::\n#Andorra @Expo2020Dubai \n#Expo2... | 0 |
| 195 | :::TODAY:::\n#Andorra @Expo2020Dubai \n#Expo2... | 0 |
| 196 | With our partner Bank of Africa we combine the... | 0 |
| 197 | At this week's @expo2020dubai, our VP of Sales... | 0 |
| 198 | Delicious #motimahal #bahrain #juffair #dubai ... | 1 |
| 199 | Waiting for the GOAT #Expo2020 \nSUUUUUIIIIIII... | 0 |
| 200 | 【Last Day】\nVisitors from all over the world s... | 1 |
| 201 | Quality First at #motimahal #bahrain #juffair ... | 1 |
| 202 | 📢@EquidemOrg is launching a major report on ra... | -1 |
| 203 | Delicious Shrimp Lasooni #motimahal #bahrain #... | 1 |
| 204 | Introducing this week's theme week, "Health &a... | 1 |
| 205 | Quality First at #motimahal #bahrain #juffair ... | 1 |
| 206 | A snap of architecture at @expo2020dubai has c... | 1 |
| 207 | Today we are excited to celebrate Andorra 🙌\n... | 1 |
| 208 | CR7, the international superstar @Cristiano is... | 1 |
| 209 | #IndiaPavilion has had over 8,500,000 visitors... | 1 |
| 210 | Rwanda is hosting the Rwanda Business Forum al... | 0 |
| 211 | The stage is set. Waiting to catch a glimpse o... | 1 |
| 212 | Black Eyed Peas sang "I got a feeling at #Expo... | 0 |
| 213 | We partnered with Enterprise Estonia to host a... | 0 |
| 214 | Participate in a unique on-site #HXM innovatio... | 1 |
| 215 | AFRICAN COUNTRIES EMBRACE INTRA AFRICAN TRADE\... | 1 |
| 216 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 217 | The full video of #Solomon Pavilion - Ocean of... | 0 |
| 218 | Rwanda is hosting the Rwanda Business Forum al... | 0 |
| 219 | We are proud to join Scotland's Digital Health... | 1 |
| 220 | Expo 2020 Dubai Celebrates International Day o... | 1 |
| 221 | Challenge your imagination, and see the wonder... | 1 |
| 222 | Challenge your imagination, and see the wonder... | 1 |
| 223 | @expo2020dubai @FrontlineUAE unfortunately the... | -1 |
| 224 | The #GCC Pavilion at #Expo2020 #Dubai hosts a ... | 0 |
| 225 | Explore the World`s newest republic - #Barbado... | 1 |
| 226 | The Sustainability Pavilion at #Expo2020 is a ... | 1 |
| 227 | Through the eyes of our special guests, here's... | 1 |
| 228 | @harishbpuri she would have discussed with "hu... | 0 |
| 229 | Register and join the discussion at virtual Ex... | 0 |
| 230 | #AlibabaCloud's CDN isn't just helping MNC, In... | 1 |
| 231 | Head to our courtyard to see 🇳🇿 Chefs Kasey an... | 0 |
| 232 | The discussion session held at #Expo2020 on Sa... | 1 |
| 233 | Got your Expo Kids’ Camp stamp yet? This weeke... | 1 |
| 234 | The famous Maternity package at Finland Pavili... | 1 |
| 235 | The #UAE is hosting discussions on ways to bui... | 1 |
| 236 | Take part in the #UAE_Innovates events at Expo... | 0 |
| 237 | Scotland hosted a fantastic Digital Health and... | 1 |
| 238 | Join the interactive and informative workshops... | 0 |
| 239 | Today’s business highlights at Expo 2020 Dubai... | 0 |
| 240 | #Expo2020 \n#Expo2020\nthe best place to be @m... | 1 |
| 241 | Cristiano Ronaldo to visit the @expo2020dubai\... | 0 |
| 242 | For the International Day of Education, Expo 2... | 1 |
| 243 | A very important moment for the Jewish communi... | 1 |
| 244 | #Expo2020 and event you really need to attend!... | 1 |
| 245 | We wish all our lovely ladies worldwide a mean... | 1 |
| 246 | @Dr_FarrisD #Expo2020 has robots telling us to... | 0 |
| 247 | @gccia Hosts Workshop on #Cyber #Security Str... | 0 |
| 248 | Congratulations to @CrescentPetrol on going li... | 1 |
| 249 | Share your photos or videos on Instagram with ... | 1 |
| 250 | Off to #Expo2020 | 0 |
| 251 | That’s Some of what’s special about us #learna... | 1 |
| 252 | LET'S GET FILIPINO! The FIESTAVAGANZA at the B... | 0 |
| 253 | AquaFun gave Expo 2020 Dubai special tribute i... | 1 |
| 254 | Simply register at Premier Online and meet us ... | 0 |
| 255 | Certainly not to be missed if you are part of ... | 1 |
| 256 | Enjoy the magic of Dubai #Expo2020 with reliab... | 1 |
| 257 | Training and having fun at the same time… 💜💜💜 ... | 1 |
| 258 | Do you want to have an immersive experience at... | 1 |
| 259 | Good morning from #Expo2020 https://t.co/lUJNT... | 0 |
| 260 | So starts #expo2020 tweets \n\nParked at oppor... | 1 |
| 261 | @GFItaliano @Agenzia_Ansa @ItalyExpo2020 @ITAD... | 1 |
| 262 | Here are top #Expo2020 #Dubai \n#Expo2020Dubai... | 1 |
| 263 | Join the Health & Wellness Theme Week at @... | 0 |
| 264 | @Sepc_India takes a business delegation to Wor... | 1 |
| 265 | Good Morning to Ronaldo fans only and to the l... | 1 |
| 266 | Expo 2020 Dubai’s Israel pavilion honours the ... | 1 |
| 267 | Are you ready to welcome CR7 in Dubai #Expo202... | 0 |
| 268 | Participate in a unique on-site #HXM innovatio... | 1 |
| 269 | Our world and our wellbeing is interconnected ... | 1 |
| 270 | We’re learning about Arab and Muslim women’s I... | 1 |
| 271 | How is Scotland using technology to transform ... | 0 |
| 272 | That's a good idea\n#uae #dubai #expo2020 #pla... | 1 |
| 273 | Dubai Ruler, Crown Prince and football legend ... | 0 |
| 274 | Today’s Tuesdays@expo session tackled ways to ... | 0 |
| 275 | Dubai Expo 2020 includes some of the most inno... | 1 |
| 276 | Listen/Watch the full performance ‘Beyond the ... | 0 |
| 277 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 278 | Expo2020 Dubai celebrates unsung frontline her... | 1 |
| 279 | In Video: Visit Australian Pavilion at Expo 20... | 1 |
| 280 | HE Noura bint Mohammed Al Kaabi Launches World... | 0 |
| 281 | I'm happy to announce that together with piani... | 1 |
| 282 | @MonicaK2511 @drshamamohd PM Modi was schedule... | 1 |
| 283 | Slovakia celebrates its National Day at #Expo2... | 1 |
| 284 | @Cristiano \nThese children killed by UAE gove... | -1 |
| 285 | BEYOND THE STARS: ❤️🔥\n\n ---✨🌟✨---\n\n... | 0 |
| 286 | January 27 was Slovakia's National Day at #Exp... | 0 |
| 287 | Dr. @NayyarUjala traveled to #Expo2020 from #P... | 1 |
| 288 | The largest spinning wheel in the world\n\n#ex... | 1 |
| 289 | CR7, the international superstar, is visiting ... | 1 |
| 290 | CR7, the international superstar, is visiting ... | 1 |
| 291 | Good night Dubai #Expo2020 #ExpoDubai2020 #MyD... | 0 |
| 292 | Sky above, sand below, peace within. \n\n#dese... | 1 |
| 293 | The heart of Expo, Al Wasl Plaza beats in blue... | 1 |
| 294 | Today’s Tuesdays@expo session tackled ways to ... | 1 |
| 295 | Only 3 days left until the 4th edition of #RTA... | 1 |
| 296 | @drshamamohd Yes it's true i have been to the ... | -1 |
| 297 | Here are #Expo2020 moments \n#Expo2020Dubai \n... | 0 |
| 298 | Man City star Ruben Dias visits #Expo2020 #Dub... | 0 |
| 299 | Join us for “Preventing & Preparing to Bea... | 0 |
| 300 | The official ceremony in Al Wasl Plaza include... | 1 |
| 301 | COVID-19 affected women disproportionately in ... | 0 |
| 302 | What a day! Great to have our guests from Etis... | 1 |
| 303 | UAE Minister of Climate Change and the Environ... | 1 |
| 304 | Dear @KHDA , genuine question…no drama…\n\nAny... | 1 |
| 305 | 🏴Scotland’s digital healthcare event @ex... | 1 |
| 306 | Relax with the aroma of coffee blends and ench... | 1 |
| 307 | David Russell from our team is looking forward... | 0 |
| 308 | Mahhddd o! 🤩💃🏾🔥🎆🤸🏾♀️🎇❣🎉👏🏾🎊👊🏾🎈⚽️🏆🥇👑🇦🇪\n\n@Cris... | 1 |
| 309 | A gift from the heavens at the Czech Republic ... | 1 |
| 310 | Shamma bint Suhail Al Mazrouei, Minister of St... | 0 |
| 311 | HH Sheikh Hamdan bin Mohammed bin Rashid: we l... | 0 |
| 312 | 2/2 Learn more about it at the Morocco Pavillo... | 0 |
| 313 | Interspersed with a series of events that adde... | 1 |
| 314 | As we wrap up the last day of #DIPMF, we would... | 1 |
| 315 | #USAPavilion Commissioner General Bob Clark an... | 0 |
| 316 | Enjoy the closing performances of Saudi Coffee... | 1 |
| 317 | During Saudi Coffee Week at the #SaudiArabia P... | 1 |
| 318 | The Malaysian Rubber Council is showcasing mad... | 0 |
| 319 | Find out more about Zero-Energy Buildings and ... | 0 |
| 320 | CR7, the international superstar, is visiting ... | 1 |
| 321 | What a sacred, Mind blowing composition! breat... | 1 |
| 322 | With the delicious aromas and flavors of each ... | 1 |
| 323 | As Expo 2020's premier technology partner, SAP... | 0 |
| 324 | A nice visitor on a beautiful day at ZRH airpo... | 1 |
| 325 | Incredible - Holocaust Remembrance Ceremony in... | 1 |
| 326 | @IrelandatExpo @expo2020dubai @NCH_Music What ... | 1 |
| 327 | HAPPINESS comes from your own ACTION!\n\nThank... | 1 |
| 328 | Incredible - Holocaust Remembrance Ceremony in... | 1 |
| 329 | Such a beauty is rare 💫🎶🌟! masterpieces! Breat... | 1 |
| 330 | Incredible - Holocaust Remembrance Ceremony in... | 1 |
| 331 | Incredible - Holocaust Remembrance Ceremony in... | 1 |
| 332 | Want to go on a tour of the universe? We invit... | 1 |
| 333 | A huge worldwide THANK YOU to the Unsung Heroe... | 0 |
| 334 | Today we were honoured with a special visit fr... | 1 |
| 335 | International Holocaust Remembrance Day is bei... | 1 |
| 336 | Mentioning the #HolocaustRemembranceDay at Isr... | 1 |
| 337 | Dubai is getting ready for the Union Fortress ... | 1 |
| 338 | One more for the #thursdayvibes #Expo2020 #Exp... | 0 |
| 339 | Two weeks till UK National Day on 10 Feb 2022 ... | 1 |
| 340 | We're delighted to be at the Digital Health &a... | 1 |
| 341 | The session is free for Expo ticket holders. S... | 0 |
| 342 | #WeRemember #israeli pavilion at #expo2020 obs... | 1 |
| 343 | On set again today with this awesome crew! Lot... | 1 |
| 344 | #Expo2020\nSo proud 🇸🇦🤍 https://t.co/wuVJhmvZM1 | 1 |
| 345 | Dr Kandan was inspired in his design of the so... | 1 |
| 346 | Human Fraternity Festival begins tomorrow at \... | 1 |
| 347 | Great things can be done when everyone works t... | 1 |
| 348 | HM Ambassador highlighting what the U.K. has t... | 1 |
| 349 | Dive Through KSA Pavilion @expo2020dubai @ksaP... | 0 |
| 350 | Our encounter with Continental Asia establishe... | 1 |
| 351 | Join our Digital Health and Wellness virtual e... | 0 |
| 352 | Our 1-Day Expo Tickets are now ONLY AED 45! Vi... | 0 |
| 353 | Day -5 to #Rwanda National Day at #Expo2020 \n... | 1 |
| 354 | Experience the UAEU Pavilion in 360 degree thr... | 1 |
| 355 | @aly_j15 @theafriyie_ Because there's a media ... | -1 |
| 356 | The National Institute for Hospitality and Tou... | 1 |
| 357 | Earlier this week, Dr Kandan spoke at #Expo202... | 0 |
| 358 | All my #Indian fellows and friends do visit #E... | 1 |
| 359 | Rúben Dias—Manchester City and Portugal defend... | 1 |
| 360 | A successful ending!\nThe sundown of Arab Heal... | 1 |
| 361 | I’m planning a trip to Expo with the family. W... | 0 |
| 362 | Mr. Saqr Ereiqat, Co-Founder & Managing Pa... | 0 |
| 363 | Here are highlights from the keynote speech de... | 0 |
| 364 | Dr. Tali Sharot, an academic and researcher in... | 0 |
| 365 | Afghanistan pavilion features Jewish art #expo... | 0 |
| 366 | Such as preparing appropriate management strat... | 0 |
| 367 | #Expo2020 #Dubai Not safe We recommend a secon... | -1 |
| 368 | Tonight, at #Expo2020 in front of the spectacu... | 0 |
| 369 | Jane Witherspoon will lead the ‘Stakeholder Ma... | 0 |
| 370 | @aajtakorgin Yemen has just started operations... | -1 |
| 371 | @aajtakorgin Americans only were able to inter... | -1 |
| 372 | A great panel discussion highlighting how comb... | 1 |
| 373 | H.E. shared his experiences in the field while... | 0 |
| 374 | The Syrian Rhapsody by Iyad Rimawi\n\nDate: Fe... | 0 |
| 375 | We are excited to have @BrianHills @DataLabSco... | 1 |
| 376 | Upcoming events at #Expo2020 to focus on prepp... | 1 |
| 377 | Hopefully get to meet Ronaldo tomorrow. Beyond... | 1 |
| 378 | @Yahya_Saree #breaking Yemeni Army spokman .. ... | -1 |
| 379 | Australian thought leaders and visionaries wil... | 0 |
| 380 | Teaming up with Scotland’s health tech ecosyst... | 1 |
| 381 | With aromas of the finest coffee and the melod... | 1 |
| 382 | Robotic Flowers In Expo 2020 Dubai with flower... | 1 |
| 383 | What a day! Great to have our guests from Etis... | 1 |
| 384 | The $150 million India-UAE VC (venture capital... | 0 |
| 385 | A Science Potion Image From Expo 2020 Dubai\n#... | 0 |
| 386 | Visit the #KuwaitPavilion at #Expo2020Dubai to... | 0 |
| 387 | Upcoming events at #Expo2020 to focus on prepp... | 0 |
| 388 | @expo2020dubai Warning, we reiterate to indivi... | -1 |
| 389 | SHE’S HERE! Don’t miss the chance to see pop s... | 1 |
| 390 | Malaysian Pavilion at Expo 2020 Dubai Invites ... | 1 |
| 391 | Snack time - Expo moment\nDubai @ 12.12.2021\n... | 0 |
| 392 | Eat and save! Go for these affordable must-try... | 1 |
| 393 | Last meal in Dubai😭😭😭😭😭#Expo2020 https://t.co/... | -1 |
| 394 | Looking forward to speaking at this today - Sh... | 1 |
| 395 | Discusses #project_management's capability and... | 1 |
| 396 | As the Official Logistics Partner of #Expo2020... | 1 |
| 397 | It is hard to imagine how we will tackle the #... | 0 |
| 398 | The Great Indian Recipe Contest has started. A... | 1 |
| 399 | #AlWaslDome #Expo2020 latest most favorite pla... | 1 |
| 400 | Tomorrow at @ExpoUpdate in Dubai is Mölnlycke ... | 0 |
| 401 | Kingdom of Saudi Arabia Pavilion. \n\nI wish I... | 1 |
| 402 | All You Need to Know about Expo 2020 Dubai Mom... | 0 |
| 403 | Who are set to share with the attendees and pa... | 0 |
| 404 | Assessing Methods and Tools to Improve Reporti... | 0 |
| 405 | Sustainable architecture is under scrutiny in ... | -1 |
| 406 | Sustainable architecture is under scrutiny in ... | -1 |
| 407 | Winners will be awarded during the #UAE Innova... | 1 |
| 408 | euronews: Indian Pavilion at Expo 2020 Dubai h... | 1 |
| 409 | If Not Now Then When??\n.\n.\n.\n.\n#throwback... | 0 |
| 410 | VIPs from around the world visit the Japan Pav... | 1 |
| 411 | India Pavilion celebrates 73rd Republic Day at... | 1 |
| 412 | Eat and save! Go for these affordable must-try... | 1 |
| 413 | District 2020 - the planned legacy of resident... | 0 |
| 414 | @army21ye #Expo2020 #Dubai Not safe We recomme... | -1 |
| 415 | ‘Why? The Musical’ At Expo 2020 Dubai\n#WhyThe... | 0 |
| 416 | In just under 30 minutes I’ll be back with @Ma... | 0 |
| 417 | CR7CR7, the international superstar, is visiti... | 1 |
| 418 | So here I am, at the Mexico’s pavilion of the ... | 1 |
| 419 | @drshamamohd What these fake....contd:\nF. Ind... | 0 |
| 420 | #Expo2020 in #Dubai postponed some events afte... | -1 |
| 421 | Transport Operations Team Leaders are always o... | 1 |
| 422 | #Expo2020 #Dubai Not safe We recommend a secon... | -1 |
| 423 | It was a bittersweet decision. \n\nOn one hand... | 0 |
| 424 | #repost\n\n@expo2020dubai\n\nCR7, the internat... | 1 |
| 425 | Christiano Ronaldo will be at #Expo2020Dubai t... | 0 |
| 426 | When Women Thrive .. Humanity Thrive\n#Expo202... | 1 |
| 427 | This past Monday, on my flight to Dubai on my ... | 0 |
| 428 | Eyal Cohen was among yesterday's experts discu... | 0 |
| 429 | @expo2020dubai #Expo2020 #Dubai Not safe We re... | -1 |
| 430 | @LottinPackeddd Just kidding bcoz its expo2020 | 0 |
| 431 | HE Noura bint Mohammed Al Kaabi Meets UAE Thea... | 0 |
| 432 | I visited the immense construction site of the... | 0 |
| 433 | “As a healthcare provider that day. It was my ... | 0 |
| 434 | Meeting with the Presidential delegation of El... | 0 |
| 435 | Looking forward to attending @expo2020dubai to... | 1 |
| 436 | “It is learned from the field that females are... | 0 |
| 437 | “Expo restored our hope that life is going bac... | 1 |
| 438 | "To be able to fight the unknown, that is a wh... | 0 |
| 439 | Attraction is key to gaining visitors. But if ... | 1 |
| 440 | How Do We Create Healthy & Happy World?\nF... | 0 |
| 441 | https://t.co/CXvfbTrZzM\n\nGarden in the Sky J... | 1 |
| 442 | Manchester City and England midfielder Jack Gr... | 0 |
| 443 | World Expo2020, Dubai @expo2020dubai https:/... | 0 |
| 444 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 445 | Wish I could visit #Expo2020 tomorrow just to ... | 0 |
| 446 | ‘Why? The Musical’ is sweeping the audience aw... | 1 |
| 447 | These fascinating questions were at the heart ... | 1 |
| 448 | UK showcases new product at #Expo2020 https://... | 0 |
| 449 | Big day at #Expo2020 tomorrow! https://t.co/Vx... | 1 |
| 450 | Health Week begins today @expo2020dubai. As pa... | 1 |
| 451 | The “Eye and Stories” by an emirati artist cap... | 1 |
| 452 | Join us for an unforgettable night with the su... | 1 |
| 453 | discussion panel at #DIPMF, offering innovativ... | 0 |
| 454 | HE Zuzana Caputova, Madam President of the Slo... | 1 |
| 455 | Expo 2020 - Filipino 'Ben and Ben' concert pos... | -1 |
| 456 | The China Pavilion at Expo 2020 Dubai kicked o... | 1 |
| 457 | Women Empowerment: Shared EU-GCC Experiences7/... | 0 |
| 458 | CR7, international superstar, is visiting #Exp... | 1 |
| 459 | Join #UNxEdpo & #Norway at #Expo2020 Monda... | 0 |
| 460 | Are you at #EXPO2020 in Dubai? Don't miss the ... | 0 |
| 461 | India Pavilion celebrates 73rd Republic Day at... | 1 |
| 462 | Health & Wellness week until 2 February\n\... | 0 |
| 463 | @EmCollingridge @manalajaj @UKPavilion2020 @vi... | 1 |
| 464 | Bringing together everyday heroes from around ... | 1 |
| 465 | #Expo2020 amazing https://t.co/2QALThs18O | 1 |
| 466 | At the 73rd Indian #RepublicDay cultural perfo... | 1 |
| 467 | Well. To be honest, I couldn’t help not to hv ... | 1 |
| 468 | My joy 🤍 can’t wait for tomorrows look!! I ado... | 1 |
| 469 | Eleonora Borisova delighting the audience with... | 1 |
| 470 | #DIPMF’s panel discussion entitled ‘Project Ma... | 0 |
| 471 | They need no introduction—Shankar–Ehsaan–Loy, ... | 1 |
| 472 | All my people in the #UAE get along to the Aus... | 1 |
| 473 | Experience traditional beauty of Japanese cult... | 1 |
| 474 | "A few weeks into the pandemic, I could sense ... | 0 |
| 475 | The young 🇳🇿 chefs from our restaurant #Tiaki ... | 0 |
| 476 | "A few weeks into the pandemic, I could sense ... | 0 |
| 477 | CR7, the international superstar, is visiting ... | 1 |
| 478 | Come check out some of 🇳🇿’s best street arts c... | 1 |
| 479 | We are excited to welcome @EndeavorJo as a com... | 1 |
| 480 | @k03_mani @expo2020schools @expo2020 @gemsnms_... | 1 |
| 481 | So you know, I come to expo to explore food in... | 1 |
| 482 | [Mohammed Bin Rashid Centre for Government Inn... | 0 |
| 483 | Find out how people, ideas & innovations c... | 1 |
| 484 | It’s Cristal clear that #UAE is not a peace lo... | -1 |
| 485 | The Art Listens created a curricular #mentalhe... | 1 |
| 486 | American comedian and actor Chris Tucker visit... | 1 |
| 487 | Learn about the most prominent practices and a... | 0 |
| 488 | India Pavilion celebrates 73rd Republic Day at... | 1 |
| 489 | @Arsenal it was nice seeing you around @emirat... | 1 |
| 490 | 📸 from a visit to @expo2020dubai \n\nThere’s s... | 1 |
| 491 | Be in awe of this experiment that has managed ... | 1 |
| 492 | At the @expo2020dubai we are showing the world... | 0 |
| 493 | We don’t use tech because it’s fancy, we use i... | 1 |
| 494 | Award-winning actor Bryan Cranston, star of po... | 0 |
| 495 | Work on Progress for UAE Innovates at EXPO2020... | 1 |
| 496 | #istat today participates in #EXPO2020 'Mobili... | 1 |
| 497 | After a great Rwanda National day at #expo2020... | 1 |
| 498 | Expo 2020 Dubai got the world under a roof Pho... | 1 |
| 499 | The sessions will be followed by a panel discu... | 0 |
| 500 | Join us with Dr Keivan Javanshiri, MD, who wil... | 0 |
| 501 | BRAZIL @ LAS PAVILION!\n\n" Families like fudg... | 1 |
| 502 | It's not yet too late to hop in the yellow tra... | 0 |
| 503 | Road to 2025 - #Fisu world university games wi... | 0 |
| 504 | PINS COLLECTOR @ LAS!\n\nCOLLECT things you LO... | 1 |
| 505 | Enhance your skills with the help of some work... | 1 |
| 506 | Hundreds of 'butterfly-shaped kites' to take t... | 1 |
| 507 | BEYOND THE STARS: ❤️🔥\n\n ---✨🌟✨---\n\n... | 1 |
| 508 | The boys posing for a photo outside the Emirat... | 0 |
| 509 | Empower employees for success with step-by-ste... | 0 |
| 510 | A new India-UAE VC Fund of $150 million was la... | 0 |
| 511 | A better future needs to be a healthier one. #... | 0 |
| 512 | Black Eyed Peas @bep deliver a show in tune wi... | 1 |
| 513 | The #Expo2020 exhibition in #Dubai has announc... | -1 |
| 514 | #Expo2020Duba is still free for nannies and #R... | 0 |
| 515 | #GoldenJubileeTour — Cyclists pedal from Abu D... | 1 |
| 516 | On behalf of H.E President Paul Kagame, Prime ... | 1 |
| 517 | Before #veganuary ends, you can still sample v... | 1 |
| 518 | @WiebeWkkr You'll love #Expo2020 it's amazing.... | 1 |
| 519 | Today’s business highlights at Expo 2020 Dubai... | 0 |
| 520 | We would like YOU to join us at our #BigData e... | 0 |
| 521 | The #UK Pavilion won our Best Exhibit award fo... | 1 |
| 522 | 📣Announcing phase 3 of #EnRouteExpo2020 challe... | 0 |
| 523 | #Expo2020Dubai's #NewZealandPavilion restauran... | 1 |
| 524 | Celebrating Slovakia National Day at Expo 2020... | 1 |
| 525 | Learn more about the #Andorra Pavilion - Small... | 1 |
| 526 | We welcome each guest with a unique flower fro... | 1 |
| 527 | Day 2 of the Main #Forum event includes a vari... | 0 |
| 528 | #HappeningNow\nDay 2 of the Cybersecurity Stra... | 0 |
| 529 | Come and meet our team to explore our amazing ... | 1 |
| 530 | At #Expo2017, the #France Pavilion won our Edi... | 1 |
| 531 | Tune in for a very special panel discussion on... | 1 |
| 532 | @army21ye #breaking Yemeni Army spokman .. New... | -1 |
| 533 | "other SAFE, fun events." #UAE: your #Expo2020... | -1 |
| 534 | I go back to #Expo2020 to have the classic cus... | 1 |
| 535 | Gaming His Way to Success\nMohammed Yaseen of ... | 0 |
| 536 | Join us at Expo 2020 Dubai as we celebrate the... | 1 |
| 537 | @EmCollingridge @manalajaj @expo2020dubai @UKP... | 1 |
| 538 | Good morning from expo2020 again 🥱💗 | 1 |
| 539 | The #USAPavilion welcomed delegates from the M... | 0 |
| 540 | #breaking Yemeni Army spokman .. New warning f... | -1 |
| 541 | @ianetwork along with @ficci_india, MCA, and T... | 1 |
| 542 | Complimentary parking at Sustainability Premiu... | 0 |
| 543 | Join us at 13:45 UK time today for a panel dis... | 1 |
| 544 | Black Eyed Peas Headline in Expo 2020 Dubai’s ... | 0 |
| 545 | The Great Indian Recipe Contest has started. A... | 1 |
| 546 | At #Expo2010 in #Shanghai, #Denmark took top h... | 1 |
| 547 | #Dubai #UAE #Travel #Expo2020 \n\nCome to Duba... | 1 |
| 548 | 🇪🇺How EU & Member States engage on #Global... | 0 |
| 549 | Today #CrownPrincessVictoria inaugurated the S... | 0 |
| 550 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | 1 |
| 551 | Join us at @Expo2020Dubai as we celebrate the ... | 1 |
| 552 | Here are the answers to all your Expo 2020 Dub... | 0 |
| 553 | Don't forget to buy your Expo 2020 Dubai ticke... | 0 |
| 554 | Stay tuned for the coverage of the event. Ever... | 0 |
| 555 | We believe in our responsibility to contribute... | 0 |
| 556 | Greetings to Slovakia on their National Day at... | 1 |
| 557 | The Rwanda National Day Celebration, today at ... | 1 |
| 558 | "Isophotes" are widely used in astronomy to de... | 0 |
| 559 | Today we are excited to celebrate Slovakia 🙌\... | 1 |
| 560 | 🦸♀️ From parents to school teachers/ sanitati... | 1 |
| 561 | A cross-border India-UAE VC fund to invest in ... | 0 |
| 562 | Innovation always needs human intelligence, en... | 1 |
| 563 | How do we create a healthy, happy world? Find ... | 1 |
| 564 | “So on this song, in this country, right now, ... | 0 |
| 565 | At #Expo2012 in #Korea, the #Oman Pavilion won... | 1 |
| 566 | Come and find Essity's @AxelNordberg and Arush... | 1 |
| 567 | How do we create a healthy, happy world? Find ... | 0 |
| 568 | The #UAE #Pavilions have won many Expo Awards ... | 1 |
| 569 | Imagine reducing emissions just by breathing –... | 1 |
| 570 | Find out why #SAPtraining is vital to digital ... | 1 |
| 571 | The National Day of the Kingdom of Cambodia wa... | 1 |
| 572 | Empower employees for success with step-by-ste... | 0 |
| 573 | At #Expo2012 in #Korea, the #Philippines won B... | 1 |
| 574 | #indiarepublicday #Expo2020 #Expo2020Dubai #Du... | 1 |
| 575 | Not one to defend the ANC government, but seem... | 1 |
| 576 | At #Expo2015 in #Italy, #China won Honorable M... | 1 |
| 577 | The #Korea Pavilion took home top honors in ou... | 0 |
| 578 | #mentions\n\n#VenezuelaExpo2020Dubai #Venezue... | 0 |
| 579 | What a day! Great to have our guests from Etis... | 1 |
| 580 | @expo2020dubai Yemen military forces exchanges... | -1 |
| 581 | Yemen military forces exchanges the name of EX... | -1 |
| 582 | The Canada Pavilion located at @expo2020dubai ... | 1 |
| 583 | How is Scotland using data intelligence to enh... | 0 |
| 584 | ✅ Shapes from Expo2020 is officially LIVE!\n\n... | 1 |
| 585 | #Expo2020 ...\nWith us, you may lose..Advise t... | -1 |
| 586 | Come and Join us on saturday 5th february at 7... | 0 |
| 587 | On behalf of President Paul Kagame, Prime Mini... | 1 |
| 588 | We’re halfway through the @Siemens Future Worl... | 1 |
| 589 | #Expo2020 is postponing events over "unforesee... | -1 |
| 590 | Black Eyed Peas Deliver Electrifying Performan... | 1 |
| 591 | @TheRoyalRani If you download the Expo2020 app... | 0 |
| 592 | He noted that the UAE does not need that suppo... | -1 |
| 593 | case with the UAE.\nIn a tweet on his Twitter ... | -1 |
| 594 | Both boys and girls, whose language is Arabic,... | 1 |
| 595 | Personalize your vitamin intake to meet your n... | 0 |
| 596 | We bring you the highlights of the events held... | 1 |
| 597 | Emirati Talent Competitiveness Council Organis... | 1 |
| 598 | The Brazilian space at the world exhibition in... | 1 |
| 599 | With aromas of the finest coffee and the melod... | 1 |
| 600 | Dubai is no longer safe... people should cance... | -1 |
| 601 | At #Expo2015 in #Milan, #Belgium took home Hon... | 1 |
| 602 | Your aggression, tyranny, criminality, and ugl... | -1 |
| 603 | @HamdanMohammed Excellent apart from last 3 mo... | 1 |
| 604 | A special journey awaits you, in which the org... | 1 |
| 605 | One special fun night at @expo2020dubai .. #in... | 1 |
| 606 | Expo2020 comes ex. Po 🤣🤣 and soon after will b... | -1 |
| 607 | A new date will be announced soon across our s... | -1 |
| 608 | A great great night with the global superstars... | 1 |
| 609 | #Expo2020 Dubai has recorded 10,836,389 #visit... | 1 |
| 610 | 🔴 #UAE: #Expo2020 Dubai announces the postpone... | -1 |
| 611 | This Queen is going to set the stage on fire a... | 1 |
| 612 | This week Yulia Poslavskaya (CMO) represented ... | 1 |
| 613 | The #Australia Pavilion won one of our #Expo20... | 1 |
| 614 | Whoever thought auto-tuning Amitabh Bachchan's... | -1 |
| 615 | @IndiaExpo2020 @sunjaysudhir @expo2020dubai @D... | -1 |
| 616 | HH Sheikh Hamdan bin Mohammed bin Rashid Al Ma... | 0 |
| 617 | FM:World Recognizes Legitimacy of Yemeni Retal... | -1 |
| 618 | Love ❤ Turkey 🇹🇷 ♥️\n#Expo2020\n#Turkey \n#Th... | 1 |
| 619 | @GregoryDEvans Do you got anything that can co... | -1 |
| 620 | #YEMEN:Saudi -UAE Aggression Targets Telecommu... | -1 |
| 621 | In 1966, Kasie Pattundeen, a meticulous bookke... | 0 |
| 622 | #Dubai #Expo2020 #Expo2020Dubai started cancel... | -1 |
| 623 | We’re thrilled that our laser projection is pa... | 1 |
| 624 | Health and Wellness Week at Expo 2020 Dubai\n#... | 0 |
| 625 | @esepzai @pmlabpk @cgsrmi Not really for Dubai... | 1 |
| 626 | It was a pleasure to participate in the Global... | 1 |
| 627 | In Video: 73rd Republic Day of India Celebrati... | 1 |
| 628 | Guided by our beloved @arrahman, the Firdaus O... | 1 |
| 629 | WHO WILL STEAL THE STAGE?\n\nTune in on the 28... | 0 |
| 630 | With the sweet aroma of Saudi coffee and its i... | 1 |
| 631 | CNN: Slovenia's forested Expo pavilion is shad... | 0 |
| 632 | #COUNTRYBRANDING\n#Expo2020 Dubai celebrate In... | 1 |
| 633 | From my visit to @expo2020dubai \nIt was a gre... | 1 |
| 634 | Shows on the #SaudiArabia Pavilion’s open squa... | 1 |
| 635 | Experience the UAEU Pavilion in 360 degree thr... | 1 |
| 636 | Expo 2020 Dubai; visitor numbers exceed 11 mil... | 1 |
| 637 | Young visitors at the #SaudiArabia Pavilion ca... | 1 |
| 638 | Join us at #Expo2020 tomorrow at 9am (UK-GMT) ... | 0 |
| 639 | Uh oh. Don't tell me this is a coincidence👀🚀🇾🇪... | 0 |
| 640 | Expo 2020 Exhibit Mashes Up Kiosk, AR, Selfies... | 0 |
| 641 | At the Aus Pavillion @expo2020dubai Thank you ... | 1 |
| 642 | 🇸🇪 Ambassador of the Kingdom of Sweden in Saud... | 0 |
| 643 | Join us on the 29th of January 2022, from 5:30... | 0 |
| 644 | Let Kuwaiti musical stars Mutref Al Mutref and... | 1 |
| 645 | Professor George Crooks @CrooksGeorge CEO of \... | 0 |
| 646 | As part of our activities during #Expo2020, on... | 0 |
| 647 | South Africa at the Dubai #Expo2020. I wonder ... | -1 |
| 648 | How do we create a healthy, happy world? Find ... | 1 |
| 649 | Happy to be at #Expo2020 in Dubai to discuss a... | 1 |
| 650 | Join Akkad Holdings, Stephen Shaya, M.D., and ... | 0 |
| 651 | Tourism sector acknowledges dynamic role playe... | 1 |
| 652 | See you tomorrow at the Youth Pavilion #Expo20... | 1 |
| 653 | We popped ‘down under’ to wish our wonderful n... | 1 |
| 654 | Take the chance to meet with the leading exper... | 0 |
| 655 | At the end of the day,we share our reflections... | 1 |
| 656 | The second edition of the Human Fraternity Fes... | 0 |
| 657 | Here are highlights from the diverse events an... | 0 |
| 658 | #Repost @expo2020dubai \n\nTo all our 30,000 a... | 1 |
| 659 | Take the chance to meet with the leading exper... | 0 |
| 660 | Here are the highlights of the ‘Mega Projects ... | 1 |
| 661 | “With the pandemic, we’ve learned that we need... | 0 |
| 662 | Series of new events at #Expo2020 Dubai to fo... | 1 |
| 663 | Learn about the nation's top projects by atten... | 1 |
| 664 | It was absolutely an everlasting performance! ... | 1 |
| 665 | PHOTO:\nArsenal FC players including Granit Xh... | 0 |
| 666 | Gender equality is essential. The Women’s Pavi... | 1 |
| 667 | What a day! Great to have our guests from Etis... | 1 |
| 668 | Praying 4 the gulf safety,God will punish Yeme... | -1 |
| 669 | Minister of Culture and Youth, visits #SouthKo... | 0 |
| 670 | Italy Pavilion hosts ‘Flying Society’ Event at... | 1 |
| 671 | Enjoy a whole new audience to explore at Alger... | 1 |
| 672 | World-renowned artists Black Eyed Peas celebra... | 1 |
| 673 | Expo 2020 Dubai approaches 11 million visits m... | 1 |
| 674 | What a day! Great to have our guests from Etis... | 1 |
| 675 | Yemeni army's spokesperson :\n\n“#Expo2020 Du... | -1 |
| 676 | Visit the Maldives Pavilion (SA08-B) in the Su... | 0 |
| 677 | At the @expo2020dubai — where innovation &... | 1 |
| 678 | Adding to my CV under accomplishments survivin... | 0 |
| 679 | Real Madrid superstars at #Expo2020 #Dubai \n#... | 0 |
| 680 | “Artificial intelligence applied to medicine: ... | 1 |
| 681 | Korean Pavilion at Expo 2020 Dubai is a cultur... | 1 |
| 682 | Genomics Medicine Conference \nBreakthroughs &... | 0 |
| 683 | The #Iran-backed Houthis continue to threaten ... | -1 |
| 684 | However, we would like to reassure you there a... | 1 |
| 685 | We would like to wish our neighbours @IndiaAtE... | 1 |
| 686 | The #USAPavilion welcomed Cabinet Assistant Se... | 0 |
| 687 | Global music superstars #BlackEyedPeas rocked ... | 1 |
| 688 | On January 26, President of #StatisticsPoland ... | 0 |
| 689 | CG Dr. Aman Puri unfurled the National Flag at... | 0 |
| 690 | #أكسبو...\nمعنا قد تخسر ..ننصح بتغير الوجهه؟؟؟... | -1 |
| 691 | The #USAPavilion was honored to welcome the We... | 1 |
| 692 | It was an honor to present our beliefs during ... | 0 |
| 693 | UK Pavilion to explore future of healthcare at... | 0 |
| 694 | Are you planning to visit #Expo2020? \n#DubaiM... | 1 |
| 695 | In which she stressed that the #Forum was cont... | 1 |
| 696 | Join us on Sunday, 30 January, at 17:00 to hit... | 0 |
| 697 | Check out the inventor Abdulaziz Al-Thekair’s ... | 0 |
| 698 | South Africa’s stand at EXPO2020 Dubai — judge... | 0 |
| 699 | Our experience with world VIPs and delegation ... | 1 |
| 700 | “Have you seen David?”: #Expo2020's new campai... | 0 |
| 701 | Attend & Interact: https://t.co/WXo9yovKHw... | 0 |
| 702 | Share your photos or videos on Instagram with ... | 1 |
| 703 | At #HammourHouse at #Expo2020Dubai raises awar... | 0 |
| 704 | Have you visited our pavilion shop yet? Whethe... | 1 |
| 705 | .@iamkatieovery finds an interesting spot at t... | 1 |
| 706 | #VIDEO | The Safety Ambassadors Council joined... | 1 |
| 707 | #Expo2020Dubai is never short of celebrations.... | 1 |
| 708 | From trombone to piano 🎹, Jose Ramon will make... | 1 |
| 709 | WCS is free to all schools around the world. A... | 0 |
| 710 | Pay with NBD at #Expo2020 #Dubai \n#Expo2020Du... | 0 |
| 711 | Enjoy discovering Saudi coffee and its traditi... | 1 |
| 712 | Black Eyed Peas Full Concert at EXPO 2020 Duba... | 0 |
| 713 | Think the best way to see @expo2020dubai is go... | 1 |
| 714 | At @ExpoDubai we visited the @swisspavilion an... | 0 |
| 715 | Meet Chefs Kārena and Kasey Bird! \n\nThese ch... | 1 |
| 716 | Visit the Maldives Pavilion at the Sustainabil... | 0 |
| 717 | fuck expo2020 dubai | -1 |
| 718 | @AravindRajaOff same happened in expo2020. it'... | 0 |
| 719 | In the latest two episodes of #Expo2020 Dubai’... | 1 |
| 720 | Dr Bushra Kaddoura, Early Childhood Education ... | 0 |
| 721 | You only realise The @expo2020dubai is serious... | 1 |
| 722 | Anthony Abi Zeid, Senior Programs Associate at... | 0 |
| 723 | Please note that the #Malawi Investment and Tr... | -1 |
| 724 | Visit Sultanate of Oman Pavilion and come acro... | 0 |
| 725 | H.E. Ahmed Al Falasi visits El Salvador’s pavi... | 0 |
| 726 | On the 1st of February, 2022, Abdulqader Obaid... | 0 |
| 727 | #GBFLATAM2022 by @DubaiChamber & @Expo2020... | 0 |
| 728 | We still have some cool unpublished stuff from... | 0 |
| 729 | What a day! Great to have our guests from Etis... | 1 |
| 730 | Distinguished panelists in the field of design... | 1 |
| 731 | HIPA’s photography contests winners announced.... | 0 |
| 732 | I had to fill in very personal details for the... | -1 |
| 733 | The Pakistan Pavilion during the Travel and Co... | 0 |
| 734 | Our team members are always on their toes at S... | 1 |
| 735 | If you work in Life Sciences and want to find ... | 0 |
| 736 | National Clinical Director Jason Leitch will d... | 0 |
| 737 | Respiratory Innovation Wales is thrilled to be... | 1 |
| 738 | The #GCC Pavilion at #Expo2020 #Dubai hosts th... | 0 |
| 739 | In the Pavilion’s immersive zone, our guests d... | 0 |
| 740 | #Expo2020 #Dubai records 10,836,389 #visits as... | 1 |
| 741 | Just start: #MachineLearning for national #Sta... | 0 |
| 742 | THE KENYA PAVILLION AT #EXPO2020\nThe Kenya Pa... | 1 |
| 743 | 🎉 700,000 VISITORS! 🎉 Kia ora to the 700k peop... | 1 |
| 744 | Travel show «Heads and Tails» (Oryol i Reshka ... | 0 |
| 745 | International colleges implement curriculum th... | 0 |
| 746 | A photo has to educate —that’s the impact expe... | 0 |
| 747 | The KnE bag has had a wonderful time exploring... | 1 |
| 748 | Indian envoy to UAE said UAE is the safest cou... | 1 |
| 749 | FIFA Club World Cup UAE 2021™ Mobile Roadshow ... | 0 |
| 750 | The @GdParisExpress in a nutshell: \n\n🛤200km ... | 0 |
| 751 | SAP #S4HANA is revolutionizing how organizatio... | 0 |
| 752 | His Excellency Dr Thani bin Ahmed Al Zeyoudi, ... | 1 |
| 753 | Wishing all Australians a Happy National Day!\... | 0 |
| 754 | #Yemen is an official participant to the #Expo... | 0 |
| 755 | BEYOND THE STARS: ❤️🔥\n\n ---✨🌟✨---\n\n... | 1 |
| 756 | #KeepingUpwithOpti to explore @expo2020dubai o... | 0 |
| 757 | which were required skills that employ agile a... | 0 |
| 758 | We would like YOU to join us at our #BigData e... | 0 |
| 759 | We at VPS Healthcare are proud to partner with... | 0 |
| 760 | Expo Dubai 2020 is the meeting of the future. ... | 1 |
| 761 | #Repost @expo2020australia See YOU on Saturday... | 0 |
| 762 | Today’s business highlights at Expo 2020 Dubai... | 0 |
| 763 | Pay with an Emirates NBD debit or credit card ... | 0 |
| 764 | @IndiaExpo2020 @expo2020dubai #UAEIsNotSafe Ye... | -1 |
| 765 | Have to agree , this is typical ANC ! Disgrace... | -1 |
| 766 | What a day! Great to have our guests from @Eti... | 1 |
| 767 | @visitdubai @AquaFunME Don't visit Dubai. #Exp... | -1 |
| 768 | #Expo2020 in #Dubai was threatened to be bomba... | -1 |
| 769 | #Sustainability isn’t just an environmental or... | 0 |
| 770 | SAP #S4HANA is revolutionizing how organizatio... | 0 |
| 771 | The discussions allowed the participants to en... | 1 |
| 772 | The participants are now arriving to #Expo2020... | 0 |
| 773 | Thank you for featuring our pavilion @visitdub... | 1 |
| 774 | Ready, set, GO! \n\nA Canadian tradition, the ... | 0 |
| 775 | The #USAPavilion welcomed Hamoody Bamby, socia... | 1 |
| 776 | Get straight connections to the Expo from Duba... | 1 |
| 777 | #Expo2020 crowds have been amazed by 🇳🇿's youn... | 1 |
| 778 | The event started with an opening address from... | 1 |
| 779 | @rta_dubai is it mandatory to have @expo2020du... | 0 |
| 780 | We're live for Day-2 of the #FrenchHealthcare ... | 0 |
| 781 | .@expo2020dubai records almost 11 million visi... | 1 |
| 782 | What a day! Great to have our guests from Etis... | 1 |
| 783 | A perspective from the Young Professionals For... | 0 |
| 784 | Scotland has become a world leader in the deve... | 1 |
| 785 | #Expo2020 | A young and skilled work force in ... | 1 |
| 786 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | 1 |
| 787 | As of January 24, Expo 2020 Dubai had received... | 1 |
| 788 | Catch a recap here and keep your eyes on the b... | 1 |
| 789 | #ElSalvador has celebrated its national day at... | 1 |
| 790 | CONGRATULATIONS, @expo2020dubai!\n\nThe mega e... | 1 |
| 791 | @PressTV #Yemen retaliatory attacks to undermi... | -1 |
| 792 | SAP #S4HANA is revolutionizing how organizatio... | 0 |
| 793 | Loved by adults and children alike 🥰 a meet u... | 1 |
| 794 | Pay with an Emirates NBD debit or credit card ... | 0 |
| 795 | UN Committee of Experts on Big Data and Data S... | 0 |
| 796 | What a day! Great to have our guests from Etis... | 1 |
| 797 | What a day! Great to have our guests from Etis... | 1 |
| 798 | Massive stream of investment on cards in KP IT... | 0 |
| 799 | Expo Young Stars - ABCD Dance Studio - took th... | 1 |
| 800 | Get straight connections to the Expo from Duba... | 1 |
| 801 | Thankyou so much @DubaiPoliceHQ for the good ... | 0 |
| 802 | We would like to thank the Deputy Minister of ... | 1 |
| 803 | Starting in 2 hours at @expo2020dubai - new ha... | 0 |
| 804 | ดู "01162022 FORESTELLA - The Unwritten Legend... | 0 |
| 805 | ดู "01162022 FORESTELLA - The Unwritten Legend... | 0 |
| 806 | #Rosatom, a leading #globaltechnologycompany, ... | 0 |
| 807 | 📅WHAT'S UP IN FEBRUARY? \n\nThis month of Febr... | 1 |
| 808 | #Watch the Voice of Youth - Wonderland : New Z... | 1 |
| 809 | @apldeap @JReysoul @TabBep honor their Filipin... | 1 |
| 810 | Gulf News: Dubai named most popular destinatio... | 1 |
| 811 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 812 | Mohamed Dekkak with H.E. Robert G. Clark, Comm... | 0 |
| 813 | @IsfahanMusa @Aldanimarki It was suppose to ha... | 0 |
| 814 | civilians in #Yemen, calling on foreign compan... | -1 |
| 815 | Investors in #UAE Express Concerns after Sana’... | -1 |
| 816 | BEBOT with APLdeAp THE BLACK EYED PEAS LIVE IN... | 0 |
| 817 | Black Eyed Peas - I GOT A FEELING LIVE in Conc... | 0 |
| 818 | #GIDLE #여자아이들 #GIDLE_IN_DUBAI #neverland @G_I_... | 0 |
| 819 | #ISRAEL-UAE Israeli President Herzog will trav... | 0 |
| 820 | When working on projects like the Dubai #expo2... | 1 |
| 821 | Voice of youth - Wonderland - #Expo2020 https:... | 1 |
| 822 | Those visiting #Expo2020 next week: come join ... | 1 |
| 823 | Great @blackeyedpeas LIVE at @expo2020dubai to... | 1 |
| 824 | #UAE is not safe\n #إكسبو2020 #دبي #ابوظبي #ا... | -1 |
| 825 | The 7th edition of Dubai International Project... | 0 |
| 826 | El Salvador celebrates its National Day at #Ex... | 1 |
| 827 | civilians in #Yemen, calling on foreign compan... | -1 |
| 828 | @OccupyDemocrats 🚨Breaking\nYemeni Army's Spok... | -1 |
| 829 | ⭕️ Sanaa forces threaten to target the Expo in... | -1 |
| 830 | Investors in #UAE Express Concerns after Sana’... | -1 |
| 831 | Our visitors have been discovering the delicio... | 1 |
| 832 | UAE Government Launches ‘Big Data for Sustaina... | 1 |
| 833 | Thread explaining #Dubai not covered by press ... | -1 |
| 834 | just having fun #expo2020 @expo2020dubai @ Ex... | 1 |
| 835 | Want to be a part of history in the making, an... | 1 |
| 836 | Let's get it started! \n#BlackEyedPeas #Expo20... | 0 |
| 837 | This was the scene before the Black Eyed Peas ... | 0 |
| 838 | 🚨Deadline Looming: Don't miss the chance to en... | 0 |
| 839 | Loved it ♥️\n#Pakistan #Expo2020 #Quran https:... | 1 |
| 840 | #blackeyedpeas rocking #expo2020 amazing to se... | 1 |
| 841 | READ | https://t.co/nP4AdzZWz0\n\n#Dubai #Expo... | 0 |
| 842 | Another great ride #onewheel #onewheelpintx #e... | 1 |
| 843 | At the #Expo2020 #Dubai \n\n"Some of my favor... | 1 |
| 844 | Fearing a #Houthi attack, there is no doubt th... | -1 |
| 845 | Be part of the virtual launch of the 2021/2022... | 0 |
| 846 | Going to #UAE for #Visit #Expo2020 https://t.c... | 0 |
| 847 | We invite you to participate in our program fo... | 0 |
| 848 | #Expo2020: Mohammed Abdulsalam: Yemen will con... | -1 |
| 849 | who made your Expo experience extra special. S... | 1 |
| 850 | So happy to be in #Expo2020 watching Black Eye... | 1 |
| 851 | Amb. @ehategeka and the pavilion team were hon... | 1 |
| 852 | Just visited @SpaceX at Expo2020 Dubai\n@elonm... | 0 |
| 853 | The Yemeni army spokesman warns companies and ... | -1 |
| 854 | Join the festive international event on 5 Febr... | 1 |
| 855 | The Yemeni army spokesman warns companies and ... | -1 |
| 856 | HE Dr Nicole Hoffmeister-Kraut, Minister of Ec... | 0 |
| 857 | Got Your Expo Passport Yet?\n#Expo2020 #Dubai ... | 0 |
| 858 | #DubaiExpo2020 \nVisit 🇿🇼 #zimpavilion #expo2... | 0 |
| 859 | @esepzai @pmlabpk @cgsrmi It’s no doubt the mo... | 1 |
| 860 | Black Eyed Peas LIVE CONCERT IN EXPO 2020 DUBA... | 1 |
| 861 | At #DIPMF, a number of leading experts in proj... | 0 |
| 862 | Luxembourg Pavilion Expo 2020 Dubai | 360 Vide... | 0 |
| 863 | @Ugandaexpo2020 Expo is among the military obj... | -1 |
| 864 | @ESAExpo2020 Expo is among the military object... | -1 |
| 865 | @hololive_En Expo is among the military object... | -1 |
| 866 | Coffee is a symbol of culture all over the wor... | 1 |
| 867 | Solutions for the future of healthcare is bein... | 1 |
| 868 | @expo2020dubai Expo is among the military obje... | -1 |
| 869 | @KSAExpo2020 Expo is among the military object... | -1 |
| 870 | @skzempireturkey @Stray_Kids Expo is among the... | -1 |
| 871 | @expo2020dubai @ESAExpo2020 Expo is among the ... | -1 |
| 872 | The #GCC Pavilion at #Expo2020 #Dubai celebrat... | 1 |
| 873 | Where Is The Love?\n#BEP #BlackEyedPeas #Expo2020 | 1 |
| 874 | At #DIPMF, a number of leading experts in proj... | 0 |
| 875 | Visitors at the #SaudiArabia Pavilion are lear... | 1 |
| 876 | If you go to Expo2020 honestly don’t miss out ... | 1 |
| 877 | 📢 1⃣ day to go! \n\nOn the eve of the new #UAE... | -1 |
| 878 | Our #Dubai : Trying new foods at the #Vietname... | 1 |
| 879 | https://t.co/CLb7XJuQxy ... Human spirit of mu... | 1 |
| 880 | #Expo2020 serious threats by the #Houthi milit... | -1 |
| 881 | Goa Showcases Investment-friendly Policies to ... | 0 |
| 882 | Accelerate #innovation in #HumanExperienceMana... | 0 |
| 883 | The Yemeni army declares the UAE is not safe\n... | -1 |
| 884 | Frontiers is hosting a live review at @expo202... | 0 |
| 885 | The first-ever World Expo held in the Middle E... | 1 |
| 886 | An exceptional military parade will leave the ... | 1 |
| 887 | Today in Dubai, an inauguration ceremony for t... | 1 |
| 888 | Number of companies withdraw from the fair aft... | -1 |
| 889 | #Expo2020 serious threats to attack by #Houthi... | -1 |
| 890 | We are honoured to present our associate partn... | 1 |
| 891 | Tomorrow @drjameswalters @AlkaSashin & @Pr... | 1 |
| 892 | We are honoured to present our event partner f... | 1 |
| 893 | @expo2020dubai What honor it's to see our firs... | 1 |
| 894 | The Luxembourg National Day concluded with a L... | 1 |
| 895 | BLACK EYED PEAS LIVE CONCERT IN EXPO 2020 #BLA... | 0 |
| 896 | @Leonardo_live has sparked a debate on the fut... | 0 |
| 897 | "We were expecting a pandemic flu but not a co... | 0 |
| 898 | The #SaudiArabia Pavilion is hosting a variety... | 1 |
| 899 | Expo 2020 Dubai: Malaysia’s journey towards s... | 1 |
| 900 | Celebrating Baden-Wurttemberg National Day at ... | 1 |
| 901 | #الإمارات_دويلة_غير_آمنه \n#الإمارات_غير_آمنة ... | -1 |
| 902 | Poetry is always celebrated on Burns Night. Ho... | 1 |
| 903 | What a day! Great to have our guests from Etis... | 1 |
| 904 | The magical swings section at the #German pavi... | 1 |
| 905 | The #KuwaitPavilion at #Expo2020Dubai organize... | 1 |
| 906 | Captain Francis Foley, British Hero of the Hol... | 0 |
| 907 | Tomorrow join our team to learn how #MachineLe... | 0 |
| 908 | Campus Director @_datasmith addresses #EXPO202... | 0 |
| 909 | It was an honor showing you our pavilion, Miss... | 1 |
| 910 | #BreakingNow Yemeni military spokesperson thre... | -1 |
| 911 | Distinguished by its delicious taste and uniqu... | 1 |
| 912 | What does the future of education look like? A... | 1 |
| 913 | We invite you to grow your business at the hea... | 0 |
| 914 | Over 11 million people visited #Expo2020Dubai ... | 1 |
| 915 | @mary_ng Please ... For the love of god ... Ma... | -1 |
| 916 | H.E. Dr. Nicole Hoffmeister-Kraut, Minister of... | 0 |
| 917 | Amina Alabdouli & Maryam Albalushi have bo... | -1 |
| 918 | Here is the original from @army21ye #Houthi S... | 0 |
| 919 | The final session of the day saw @MaherNasserU... | 0 |
| 920 | 📆📣[#Conference]\nEnd of the first day of the #... | 0 |
| 921 | The #SaudiCoffee2022 initiative is brought to ... | 1 |
| 922 | Happy Chinese New Year🎊\n\nIt is the Year of t... | 1 |
| 923 | The iconic Al Wasl Plaza \n#Expo2020Dubai #Exp... | 1 |
| 924 | YAAS! @ANNARFMUSIC is coming back to perform a... | 1 |
| 925 | Our first lady of #ElSlavador came with a lot ... | 1 |
| 926 | #أكسبو\nمعنا قد تخسر ..ننصح بتغير الوجهه ؟؟\n#... | -1 |
| 927 | The wait is almost over! \n\nIn a few days, @B... | 0 |
| 928 | Filipinos are soaring the skies with their bri... | 1 |
| 929 | The session is free for Expo ticket holders. S... | 0 |
| 930 | We are so excited to have @SIX60 as our #Expo2... | 1 |
| 931 | #Expo2020Dubai #Expo2020 \nYou will lose ,,,... | -1 |
| 932 | We are honored and privileged to represent our... | 1 |
| 933 | #أكسبو...\nمعنا قد تخسر ..ننصح بتغير الوجهه ؟؟... | -1 |
| 934 | Next up in our #Expo2020 National Day line-up ... | 1 |
| 935 | We will be starting our #Expo2020 National Day... | 1 |
| 936 | Pencil 31 January in your calendars! Our #Expo... | 1 |
| 937 | Visit MENASA – Emirati Design Platform to know... | 0 |
| 938 | What a day! Great to have our guests from Etis... | 1 |
| 939 | New date for the performance will be announced... | 0 |
| 940 | The state of Goa is ready to showcase its tour... | 1 |
| 941 | During the Dubai #Expo2020, we call on the #Em... | -1 |
| 942 | as attendants we've learned to build cultural ... | 1 |
| 943 | Share your photos or videos on Instagram with ... | 0 |
| 944 | Join us for a seminar on "Sustainability Devel... | 0 |
| 945 | The Algeria Pavilion brings this genre to @exp... | 1 |
| 946 | Dubai Expo 2020 with my dearest @harbeenarora ... | 0 |
| 947 | Expo2020 Dubai gathered women innovators to di... | 1 |
| 948 | Organized by the National Council for Culture,... | 1 |
| 949 | New date for the performance will be announced... | 0 |
| 950 | #Video: Discover delicate #Emirati #crafts at ... | 1 |
| 951 | We invite you to grow your business at the hea... | 1 |
| 952 | Everyday visitors from all over visit us. Wor... | 1 |
| 953 | Expo 2020 Dubai records almost 11 million visi... | 1 |
| 954 | What an incredible January with various meetin... | 0 |
| 955 | We are excited to invite you to join @BCCAD fo... | 1 |
| 956 | Warm gatherings, delicious food, traditional f... | 1 |
| 957 | The kreon oran pendant stone, a range of penda... | 1 |
| 958 | AIM 2022 Startup welcomes AMPERIA - a kit for ... | 0 |
| 959 | DMU's Dr Karthikeyan Kandan is in Dubai today,... | 1 |
| 960 | Artist Derek Liddington layers fragmented imag... | 0 |
| 961 | Celebrate the idea of a thriving future at Egy... | 1 |
| 962 | With the pandemic leading to huge increases in... | 0 |
| 963 | That one kid in your school who was musically ... | 0 |
| 964 | As part of the #InternationalEducationDay cele... | 1 |
| 965 | The #USAPavilion was honored to welcome the CE... | 0 |
| 966 | The HIT Music Festival is back for its second ... | 1 |
| 967 | The event on its peak 👍\n@Arab_Health @expo202... | 1 |
| 968 | FINLAND PAVILION EXPO2020 https://t.co/MGfPDjR... | 0 |
| 969 | #Expo2020 Dubai visits near 11 million https:/... | 1 |
| 970 | Saudi coffee: an iconic and distinctive symbol... | 1 |
| 971 | Dubai smart Police station provide #Expo2020 #... | 0 |
| 972 | 🟡 25 January 6-8pm. Location: Jubilee Stage\n🟡... | 0 |
| 973 | The Great Indian Recipe Contest has started. A... | 0 |
| 974 | Alan Williams, Vice President #Expo2020 Sponso... | 0 |
| 975 | What a day! Great to have our guests from Etis... | 1 |
| 976 | In this session, nutrition senior lecturer Dr ... | 0 |
| 977 | Don't miss out the chance to win with #Expo202... | 1 |
| 978 | Here’s @DMUDeanHLS explaining what this confer... | 0 |
| 979 | The Pakistan Pavilion at Expo2020 is pleased t... | 1 |
| 980 | Jack Grealish will be at @expo2020dubai on the... | 0 |
| 981 | Launched for the first time in 2016, #AquaFun ... | 1 |
| 982 | Join us on Wednesday, February 2, at 1:00 pm f... | 0 |
| 983 | sanctuary \n\n#expo2020 #dubai #visuals https:... | 0 |
| 984 | Minister of Interior visits Swiss pavilion at ... | 0 |
| 985 | Shoutout to Eloho Owoferia, Ticketing Team Mem... | 1 |
| 986 | The #SDGs are the blueprint to achieve a bette... | 1 |
| 987 | World-famous Khyber Pakhtunkhwa’s shawls and l... | 1 |
| 988 | For latest updates on our programming, visit h... | 0 |
| 989 | Simply show your student pass and valid studen... | 1 |
| 990 | Visit the St. Kitts & Nevis at EXPO2020 in... | 0 |
| 991 | Invited by the Israel Ministry of Transport an... | 0 |
| 992 | 🇱🇺 National Day [Afternoon Impressions] 🇱🇺 Af... | 1 |
| 993 | We are live again today from #Expo2020 in Duba... | 0 |
| 994 | Black Eyed Peas say @expo2020dubai show is 'li... | 1 |
| 995 | Enter the weekly raffle draw to stand a chance... | 1 |
| 996 | :::TODAY:::\n#BadenWürttemberg @Expo2020Dubai\... | 0 |
| 997 | :::TODAY:::\n#BadenWürttemberg @Expo2020Dubai\... | 0 |
| 998 | The Annual Investment Meeting (AIM) is a glob... | 0 |
| 999 | :::TODAY:::\n#BadenWürttemberg @Expo2020Dubai\... | 0 |
| 1000 | Khyber Pakhtunkhwa (#KP) to attract an estimat... | 0 |
| 1001 | @LAS_Expo2020 For sure. 😍 | 1 |
| 1002 | #Italy's Pavillion at #Expo2020 is one of the ... | 1 |
| 1003 | :::TODAY:::\n#ElSalvador at @Expo2020Dubai 202... | 0 |
| 1004 | :::TODAY:::\n#ElSalvador at @Expo2020Dubai 202... | 0 |
| 1005 | :::TODAY:::\n#ElSalvador at @Expo2020Dubai 202... | 0 |
| 1006 | Expo 2020 Dubai records almost 11 million visi... | 1 |
| 1007 | H.E. Gabriela Roberta Rodríguez de Bukele, Fir... | 0 |
| 1008 | Today Expo 2020 Dubai celebrates Rwanda's Nati... | 1 |
| 1009 | Lebanese pavillion at #expo2020 was shortly c... | -1 |
| 1010 | World’s largest Holy Quran cast in aluminum an... | 0 |
| 1011 | Today we are excited to celebrate Baden-Wurtte... | 1 |
| 1012 | Live @Expo2020Aus @CreationUAE Managing Direct... | 0 |
| 1013 | From bringing a tropical #rainforest canopy to... | 1 |
| 1014 | #PHOTOS: Part of the world’s largest Holy Qura... | 1 |
| 1015 | Visit the official #Expo2020 #Dubai store for ... | 0 |
| 1016 | An exceptional military parade will leave the ... | 1 |
| 1017 | What a day! Great to have our guests from Etis... | 1 |
| 1018 | Its #Expo2020 Day | 0 |
| 1019 | To mark Netaji's 125th birthday, the India Pav... | 0 |
| 1020 | Will this be our first Royal spelfie!? @Kensin... | 0 |
| 1021 | Innovation made in #BadenWuerttemberg: Rhonda ... | 0 |
| 1022 | We invite you to the night with the Polish Nat... | 1 |
| 1023 | Follow our page for weekly themes and updates.... | 0 |
| 1024 | @EUintheUAE @francedubai2020 @expo2020se @Expo... | 1 |
| 1025 | @ExpoVolunteers Ready to welcome EXPO2020 DUBA... | 1 |
| 1026 | Emirates News speaks with Japan Pavilion's arc... | 0 |
| 1027 | Health & Wellness ⚕️😷 week at #EXPO2020 ha... | 1 |
| 1028 | Expo 2020 Dubai records nearly 11 million visi... | 1 |
| 1029 | Day 5 of #Kurdistan Week at @IraqExpo2020 in D... | 1 |
| 1030 | From our visit to #Expo2020 at Dubai #ArabPrem... | 0 |
| 1031 | If you can't make it to Expo 2020 Dubai, don't... | 1 |
| 1032 | Meet the Team!\n\nPrisca Anyolo is a Journalis... | 0 |
| 1033 | We are live at #Expo2020 in Dubai and it's bri... | 1 |
| 1034 | If you can't make it to Expo 2020 Dubai, don't... | 0 |
| 1035 | Another great run organised by @expo2020dubai ... | 1 |
| 1036 | Congratulations to the winners of the UN Big D... | 1 |
| 1037 | Fusing style with substance, the Breathe eQuad... | 1 |
| 1038 | Here are the highlights of the ‘Data Science i... | 0 |
| 1039 | Catch the Black Eyed Peas live at the #Expo202... | 0 |
| 1040 | All the states of India are powerhouses of cul... | 1 |
| 1041 | You can participate in the 3 or 5 km run eithe... | 0 |
| 1042 | Digital health is a key enabler to improving o... | 0 |
| 1043 | "You are the future of safer and faster medica... | 0 |
| 1044 | Are you a student visiting Expo 2020 Dubai? Ge... | 1 |
| 1045 | Save the date: 2-3 March 2022, Dubai, UAE.\nTh... | 0 |
| 1046 | We are live! Watch the French Healthcare confe... | 0 |
| 1047 | Dubai RTA warns of delays in the parking entra... | -1 |
| 1048 | A tropical rainforest at the heart of #Expo202... | 0 |
| 1049 | In an interview with #StudioExpo reporter @the... | 0 |
| 1050 | At launch of UN Regional Hubs at #Expo2020 #Du... | 0 |
| 1051 | A tropical rainforest at the heart of #Expo202... | 0 |
| 1052 | "Isophotes" are widely used in astronomy to de... | 0 |
| 1053 | Expo 2020 Dubai is proud to mark the Internati... | 1 |
| 1054 | Ministerial panel at UN Big Data conference at... | 0 |
| 1055 | Warmest congratulations on your achievement. E... | 1 |
| 1056 | In partnership with @InsamlingChoice, we are t... | 1 |
| 1057 | Get down to #Expo2020Dubai early for the #Blac... | 0 |
| 1058 | Black eyes peas mmaya sa expo😍 #Expo2020 #Infi... | 1 |
| 1059 | Together with @wartsilacorp we've brewed more ... | 1 |
| 1060 | Today’s business highlight at Expo 2020 Dubai!... | 0 |
| 1061 | Excited to be attending the launch of the UN R... | 1 |
| 1062 | The event, titled ‘Women fighting climate chan... | 0 |
| 1063 | "We are slowly moving toward a place where eve... | 0 |
| 1064 | Expo 2020 is a World Expo to be hosted by Duba... | 0 |
| 1065 | On Day 2 of the 7th edition of #DIPMF, partici... | 0 |
| 1066 | From the Amazon basin in Brazil to the nature ... | 0 |
| 1067 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 1068 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | 1 |
| 1069 | 5 minutes until the livestream of the High Lev... | 0 |
| 1070 | Available online and in all Official Stores ac... | 0 |
| 1071 | Many people criticise South Africa’s stand at ... | 1 |
| 1072 | The session is free for Expo 2020 Dubai ticket... | 1 |
| 1073 | Gulfood🍽️ is only 3 weeks away!\n.\nMake your ... | 1 |
| 1074 | We start with our national day and we want to ... | 0 |
| 1075 | These were probably my favourite designs from ... | 1 |
| 1076 | Indian migrant workers at the Expo are compara... | -1 |
| 1077 | I'm attending Dubai Terry Fox run this Saturda... | 1 |
| 1078 | Not a single female representative! \nBiased r... | -1 |
| 1079 | LEADING THE WAY WITH COMPASSIONATE LEADERSHIP\... | 1 |
| 1080 | The countries of aggression (US-Saudi-UAE) mus... | -1 |
| 1081 | @Yahya_Saree tweets about #DubaiExpo2020..not ... | -1 |
| 1082 | Vintage outings near Tuscany recently. I do ha... | 0 |
| 1083 | Kuwaiti engineer, Jenan alShehab, a participan... | -1 |
| 1084 | Kuwaiti engineer, Jenan alShehab, a participan... | -1 |
| 1085 | It is a great shame not to have a single woman... | -1 |
| 1086 | Kuwaiti engineer, Jenan alShehab, a participan... | -1 |
| 1087 | Expo 2020 Dubai has resumed Dubai school visit... | 1 |
| 1088 | Professor @pasi_sahlberg says that in a time o... | 0 |
| 1089 | New Zealand’s National Day at Expo 2020 Dubai ... | 0 |
| 1090 | What frame did put a 😊 on your face, non of it... | 1 |
| 1091 | O summers , just can't wait for you 🙂. \n\nEag... | 1 |
| 1092 | Can't we just slide into the DMs? 👀\nAs boycot... | -1 |
| 1093 | Sick of these nasty KP Govt officials, mistrea... | -1 |
| 1094 | #UAE, did you learn a lesson?\nAfter you, it i... | -1 |
| 1095 | Hon’ble Minister, #MDoNER Shri @KishanReddyBJ... | 0 |
| 1096 | #Yemen’s #Houthi group confirmed it had fired ... | -1 |
| 1097 | Did you miss the @Cristiano Q&A session at... | 0 |
| 1098 | A privilege to be part of the @dundeeuni sessi... | 1 |
| 1099 | Athena and the Robots 1: \n\nPlease meet the m... | 1 |
| 1100 | "The mental health of intensive care professio... | 0 |
| 1101 | Here’s a chance to showcase your innovation at... | 0 |
| 1102 | It was a pleasure meeting #TeamWolf to make th... | 1 |
| 1103 | A visit to the #DubaiExpo2020 https://t.co/Oth... | 0 |
| 1104 | Promoting and growing ICT innovators & BPO... | 0 |
| 1105 | Israel's president spoke at Dubai's Expo 2020 ... | 0 |
| 1106 | Ballistic missiles over Abu Dhabi. \n\nA video... | -1 |
| 1107 | 📢#DubaiExpo2020 \nJoin @ECA_SRO_SA, @CouncilSa... | 0 |
| 1108 | 📢#DubaiExpo2020 \nJoin @ECA_SRO_SA, @CouncilSa... | 0 |
| 1109 | WCS launched globally as part of Expo 2020 Dub... | 1 |
| 1110 | Seven years ago , they started war against Yem... | -1 |
| 1111 | BREAKING: Ahead of Israel 🇮🇱 Day at the DubaiE... | -1 |
| 1112 | 🔴#UAE: Al-Mayadeen sources: The air movement i... | -1 |
| 1113 | #BREAKING: Ahead of #Israel Day at the #DubaiE... | -1 |
| 1114 | This piece totally touched my heart the perfec... | 1 |
| 1115 | Sithini istory sale #DubaiExpo guys? Did we re... | 0 |
| 1116 | Blowing and Connecting Minds . . . Learning ab... | 0 |
| 1117 | What a performance by Khumariyaan in love Duba... | 1 |
| 1118 | While we wait on video, some transcript snippe... | 0 |
| 1119 | Dubai expo is still on going, it's such a beau... | 1 |
| 1120 | Taking A Road Trip From Dubai To Khasab By Car... | 0 |
| 1121 | CEO Clubs Network is proud to announce its Cou... | 1 |
| 1122 | We continue to build the first professional NF... | 0 |
| 1123 | Yesterday we warmly welcomed @Malala to our #S... | 1 |
| 1124 | y #uea h please #DubaiExpo2020 \ni believed U ... | 0 |
| 1125 | y #uea h please #DubaiExpo2020 \ni believed U ... | 0 |
| 1126 | VIDEO:\nPrime Minister, @EdNgirente officiates... | 0 |
| 1127 | @insightssuccess Hey there, we are loving the ... | 1 |
| 1128 | This is a call for Innovators & BPO Practi... | 0 |
| 1129 | 😲 The Incredible @Cristiano made a kid's dream... | 1 |
| 1130 | Infused yourself to a different world of cultu... | 1 |
| 1131 | A short video of the SA stall at the #DubaiExp... | 0 |
| 1132 | Cristiano Ronaldo received Globe Soccer's Top ... | 1 |
| 1133 | A collaboration between #DubaiExpo2020 and Car... | 0 |
| 1134 | Five breathtakingly talented street artists 🎨👨... | 1 |
| 1135 | I can't help but feeling that #southafrica cou... | -1 |
| 1136 | The ongoing $7bn #DubaiExpo2020 is a mere plat... | -1 |
| 1137 | The #DubaiExpo2020 is a groundbreaking event ... | 1 |
| 1138 | This has been a great event and Respiratory In... | 1 |
| 1139 | @King2014David @Magda_Wierzycka What a disgrac... | -1 |
| 1140 | .Join us at #DubaiExpo2020 as @ECA_SRO_SA,#Mau... | 0 |
| 1141 | Thanks @tradegovuk for drinks at #dubaiexpo2... | 1 |
| 1142 | Here is the list Titanium sponsors for #DubaiE... | 0 |
| 1143 | Thank whoever for half-baked mercies! \n\nLook... | 0 |
| 1144 | Chef Vikas Khanna unveils new book from India ... | 1 |
| 1145 | ✨ About today ✨\n#Expo2020 https://t.co/tJPZQs... | 1 |
| 1146 | @drshamamohd Here are some virtual glimpses of... | 1 |
| 1147 | @GailAllan15 @Tourism_gov_za @LindiweSisuluSA ... | -1 |
| 1148 | #NSTnation Zuraida, who is a strong advocate o... | 1 |
| 1149 | Another victory by Pakistan!\n\nPakistan has w... | 1 |
| 1150 | Opening at GTR MENA 2022, our Keynote speaker,... | 0 |
| 1151 | Celebrating Australia day with a wonderful di... | 1 |
| 1152 | At Expo 2020 Dubai, a portion of the world’s l... | 0 |
| 1153 | Pakistan has won a gold medal in the World Sta... | 1 |
| 1154 | Uganda has 53% of the World’s Gorilla Populati... | 1 |
| 1155 | Prominent Pakistani businessman and philatelis... | 0 |
| 1156 | Wow , I am kind of lost for words how quickly ... | 1 |
| 1157 | A delegation from Italy’s Edisu Piemonte Unive... | 1 |
| 1158 | Houthi spokesman Yahya Saree openly threatens ... | -1 |
| 1159 | Targeting the #DubaiExpo2020 would be a signif... | -1 |
| 1160 | The world’s greatest show brings friends toget... | 0 |
| 1161 | Part of the world’s largest Holy Quran was rec... | 1 |
| 1162 | #DubaiExpo #KurdistanWeek \n\nThis week @expo2... | 1 |
| 1163 | 🤣 I assume somebody got paid millions for thi... | 1 |
| 1164 | The unveiling of a part of the world's largest... | 1 |
| 1165 | The unveiling of a part of the world's largest... | 1 |
| 1166 | Was fortunate to be a part of the unveiling o... | 1 |
| 1167 | Expo 2020’s participating universities use it ... | 0 |
| 1168 | #Day 05 - Eminent Voices\n\nDr. Bobby Jose, MB... | 0 |
| 1169 | Thank you for the positive response and encour... | 1 |
| 1170 | Tonight on the show we will show you how Kenya... | 0 |
| 1171 | What an amazing experience at Dubai Expo 2020.... | 1 |
| 1172 | Amazing!👏🤗🎤🎹 @SamiYusuf #Live #DubaiExpo #trad... | 1 |
| 1173 | when #Khumariyaan performing how audience is n... | -1 |
| 1174 | Best song ever #ForTrueLover\nIt's really very... | 1 |
| 1175 | Uganda’s participation in the #DubaiExpo2020 w... | 1 |
| 1176 | Ronald accept Globe Soccer to scorer award >... | 0 |
| 1177 | Cristiano Ronaldo is in Dubai to receive Globe... | 1 |
| 1178 | Cristiano Ronaldo accepts Globe Soccer's Top S... | 1 |
| 1179 | Cristiano Ronaldo accepts Globe Soccer's Top S... | 0 |
| 1180 | #Rwanda National Day at #DubaiExpo2020.\nGet t... | 0 |
| 1181 | What an awesome experience \n#DubaiExpo #Dubai... | 1 |
| 1182 | https://t.co/pv5E9G6PWm\n\nPlease visit this l... | 1 |
| 1183 | Celebrate @Expo2020Dubai at the #JLT Park with... | 1 |
| 1184 | @Dragon_Wanderer Wow golden temple of Amritsar... | 1 |
| 1185 | #Dubai memories from #BurjKhalifa . \n\nVisiti... | 1 |
| 1186 | 🚨 Undersecretary of the Ministry of Informatio... | -1 |
| 1187 | #GovernmentofGB never fails to surprise us wit... | -1 |
| 1188 | But there is another goal--which also benefits... | 0 |
| 1189 | privileged to hear from foreigners that #Pakis... | 1 |
| 1190 | #Universe deserve to visit paradise\nto celebr... | 1 |
| 1191 | Just one more; It was super exciting having th... | 1 |
| 1192 | One of the best venues not to miss when in Dub... | 1 |
| 1193 | 5 Best Pavilions Of Expo 2020 and Why?\n.\nhtt... | 1 |
| 1194 | Amitabh Bachchan singing the song for #Expo202... | -1 |
| 1195 | My #Dubai days. Looking forward to be back the... | 1 |
| 1196 | When you need to support soft image of Pakista... | -1 |
| 1197 | Visited @expo2020singapore. Got some winter Me... | 1 |
| 1198 | 2/3.He made the remarks during Rwanda’s Nation... | 1 |
| 1199 | @AD_GQ Thank you so much my dear friend, we ar... | 1 |
| 1200 | Isaac Herzog visits Expo 2020 Dubai for Israel... | 1 |
| 1201 | celebration kicks off in Abu Dhabi all the way... | 1 |
| 1202 | Award-winner Tarek Yamani is all energy—a meld... | 1 |
| 1203 | This is obscene 7000 dead on a vanity project... | -1 |
| 1204 | Join @SwecareSweden, @SocialDep, Vision Zero C... | 0 |
| 1205 | #Rwanda National Day at the Expo 2020 Dubai wi... | 0 |
| 1206 | @SSPHplus goes to #Expo2020: Pleased to contri... | 0 |
| 1207 | We are pleased to welcome our distinguished gu... | 1 |
| 1208 | South Africa's stand at EXPO2020 Dubai — judge... | 0 |
| 1209 | What a magical week with @UN @TheGlobalGoals E... | 1 |
| 1210 | A pleasure to have UN Resident Coordinator for... | 0 |
| 1211 | It was a great pleasure to meet with Sheikh Na... | 1 |
| 1212 | If you are at @expo2020dubai, join us at 3pm f... | 0 |
| 1213 | Surat zari is a unique textile form of #Surat ... | 1 |
| 1214 | Keep watching ,most favourite Very popular Mas... | 0 |
| 1215 | We convened inspiring changemakers to share id... | 1 |
| 1216 | #TheBeyondStars Fascinating a precious, magica... | 1 |
| 1217 | We are proud of our Middle Eastern culture, an... | 1 |
| 1218 | #SamiYusuf #Expo2020 ❤️\nWhat a privilege it w... | 1 |
| 1219 | Pakistani activist for female education and No... | 0 |
| 1220 | 🎥 "Connecting beauty with sustainability &... | 1 |
| 1221 | @LGCAXIO It was nice meeting Dominic at the st... | 1 |
| 1222 | This was a wonderful and inspiring experience!... | 1 |
| 1223 | UAE Innovates 2022 kicks off its journey in al... | 1 |
| 1224 | New article: Luxembourg promises international... | 0 |
| 1225 | Two days left till the official launch of #DIP... | 0 |
| 1226 | 10 ways you can help protect the planet.\n\n@e... | 0 |
| 1227 | @kalpana_designs @HiHyderabad @KTRTRS @arvindk... | 1 |
| 1228 | #SaudiVision2030 follows the Sustainable Devel... | 1 |
| 1229 | We are proud: from product vision to a success... | 1 |
| 1230 | We are proud to launch our autonomous self-dri... | 1 |
| 1231 | Lots of innovative life science solutions are ... | 1 |
| 1232 | @Lubna_ae in a small way i l can make a differ... | 1 |
| 1233 | Health Consciousness, Team Building, Networkin... | 1 |
| 1234 | More exclusives from the rooftop with @LayneRe... | 1 |
| 1235 | When women thrive, humanity thrives! like a gi... | 0 |
| 1236 | Pure genius exhibition by artist take a close ... | 1 |
| 1237 | Are you ready to have your mind blown? 🤯\nAmir... | 1 |
| 1238 | 🗓️Are you ready for this week’s activities?\n\... | 1 |
| 1239 | 🗓️Are you ready for this week’s activities?\n\... | 1 |
| 1240 | The Great Indian Recipe Contest has started. A... | 1 |
| 1241 | Visit Sultanate of Oman Pavilion and learn abo... | 0 |
| 1242 | We are within. \nDubai 2020 EXPO.\n\nJust like... | 0 |
| 1243 | The Great Indian Recipe Contest has started. A... | 0 |
| 1244 | Are you ready for a breathtaking trip? Keep yo... | 1 |
| 1245 | Get ready for Wonderland!🔥A snippet of what to... | 1 |
| 1246 | #Dubai’s economy to take a massive dip in 2022... | -1 |
| 1247 | 15 years and counting! 🥳 LeasePlan UAE celebra... | 1 |
| 1248 | Expo 2020 Dubai global goals business forum em... | 0 |
| 1249 | Dubai has reinforced its status as a destinati... | 1 |
| 1250 | Chuckchilli is a unique Mzansi style home made... | 0 |
| 1251 | Come and witness the rich heritage, culture an... | 1 |
| 1252 | @SamiYusuf \n\n❤️💫✨ LOVE THIS ❤️✨💫\n \nFor ful... | 1 |
| 1253 | Come and witness the rich heritage, culture an... | 1 |
| 1254 | Minister of State for Foreign Trade. The deleg... | 1 |
| 1255 | Assistant Minister of Foreign Affairs and Inte... | 1 |
| 1256 | The official ceremony was capped off with a mu... | 1 |
| 1257 | Culturally rich and art loving Pakistan 🇵🇰🇵🇰🇵🇰... | 1 |
| 1258 | Wooden arch is on a roll - and we loved Moriya... | 1 |
| 1259 | British actress Amy Jackson recalls fond memor... | 1 |
| 1260 | President @Isaac_Herzog highlighted the impact... | 1 |
| 1261 | This Performance can make us emotional. The ex... | 1 |
| 1262 | All companies or countries with investments in... | -1 |
| 1263 | inaugurated the Egyptian Genome Project in an ... | 0 |
| 1264 | Assam Tea and Muga Silk are 2 products from th... | 1 |
| 1265 | @tVoiceOfCitizen #UAE will be a conflict zone ... | -1 |
| 1266 | @UAE_Forsan @KensingtonRoyal @expo2020dubai @U... | -1 |
| 1267 | .@ArchDigest: Colombia’s Pavilion at @expo2020... | 1 |
| 1268 | @aljundijournal #UAE will be a conflict zone f... | -1 |
| 1269 | @HindNyadu #UAE will be a conflict zone for a ... | -1 |
| 1270 | @edrormba #UAE will be a conflict zone for a f... | -1 |
| 1271 | @LMMiddleEast @OmranAlhammadi_ #UAE will be a ... | -1 |
| 1272 | New Dubai Vlog Check it out here 👇\n\n#dubai #... | 0 |
| 1273 | #Rwanda National Day is almost here! \n\nTune ... | 1 |
| 1274 | @hamzaxofficial #UAE will be a conflict zone f... | -1 |
| 1275 | @halimalmhiri #UAE will be a conflict zone for... | 0 |
| 1276 | :::TODAY:::\n#Rwanda @Expo2020Dubai\n#Expo2020... | 0 |
| 1277 | #UAE not safe anymore #Emirates #Expo2020 #D... | -1 |
| 1278 | Live@Expo: Belarus, Samoa, and Saint Lucia Pav... | 0 |
| 1279 | We salute the Architects of Modern India and t... | 1 |
| 1280 | This art form is made to show beautiful illust... | 1 |
| 1281 | India promoting Kashmir in #DubaiExpo #dubaiex... | 0 |
| 1282 | #CROWNSUP! Phenomenal dance group The Royal Fa... | 1 |
| 1283 | :::TODAY:::\n#Rwanda @Expo2020Dubai\n#Expo2020... | 0 |
| 1284 | Meet the "faces" of our pavilion - frontliners... | 1 |
| 1285 | It has been years in the planning so it was in... | 1 |
| 1286 | In a world driven by technological innovation,... | 0 |
| 1287 | AIM 2022 Startup welcomes AgroTop, an online p... | 0 |
| 1288 | Congratulations Leading Hero of the Month. Rya... | 1 |
| 1289 | :::TODAY:::\n#Rwanda @Expo2020Dubai\n#Expo2020... | 0 |
| 1290 | Passing through Amazon Jungle.\n@expo2020peru ... | 0 |
| 1291 | Here are the deets on todays show! Tune in at ... | 1 |
| 1292 | #ItalyPavilion expresses #solidarity with #Ton... | 1 |
| 1293 | “We are the people of love."\nDeep emotions! I... | 1 |
| 1294 | @Dubai_Calendar @WeAreAlsayegh https://t.co/WA... | 0 |
| 1295 | The health industry responded to COVID-19 by a... | 0 |
| 1296 | Join for Global Goals week to see more spectac... | 1 |
| 1297 | Here are 10 photographs from @arrahman and @sh... | 1 |
| 1298 | Ecstatic music,Spiritual journey breathtaking ... | 1 |
| 1299 | Expo 2020 to celebrate International Day of Ed... | 1 |
| 1300 | US Commissioner-General Robert Clark & his... | 1 |
| 1301 | The Commissioner-General for Brazil at Expo 20... | 1 |
| 1302 | Need a break? We invite you to the Bosnia and ... | 1 |
| 1303 | Our guests spent some time at our elegant rest... | 1 |
| 1304 | In collaboration with the United States, this ... | 1 |
| 1305 | Then, at Igarapé Hall, the curator of “Beyond ... | 1 |
| 1306 | All #sports #fans were in for a treat because ... | 1 |
| 1307 | Come & discover the stunning Caatinga biom... | 1 |
| 1308 | Expo 2020 Dubai hosted a great discussion on i... | 1 |
| 1309 | We hosted a great discussion on inclusive and ... | 1 |
| 1310 | Don't miss out on mega-talent Jacob Collier, w... | 1 |
| 1311 | Dubai expo run 2020/22\n10km goal accomplished... | 0 |
| 1312 | Here are the highlights of the advanced Master... | 0 |
| 1313 | HE Sarah bint Yousif Al Amiri: I spoke Cluster... | 1 |
| 1314 | Mission Possible\n\nGear used @pentax.photogra... | 1 |
| 1315 | I listening this exuberant masterpiece by hold... | 1 |
| 1316 | #DubaiExpo2020\nIt’s a Grand, beautiful and ey... | 1 |
| 1317 | #Expo2020 Russian Pavilion was amazing! Concep... | 1 |
| 1318 | What an amazing and fascinating place, unlike ... | 1 |
| 1319 | Hanging out at @expo2020dubai with the amazing... | 1 |
| 1320 | Ms. @midianalmeida, celebrated Brasilian singe... | 1 |
| 1321 | #MomentsThatMatter presents to you “Creating o... | 0 |
| 1322 | THE MOST ATTRACTIVE AND COLORFUL FACADE @expo2... | 1 |
| 1323 | Join us for a week of events and activities as... | 1 |
| 1324 | Saudi coffee represents an ancient culture tha... | 1 |
| 1325 | At #Expo2015, #Brazil took home Honorable Ment... | 1 |
| 1326 | Award-winning author #FlavelMonteiro is on #St... | 1 |
| 1327 | Welcomed by Filipino hospitality, James Deakin... | 1 |
| 1328 | Meet Grace, a talented handicraft specialist f... | 1 |
| 1329 | Inspired by AlUla is a collection of retail ce... | 0 |
| 1330 | #Expo2020 #Dubai has resumed school visits and... | 1 |
| 1331 | Congratulations to United World College ISAK J... | 1 |
| 1332 | Shahid Rassam, an award-winning artist and for... | 1 |
| 1333 | Throughout this joyous day, we gave away speci... | 1 |
| 1334 | GM🌗GE-#FAZZA🇦🇪😘1⃣🦅❤️\nWow😍Love the picture of ... | 1 |
| 1335 | Saudi Commissioner General pay respects for th... | 1 |
| 1336 | #DubaiExpo is simply awesome, the arrangements... | 1 |
| 1337 | A promotion which made me awestruck !!!\n@emir... | 1 |
| 1338 | https://t.co/Xokv2QSrNZ\nIncredible arrangemen... | 1 |
| 1339 | The ‘Opportunity Gate’ looking beautiful at su... | 1 |
| 1340 | White sandy beaches, a beautiful coral reef an... | 1 |
| 1341 | Hello, #Dubai! #expo2020 #pakistan https://t.c... | 0 |
| 1342 | @SamiYusuf 🎶🎼\nSo beautiful and so much\nLove ... | 1 |
| 1343 | The #SaudiArabia Pavilion presents timeless me... | 1 |
| 1344 | A beautiful design at the Dubai expo.\n#expo20... | 1 |
| 1345 | #Repost @samiyusuf\n...\nO you who blame,\nDo ... | 1 |
| 1346 | Sign up for Canon Professional Services and st... | 0 |
| 1347 | Sign up for Canon Professional Services and st... | 1 |
| 1348 | Wow another one of my portfolio at the #DubaiE... | 1 |
| 1349 | Expo 2020 Dubai records 11 million visits with... | 1 |
| 1350 | Participate and share your experience for a ch... | 1 |
| 1351 | UAE: How Dubai became world's best tourist des... | 1 |
| 1352 | The RCA's @HHCDesign Director @RamaGheerawo wi... | 0 |
| 1353 | The ironic food on the table becomes more inti... | 1 |
| 1354 | Great start to the week, we are shooting world... | 0 |
| 1355 | Now is the best time to come to Dubai, why?\n\... | 1 |
| 1356 | More than 10 million visits to @expo2020dubai ... | 1 |
| 1357 | The opening ceremony of Gilgit-Baltistan as th... | 0 |
| 1358 | My first 3km run at Expo2020. Happy to give my... | 1 |
| 1359 | Shukriya Dubai ! One of the best nights of my ... | 1 |
| 1360 | Together at the @expo2020dubai let's make the ... | 1 |
| 1361 | Explore the gateway to the world of future at ... | 1 |
| 1362 | The bliss of Brazil comes to #IndiaPavilion.\n... | 1 |
| 1363 | LIVE! Rosatom Week at #expo2020 is presenting ... | 1 |
| 1364 | We would love to wish you all a Happy Chinese ... | 1 |
| 1365 | India’s tourism sector shines bright at @expo2... | 1 |
| 1366 | #ICYMI As part of #InternationalDayofEducation... | 0 |
| 1367 | Capable of sorting 240 tonnes of multiple wast... | 0 |
| 1368 | Today is #Luxembourg Day @expo2020dubai 🎆\nWe... | 1 |
| 1369 | The most important day for #ElSalvador has com... | 1 |
| 1370 | Explore a range of events and activities at th... | 1 |
| 1371 | Education is the passport to our future and th... | 1 |
| 1372 | Begin a new age of possibilities and celebrate... | 1 |
| 1373 | Meet us at #Expo2020 in Dubai to celebrate Rwa... | 1 |
| 1374 | Rwanda will celebrate it’s National Day on 1st... | 1 |
| 1375 | @Ksayinzoga, CEO of @BRDbank, discussing gende... | 1 |
| 1376 | To celebrate his country’s national day, HE Mo... | 1 |
| 1377 | We cannot contain our excitement! 🤩 We look fo... | 1 |
| 1378 | Today we are excited to celebrate Luxembourg ... | 1 |
| 1379 | #IndiaPavilion at #Expo2020 #Dubai yesterday ... | 1 |
| 1380 | If you believe you are an expert at SDGs and h... | 1 |
| 1381 | #IndiaPavilion at @expo2020dubai celebrated ‘#... | 1 |
| 1382 | #IndiaPavilion at #Expo2020 #Dubai yesterday c... | 1 |
| 1383 | India Pavilion at #Expo2020 Dubai yesterday c... | 1 |
| 1384 | In celebration of his country’s national day, ... | 0 |
| 1385 | Celebration of #ParakramDiwas, #IndiaPavilion ... | 1 |
| 1386 | Do you want to see what happens in the Swedish... | 0 |
| 1387 | Highlights of Republic of Singapore’s National... | 1 |
| 1388 | The #UAEPavilion celebrated the National Day o... | 1 |
| 1389 | First impressions from the Luxembourg National... | 1 |
| 1390 | Expo 2020’s UK National Day to have a Royal vi... | 0 |
| 1391 | The #IndiaPavilion and #BrasilPavilion both ce... | 1 |
| 1392 | #ARRahman #KhatijaRahman #DubaiExpo2020\nthe l... | 1 |
| 1393 | What India shows at #DubaiExpo and what we sho... | 0 |
| 1394 | Enjoy the freedom of movement with Bharat Thak... | 1 |
| 1395 | The winners of the India-Sweden Healthcare Inn... | 1 |
| 1396 | Congratulations on successful representation o... | 1 |
| 1397 | 🔔We are delighted to have been present at this... | 1 |
| 1398 | Congratulations to #Kazakhstan for the great p... | 1 |
| 1399 | Congratulations Expo 2020 Dubai Employees of t... | 1 |
| 1400 | This was my first time to watch Korea's tradit... | 1 |
| 1401 | Expo 2020 Dubai to see India’s Jammu & Kas... | 0 |
| 1402 | Additionally, in order to bring Indian Heritag... | 1 |
| 1403 | His Highness Sheikh Mohammed bin Rashid meets ... | 0 |
| 1404 | Discover on the esplanade our new photo exhibi... | 1 |
| 1405 | Welcome To Dubai:\nThe Future Starts Here @exp... | 0 |
| 1406 | We are delighted to host our session with @Pre... | 1 |
| 1407 | So delighted to have spent time with our Zambi... | 1 |
| 1408 | The Pakistan Pavilion at Expo2020 would be del... | 1 |
| 1409 | The "dynamic role played by Minister @LindiweS... | 1 |
| 1410 | #IndiaPavilion's one of the most dynamic perfo... | 1 |
| 1411 | Basically a fancy spaza shop with no aircon th... | -1 |
| 1412 | I like all pavilions but UAE , Saudi and Czec... | 1 |
| 1413 | Today we are featured in the Jamaica Gleaner f... | 1 |
| 1414 | #LittleAngelsOfKorea #DubaiExpo #RepublicOfKor... | 1 |
| 1415 | Empower employees for success with step-by-ste... | 1 |
| 1416 | #PrinceWilliam will visit the United Arab Emir... | 0 |
| 1417 | Are you at @expo2020dubai ?\nCome and enjoy ou... | 1 |
| 1418 | We're about half way through @Expo2020 Dubai a... | 1 |
| 1419 | #Travel dilemma: Can't make up my mind for the... | 0 |
| 1420 | Elias Martins, Brazil Commissioner-General at ... | 1 |
| 1421 | Here is a glimpse of this morning’s Expo 2020 ... | 1 |
| 1422 | @expo2020dubai Thx for the task! I was at #ex... | 1 |
| 1423 | Black Eyed Pea land in Dubai. I was lucky enou... | 1 |
| 1424 | Expo love. Can't get enough of this place \n#e... | 1 |
| 1425 | His Highness Sheikh Mohamed bin Zayed Al Nahya... | 1 |
| 1426 | The growth is mainly due to the Expo 2020 exhi... | 1 |
| 1427 | #China pavilion at @expo2020dubai starts celeb... | 1 |
| 1428 | We take you behind the scenes of the kitchen o... | 1 |
| 1429 | Don’t forget to be a part of our National Day ... | 1 |
| 1430 | Super excited to be at the @expo2020dubai toda... | 1 |
| 1431 | Excited @UOW team heading out tomorrow #Expo2... | 1 |
| 1432 | .@UOW team Excited to be heading to #Dubai to ... | 1 |
| 1433 | 'Unveiling opportunities of #GB' our exciting ... | 1 |
| 1434 | Immerse yourself in sustainable technology. Fe... | 1 |
| 1435 | Another exciting week @expo2020dubai comes to ... | 1 |
| 1436 | Another exciting week @expo2020dubai comes to ... | 1 |
| 1437 | Italy's is the favourite Pavilion for those ha... | 1 |
| 1438 | Embark on an exciting journey and explore Expo... | 1 |
| 1439 | Embark on an exciting journey and explore Expo... | 1 |
| 1440 | 20 exquisite #ODOP products from across the le... | 1 |
| 1441 | Dubai is hosting the greatest world's fair yet... | 1 |
| 1442 | Gujarat has given India a great heritage in em... | 1 |
| 1443 | Gujarat has given India a great heritage in em... | 1 |
| 1444 | @drshamamohd The description I heard was that ... | -1 |
| 1445 | New Zealand to host a fantastic live show at @... | 1 |
| 1446 | The models displayed are fantastic at Dubai Ex... | 1 |
| 1447 | At this fascinating World Majlis; ‘Extending t... | 1 |
| 1448 | At this fascinating World Majlis, “Extending t... | 1 |
| 1449 | #Women throughout history around the world hav... | 1 |
| 1450 | Women throughout history have been champions o... | 0 |
| 1451 | #Expo2020 USB For Fast Charger Charging Cable ... | 0 |
| 1452 | Visiting #Dubai soon? Make sure to check out o... | 1 |
| 1453 | The session with @Ksayinzoga CEO of @BRDbank i... | 0 |
| 1454 | 10k run!! First one of the year and after a lo... | 1 |
| 1455 | Storytelling is an art. And @DaniaDroubi is a ... | 1 |
| 1456 | @drshamamohd As usual, you both seem to seeing... | 0 |
| 1457 | Less than 12 hours until the 3 day event "Mobi... | 0 |
| 1458 | Tune in for today's free International Day of ... | 1 |
| 1459 | The Expo 2020 Kids’ Camp allows children to le... | 1 |
| 1460 | Free WiFi @ Expo2020 Dubai. \nJust accept term... | 1 |
| 1461 | 24-hour #LiveEvent #ActNowVR World Premiere 36... | 1 |
| 1462 | It's free to attend with your Expo 2020 ticket... | 1 |
| 1463 | Goa Showcases Investment-friendly Policies to ... | 0 |
| 1464 | 🗓️ Tomorrow 13:00 CET online: Join @JordanKlar... | 1 |
| 1465 | Goa Showcases Investment-friendly Policies to ... | 0 |
| 1466 | #GoaDiary_Goa_News_External Goa showcases in... | 1 |
| 1467 | Post Edited: Goa Showcases Investment-friendly... | 0 |
| 1468 | Goa Showcases Investment-friendly Policies to ... | 0 |
| 1469 | Goa Showcases Investment-friendly Policies to ... | 0 |
| 1470 | - Goa Showcases Investment-friendly Policies t... | 1 |
| 1471 | Goa Showcases Investment-friendly Policies to ... | 0 |
| 1472 | Goa Showcases Investment-friendly Policies to ... | 0 |
| 1473 | Goa Showcases Investment-friendly Policies to ... | 1 |
| 1474 | Goa Showcases Investment-friendly Policies to ... | 1 |
| 1475 | @ArabNewsjp @tanaka_tatsuya @expo2020_jp Super... | 1 |
| 1476 | Goa Showcases Investment-friendly Policies to ... | 0 |
| 1477 | JOIN #GEM #GlobalEntrepreneurshipMonitor \n\nA... | 0 |
| 1478 | I couldn’t travel for #ExpoLive #GlobalGoalsWe... | 1 |
| 1479 | Glad to welcome this new exhibition by Swiss c... | 1 |
| 1480 | The crowning glory of #Expo2020... Don't miss ... | 1 |
| 1481 | The world's largest, aluminium and gold-plated... | 0 |
| 1482 | Good morning #DubaiExpo https://t.co/SKT9XR1Lyn | 0 |
| 1483 | Just watched the @ParrisGoebel voices of youth... | 1 |
| 1484 | Over 200 Indian #startups get opportunity to s... | 1 |
| 1485 | Have good event my friends \nGood news for me ... | 1 |
| 1486 | Korea Team Performance \nGood one @expo2020dub... | 1 |
| 1487 | LIVE! The grand finale of Rosatom Week at #exp... | 1 |
| 1488 | In 1 hr! The grand finale of Rosatom Week at #... | 1 |
| 1489 | Innovators should not miss this great opportun... | 1 |
| 1490 | Don’t miss this great opportunity: \n#Rwanda ’... | 1 |
| 1491 | #Expo2020Dubai focuses on #education this week... | 1 |
| 1492 | #TeamTataCommunications is now officially at #... | 1 |
| 1493 | Today we are excited to celebrate Rwanda 🙌\nD... | 1 |
| 1494 | He was talking about beaches in Australia and ... | 1 |
| 1495 | A great event to be #dubai #expo2020 https://t... | 1 |
| 1496 | It was a great honour to have H.E @HHichilema ... | 1 |
| 1497 | Loved #expo2020 in Dubai. #UN SDGs framing bu... | 1 |
| 1498 | The @expo2020dubai @cartier #WomensPavilion co... | 1 |
| 1499 | #DubaiExpo2020 - The Greatest Show? - BBC Clic... | 1 |
| 1500 | Expo 2020 Dubai celebrates Lunar New Year at t... | 1 |
| 1501 | @Meghna_venture @drshamamohd Basically She Is ... | -1 |
| 1502 | Happy customer review of our Dubai Expo tour i... | 1 |
| 1503 | Today we are happy to introduce you to Thomas ... | 1 |
| 1504 | 'Make A Wish' Makes Two Siblings Happy in the ... | 1 |
| 1505 | In marking the State of Israel's National Day ... | 1 |
| 1506 | The real happiness is when you do what you wan... | 1 |
| 1507 | Play your part in making people happier at #Ex... | 1 |
| 1508 | The #KuwaitPavilion at #Expo2020Dubai is happy... | 1 |
| 1509 | Cambodia pavilion. Peace and harmony. \n#expo2... | 1 |
| 1510 | Which platforms are helping to democratise inn... | 0 |
| 1511 | At “Helping Women Thrive,” we gathered women i... | 1 |
| 1512 | Which platforms are helping to democratise inn... | 0 |
| 1513 | #Expo2020 #Dubai celebrated an important Emira... | 1 |
| 1514 | Part of the world’s largest Holy Quran was rec... | 1 |
| 1515 | World's Largest Holy Quran to go on display at... | 1 |
| 1516 | 1/2 Morocco has become an important economic h... | 1 |
| 1517 | Director General, Expo 2020 Dubai, at an offic... | 1 |
| 1518 | Going to explore this impressive website at lu... | 0 |
| 1519 | Just added number 17 to the Shapes from Expo20... | 0 |
| 1520 | @SBIDHyd Your account is impressive! To find m... | 1 |
| 1521 | Ahead of Rwanda’s National Day, Minister @Muso... | 1 |
| 1522 | Today, @Princymthombeni was one of the speaker... | 0 |
| 1523 | ⚛️Watch @SamaBilbao's speech at @RosatomGlobal... | 1 |
| 1524 | Empowering & emancipating the marginalized... | 1 |
| 1525 | #Armenia’s #NationalDay will be held at #Dubai... | 1 |
| 1526 | 😲 The Incredible @Cristiano\nat the @expo2020d... | 1 |
| 1527 | Apply today for the opportunity to showcase yo... | 1 |
| 1528 | Mr. Shubham Gautam, Director of Gfarms Private... | 0 |
| 1529 | Celebrating Namibian Tourism!\nOver the next t... | 1 |
| 1530 | Mr. Gaurav Shah, Co-founder and CIO of Communi... | 0 |
| 1531 | The emerging innovation industry of Angola's P... | 0 |
| 1532 | 🇨🇭 Switzerland values research! \n\nCheck out ... | 1 |
| 1533 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 1534 | Honoured to be interviewed live by @shahindadi... | 1 |
| 1535 | A little over 2 months more to go!\nDon’t miss... | 0 |
| 1536 | Julie Russell - Business Development Manager t... | 0 |
| 1537 | Respiratory Innovation Wales are thrilled to b... | 1 |
| 1538 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 1539 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 1540 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 1541 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 1542 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 1543 | Each country makes sure they transport you to ... | 1 |
| 1544 | A masterpiece design. That's is all about, inn... | 1 |
| 1545 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 1546 | Don't miss the largest gathering for Jordanian... | 1 |
| 1547 | The Living Laboratory was proud to join Scotla... | 1 |
| 1548 | Veehive is showcasing at the Innovation bus by... | 1 |
| 1549 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 1550 | As part of the #Expo2020 #GlobalGoalsWeek, we ... | 0 |
| 1551 | Join us in conversation with industry leaders ... | 1 |
| 1552 | The Finland pavilion @expo2020dubai showcases ... | 1 |
| 1553 | The Finland pavilion @expo2020dubai showcases ... | 1 |
| 1554 | Truly inspiring time at the @expo2020dubai #Du... | 1 |
| 1555 | Expo 2020 Dubai convened inspiring change make... | 1 |
| 1556 | Now live from @expo2020dubai!\nOur Scientific ... | 0 |
| 1557 | Inspiring people to take meaningful action, br... | 1 |
| 1558 | Expo 2020 Dubai has been global stage for SDGs... | 1 |
| 1559 | How do we use storytelling to humanise the SDG... | 0 |
| 1560 | Islamic values can be an integral source for s... | 0 |
| 1561 | Recognition is priceless! #reemalhashimy #expo... | 0 |
| 1562 | We are excited to welcome @cpfjo as a communit... | 1 |
| 1563 | The workshop specifically addressed challenges... | 1 |
| 1564 | Women are leading the charge towards tomorrow ... | 0 |
| 1565 | Women are leading the charge towards tomorrow.... | 1 |
| 1566 | Ansar allah warns #DubaiExpo in crosshairs if ... | -1 |
| 1567 | Legendary & epic & rare 💎\nA concert b... | 1 |
| 1568 | My friend, rise up and see\n\nThere’s a light ... | 1 |
| 1569 | An event that considers what types of schools ... | 0 |
| 1570 | @marchiarten Actually I woudn't call it law bu... | 1 |
| 1571 | Find a peaceful haven full of surprises at the... | 1 |
| 1572 | Am in love with the lady that interviewed CR7 ... | 1 |
| 1573 | We love you too bro\n#Expo2020 #Expo2020Dubai ... | 1 |
| 1574 | "I think that an idea cannot grow if the facil... | 0 |
| 1575 | Our first release this year is the official an... | 1 |
| 1576 | I absolutely LOVE this!\n\nWe are catching vib... | 1 |
| 1577 | After utter failure of OLA/Uber drivers & ... | -1 |
| 1578 | Bro I love you both @HamdanMohammed @Cristiano... | 0 |
| 1579 | @drshamamohd After utter failure of OLA/Uber d... | 1 |
| 1580 | After utter failure of OLA/Uber drivers & ... | -1 |
| 1581 | @drshamamohd I don't know what they have got i... | -1 |
| 1582 | Reasons to love #Expo2020 :\n\n1. The internat... | 1 |
| 1583 | Earping at #Expo2020 \n\n#WynonnaEarp #BringWy... | 0 |
| 1584 | LOVE desires that this secret should be reveal... | 1 |
| 1585 | Loved visiting #Expo2020 - a wonderful concoct... | 1 |
| 1586 | “We are the people of love.”\n \nMawwal is a v... | 1 |
| 1587 | My lovely princess 👑😍\n#البرنسيسة #ديانا_حداد ... | 1 |
| 1588 | Discover ideas and innovations for a more sust... | 1 |
| 1589 | #Expo2020Dubai received 11.6 million visitors ... | 1 |
| 1590 | Join us at the front Courtyard of the Pakistan... | 1 |
| 1591 | Join us at the front Courtyard of the Pakistan... | 1 |
| 1592 | Join us at the Pakistan Pavilion to explore th... | 0 |
| 1593 | - Why not develop a smart device that count nu... | 0 |
| 1594 | Join us at the Pakistan Pavilion to explore th... | 0 |
| 1595 | Join us at the Pakistan Pavilion to explore th... | 0 |
| 1596 | Date: 31st January 2022\n\nTime: 3:00pm - 4:00... | 1 |
| 1597 | @drshamamohd I visited the Indian pavellion af... | -1 |
| 1598 | okay 6 drinks in and im finally starting to fe... | 1 |
| 1599 | @peace4_kashmir @Pharmacrobat @UN @guardian @S... | -1 |
| 1600 | Technology: DSO-Innovation Hub to help Indian ... | 0 |
| 1601 | Big experiences for the little ones 🤩\n\nFrom ... | 1 |
| 1602 | @ItalyExpo2020 Thanks for one if the wonderful... | 1 |
| 1603 | Me trying #indian popular song from #pushpa\n... | 1 |
| 1604 | Don’t forget to visit Birko in the Food Safety... | 1 |
| 1605 | At #Expo2015, the #Kuwait #Pavilion received H... | 1 |
| 1606 | The Kenya Pavilion honours Zahro Sadova who is... | 1 |
| 1607 | Close to nature at Brazil pavilion. \n#expo202... | 0 |
| 1608 | Ole!!!😃💃🏼💥\nMost fun happens when there's no t... | 1 |
| 1609 | Had fun at the #Expo2020Run this morning! Firs... | 1 |
| 1610 | A panel discussion highlighting community led ... | 0 |
| 1611 | @Philipmarks87 Watched a bunch of old MAGA’s m... | 0 |
| 1612 | @M4dlyHatting THERES BACKWARDS ROCKIN ROLLER C... | 1 |
| 1613 | The #Mexico Pavilion at #Expo2015 won Honorabl... | 1 |
| 1614 | I appreciate everyone's enthusiasm, and love f... | 1 |
| 1615 | DONALD HAS RETURNED TO MEXICO AND \nJOY & ... | 1 |
| 1616 | @USAExpo2020 \n“Life, Liberty and the Pursuit ... | 0 |
| 1617 | @SuperWeenieHtJr No they should add a new and ... | -1 |
| 1618 | No idea why, but I've always loved the feeling... | 1 |
| 1619 | There are countless experiences across this la... | 1 |
| 1620 | We are waiting for you 🎊😍\n\n#yearofthefiftiet... | 1 |
| 1621 | @SuperWeenieHtJr I would reckon, they’ll just ... | 1 |
| 1622 | 'Donald Duck Meet and Greet Returns to Mexico ... | 1 |
| 1623 | We appreciate the visit of the US Commissioner... | 1 |
| 1624 | @NemavholaIrene @MmusiMaimane Were you actuall... | 1 |
| 1625 | The concept behind our pavilion, is that it co... | 1 |
| 1626 | Thanks @MaherNasserUN and @DrDenaAssaf for vis... | 1 |
| 1627 | Don’t miss out on the NEW menu items at the Si... | 1 |
| 1628 | Do these buildings remind you of the Singapore... | 0 |
| 1629 | Slovenia's 🇸🇮 #Expo2020Dubai pavilion is a "fl... | 1 |
| 1630 | They were accompanied by heroes who have been ... | 1 |
| 1631 | All you need to do is go see South Africa's Pa... | -1 |
| 1632 | Slovenia's forested Expo pavilion is shaded by... | 0 |
| 1633 | Wonders of a non-literal transparency.\n\nAn a... | 1 |
| 1634 | Slovenia's forested Expo pavilion is shaded by... | 0 |
| 1635 | CNN: Slovenia's forested @expo2020dubai is sha... | 0 |
| 1636 | Slovenia’s forested Expo pavilion is shaded by... | 0 |
| 1637 | Slovenia’s forested Expo pavilion is shaded by... | 1 |
| 1638 | Slovenia’s forested Expo pavilion is shaded by... | 0 |
| 1639 | @null Slovenia's forested Expo pavilion is sha... | 0 |
| 1640 | @null Slovenia's forested Expo pavilion is sha... | 0 |
| 1641 | Slovenia's forested Expo pavilion is shaded by... | 0 |
| 1642 | Slovenia's forested Expo pavilion is shaded by... | 0 |
| 1643 | Slovenia's forested Expo pavilion is shaded by... | 0 |
| 1644 | Slovenia's forested Expo pavilion is shaded by... | 0 |
| 1645 | Slovenia's forested Expo pavilion is shaded by... | 0 |
| 1646 | @AnimalsHolbox: Slovenia's forested Expo pavil... | 0 |
| 1647 | @Kevidently @parkscopejoe I wish they could do... | 1 |
| 1648 | For those who don't know, there are only a few... | 1 |
| 1649 | UAE Innovates 2022 begins with month-long even... | 1 |
| 1650 | Lady at @Aquafina DROP at @expo2020dubai tells... | 1 |
| 1651 | The second edition of Expo Run is a huge succe... | 1 |
| 1652 | Our Social Enterprise @LinkYourPurpose is feat... | 0 |
| 1653 | #Italy's Pavillion at #Expo2020 is one of the ... | 1 |
| 1654 | Did you participate in the 3rd phase of #EnRou... | 0 |
| 1655 | Our team will be at Expo 2020 this week delive... | 0 |
| 1656 | Join the making of a new world. \n\nBook our E... | 0 |
| 1657 | Ukraine pavilion #Expo2020 https://t.co/80rDm4... | 0 |
| 1658 | Join Us Today At #Expo2020 for a seminar on: "... | 0 |
| 1659 | #Estonia has always been a firm believer in #P... | 0 |
| 1660 | Join Us Today At #Expo2020 for a seminar on: "... | 0 |
| 1661 | In 1 hr! MSZ Machinery Manufacturing Plant vir... | 0 |
| 1662 | Want to take stunning shots at @expo2020dubai?... | 1 |
| 1663 | Want to take stunning shots @expo2020dubai? He... | 1 |
| 1664 | NYE was bought to life at The Al Wasl Dome @ E... | 1 |
| 1665 | Starting a new project today ✨ #dubai #uae #ar... | 1 |
| 1666 | Before the curtains fall at Dubai Expo 2020, m... | 1 |
| 1667 | Honored and humbed to participate in a landmar... | 1 |
| 1668 | “once you occupy a leadership space, you have ... | 0 |
| 1669 | Expo 2020 Dubai transforms into a marathon tra... | 0 |
| 1670 | 👏🥳Kudos Penang! The Penang State Government ha... | 1 |
| 1671 | #CC2020Dubai #GoInternational\nToday, the @ccl... | 0 |
| 1672 | Every night at #Expo2020 #Dubai, the Al Wasl P... | 1 |
| 1673 | Roberto Carlos, Alvaro Arbeloa and Iker Casill... | 0 |
| 1674 | If you are 13-18 yrs old with a drive for sust... | 1 |
| 1675 | EXPO 2020 Dubai here we come! Get complimentar... | 0 |
| 1676 | 1/2 Our official partner, @MasenOfficiel, part... | 1 |
| 1677 | Riyadh| A two-day #Saudi-#Sweden event at #Exp... | 0 |
| 1678 | Be it our Sustain-a-Livity tree planting initi... | 1 |
| 1679 | Expo 2020 adventures…Explore the awe-inspiring... | 1 |
| 1680 | Expo 2020 adventures…Explore the awe-inspiring... | 1 |
| 1681 | SL has a big mess in their priorities. We are ... | -1 |
| 1682 | Watch their spectacular performance on 4 Febru... | 1 |
| 1683 | Investment opportunities in Saudi Arabia and S... | 0 |
| 1684 | Invited to visit the Expo 2020 Dubai Slovenia ... | 0 |
| 1685 | Musical extravagant by @arrahman x @shekharkap... | 1 |
| 1686 | Hi All,\n\nWe know sometimes it is hard to kee... | 1 |
| 1687 | Join us this Wednesday from #Expo2020 in Dubai... | 0 |
| 1688 | Come be a part of our flag hoisting ceremony a... | 0 |
| 1689 | The wait is over! \nWe will be performing live... | 1 |
| 1690 | MATI Consult, a service-oriented firm with hea... | 1 |
| 1691 | The #CanadaPavilion at @expo2020dubai introduc... | 1 |
| 1692 | #GlobalGoals Week is coming to an end after re... | 1 |
| 1693 | Have you visited the UAEU Pavilion at Expo 202... | 1 |
| 1694 | Expo 2020 Dubai’s Pakistan pavilion hosts a fi... | 0 |
| 1695 | Abela's decision to cancel a long-awaited trip... | -1 |
| 1696 | Ending #GlobalGoals week at #Expo2020 #Dubai o... | 1 |
| 1697 | This week @essity will be supporting the @Swec... | 0 |
| 1698 | #armenianbreakingnews\n#Armenian stand at #Dub... | -1 |
| 1699 | The Jamaica Pavilion receives over 84,000 in t... | 1 |
| 1700 | Happy to see artists from GB in #DubaiExpo. Ex... | -1 |
| 1701 | KP business community protest lack of represen... | -1 |
| 1702 | It is shame that their is no single woman part... | -1 |
| 1703 | @drshamamohd SHAME ON YOU for spreading lies. ... | -1 |
| 1704 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | 1 |
| 1705 | It's beautiful to see the flag of Israel next ... | 1 |
| 1706 | SA's laughable spaza shop "display" at the glo... | -1 |
| 1707 | @win_about_2_sin LOL I had some crackpot DM me... | -1 |
| 1708 | In February, head for the City of Lights and t... | 0 |
| 1709 | @drshamamohd Of the four floors, there's just ... | -1 |
| 1710 | Yemen AnsarAllah/Houthi Movement military spok... | -1 |
| 1711 | Trying to listen in to #LHRC but keep losing s... | -1 |
| 1712 | @HMhd202030 Now by @UAEExpo_2020 all Jewish by... | 0 |
| 1713 | Herzog will also visit the #DubaiExpo2020 tomo... | 0 |
| 1714 | Happy Chinese New Year to all our friends in C... | 1 |
| 1715 | #DubaiExpo delays concert after Yemen Houthi t... | -1 |
| 1716 | Houthis spokesperson threatens #DubaiExpo2020.... | -1 |
| 1717 | The technical rider which was not communicated... | -1 |
| 1718 | #ALERT #URGENT #URGENT\nYemeni Armed Forces Sp... | -1 |
| 1719 | At #Expo2020 we show how #EmpoweringMovement f... | 1 |
| 1720 | @cchanniee97 Now I kinda feel sad if ever he s... | -1 |
| 1721 | Today at the Italy Pavilion at #Expo2020 a dis... | 0 |
| 1722 | @MarisePayne @DrSJaishankar @MEAIndia @AusHCIn... | -1 |
| 1723 | 'Health & Weakness Week' at #Expo2020 #Dub... | 0 |
| 1724 | CM Pinarayi Vijayan @vijayanpinarayi received ... | 0 |
| 1725 | Those who are passive sports fans, come and ch... | 1 |
| 1726 | Let's welcome Paul Andrez, Equity Advisor Conn... | 0 |
| 1727 | Join #SAPServices on-site at SAP House Dubai i... | 0 |
| 1728 | Having some jasmine green tea from Foojoy tea.... | 1 |
| 1729 | Our sweet, sweet reporter Amber volunteered to... | 1 |
| 1730 | Today’s business highlights at Expo 2020 Dubai... | 0 |
| 1731 | This is big and disney can’t ignore it anymore... | 1 |
| 1732 | Fighting Stigma : Lunar New Year brings hope ... | 1 |
| 1733 | @DisneyAnimation Build a Colombia pavilion in ... | -1 |
| 1734 | HE @epsycampbell, Vice President of Costa Rica... | 0 |
| 1735 | 📢@EquidemOrg is live!\n\nOur latest report hig... | -1 |
| 1736 | Dirty, hi-carbon fossilfuel plastic/biomass 'e... | -1 |
| 1737 | @TeamSA_Expo2020 ... | 1 |
| 1738 | UK Pavilion at Expo 2020 Dubai - https://t.co/... | -1 |
| 1739 | F&B Pods serving the visitors of @expo2020... | 1 |
| 1740 | There’s only two months left for #Expo2020 and... | -1 |
| 1741 | ** Let’s celebrate 1948 Nakba!! .. \nKilling ... | -1 |
| 1742 | Unfortunately, migrant workers employed at #Ex... | -1 |
| 1743 | My heart vibrating while listening your melodi... | 1 |
| 1744 | Here's an insight into the workshops we held a... | 1 |
| 1745 | Is the #DubaiExpo2020 a showcase of the techno... | 1 |
| 1746 | The project "I'm sorry about the garden" will ... | 0 |
| 1747 | Unfortunately, Corona strikes again. Stay up-t... | -1 |
| 1748 | Between novelty and tradition, classicism and ... | 1 |
| 1749 | His Highness Sheikh Mohammed bin Rashid Al Mak... | 0 |
| 1750 | His Highness Sheikh Mohammed bin Rashid Al Mak... | 0 |
| 1751 | @drshamamohd I agree and I live in Dubai, It i... | -1 |
| 1752 | I endorse the observation. Indian pavilion is ... | -1 |
| 1753 | @drshamamohd What did ur husband ji expect ?\n... | 1 |
| 1754 | @drshamamohd I absolutely agree. It's Modi pav... | -1 |
| 1755 | @drshamamohd What is wrong in showing our PM’s... | -1 |
| 1756 | @mysterious_tri @drshamamohd Very Impressive I... | 1 |
| 1757 | @NaorGilon Sir @IsraelExpoDubai proudly congra... | 1 |
| 1758 | @drshamamohd Its the worst pavilion... modi is... | -1 |
| 1759 | @CDawgVA @AbroadInJapan in case you need to fe... | -1 |
| 1760 | @Israel The Palestine pavilion at #ExpoDubai20... | 0 |
| 1761 | @WDWNT Dude was smoking in the Japan pavilion ... | -1 |
| 1762 | 60 more days to go till the end of World’s Gre... | 1 |
| 1763 | Israeli presidential visit went ahead in spite... | -1 |
| 1764 | this is so stupid why is there an israel pavil... | -1 |
| 1765 | It's Israel 🇮🇱 Day at Expo Dubai 2020!\n\nWhil... | 1 |
| 1766 | @NickJBrumfield It's too early to draw conclus... | -1 |
| 1767 | This year’s commissioner for Kazakhstan's pavi... | 0 |
| 1768 | COUNTY FOCUS - EXPORT AGENDA KE\nHon. Joshua K... | 0 |
| 1769 | https://t.co/akoQqVEF90\nDalal Abu Amna Palest... | -1 |
| 1770 | so so so impressed with @TalabatUAE cloud kitc... | 1 |
| 1771 | #Palestinian singer Dalal Abu Amna has refused... | -1 |
| 1772 | .@Mustafa_Qadri: "The entire international com... | -1 |
| 1773 | The 🇱🇺Pavilion made it into @CosmoMiddleEast :... | 1 |
| 1774 | #Palestinian singer Dalal Abu Amna has refused... | -1 |
| 1775 | Hey people saying they should put Encanto in t... | -1 |
| 1776 | @TheHorizoneer well i mean they can’t do that ... | -1 |
| 1777 | We’re excited to host the SAP Seaports Innovat... | 1 |
| 1778 | Mexico! The pavilion stars and water ride smel... | 1 |
| 1779 | @thatsso_kiki First. Thanks for the reminder o... | 1 |
| 1780 | The Mexico Pavilion stole my heart today along... | 1 |
| 1781 | Can't regret this love @kruzdahypeman\nYou are... | 1 |
| 1782 | @drshamamohd In the Indian pavilion if not Ind... | -1 |
| 1783 | I made sure to visit @expo2020dubai and was ov... | 1 |
| 1784 | The Pakistan Pavilion is happy to announce tha... | 1 |
| 1785 | The Pakistan Pavilion is pleased to announce t... | 1 |
| 1786 | #Palestinian singer \nDalal Abu Amna has refus... | -1 |
| 1787 | India’s beautiful oral music tradition lives o... | 1 |
| 1788 | Wishing you a prosperous, marvelous, blissful ... | 1 |
| 1789 | Kafi Group is attending Gulfood (Sun, Feb 13, ... | 1 |
| 1790 | Jazaa is participating in Gulfood 2022, the wo... | 1 |
| 1791 | SPOTLIGHT: One of the team members that worked... | 1 |
| 1792 | Did you ever do an Aquavit shot in Epcot's Nor... | 1 |
| 1793 | @drshamamohd Your husband should have visited ... | 1 |
| 1794 | If at 4th of February you happen to be at #Dub... | 1 |
| 1795 | In the first of a special two-part podcast epi... | 0 |
| 1796 | The Emconic collection ’s highlights also incl... | 1 |
| 1797 | @LindiweSisuluSA @MYANC @PresidencyZA this is ... | -1 |
| 1798 | HH Sheikh Hamdan bin Mohammed: Today I met wit... | 0 |
| 1799 | Unveiling a multilingual robot at UAEU pavilio... | 1 |
| 1800 | @AmrullahSaleh2 How’s Dubai jigar? \nHave you ... | 1 |
| 1801 | Grab your #Expo2020 tickets to see the VALE ex... | 1 |
| 1802 | Join YouTuber Dhruv Rathee as he explores the ... | 0 |
| 1803 | From enjoying immersive experiences at the Emi... | 1 |
| 1804 | “I am so close, I may look distant.\nSo comple... | 1 |
| 1805 | Our Head of Protocol, Fabiola Cavallini with A... | 1 |
| 1806 | Georgia has some gorgeous silver jewelry … The... | 1 |
| 1807 | It may be one of the small pavilions in #Expo2... | 1 |
| 1808 | #Expo2020 #Dubai #expo Nowadays everything loo... | 0 |
| 1809 | The #GCC Pavilion at #Expo2020 #Dubai offers i... | 1 |
| 1810 | The #GCC Pavilion at #Expo2020 #Dubai holds th... | 0 |
| 1811 | The Pakistan Pavilion at Expo2020 would like t... | 1 |
| 1812 | Join us for a live talk on traditional archite... | 0 |
| 1813 | Presenting the opening ceremony of Gilgit - Ba... | 1 |
| 1814 | ✈️ @Emirates x @Expo2020Dubai \n \n😍 The boys ... | 1 |
| 1815 | Prime Minister of #Spain, visits the #UAE Pavi... | 1 |
| 1816 | College of Medicine and Health Sciences organi... | 0 |
| 1817 | @emirates , the premier partner and official a... | 1 |
| 1818 | Great to see @UOWD President’s name on the w... | 1 |
| 1819 | Day 1 : Swecare together with the Swedish Mini... | 0 |
| 1820 | Day 1 : Swecare together with the Swedish Mini... | 0 |
| 1821 | The Youth Pavilion @expo2020 hosted H.E. Ghann... | 1 |
| 1822 | Did you know that many of us are multilingual ... | 1 |
| 1823 | @JEK_Psych God bless her . Hopefully the Immun... | 0 |
| 1824 | "Governments need to lead, they set the rules.... | 0 |
| 1825 | Expo 2020 Dubai’s Emirates pavilion hosts the ... | 0 |
| 1826 | Come visit us today at the Pakistan Pavilion.\... | 0 |
| 1827 | Come visit the Maldives Pavilion and celebrate... | 1 |
| 1828 | Relationship between humanity and artificial i... | 1 |
| 1829 | Holland pavilion #Expo2020 https://t.co/jSj7zI... | 0 |
| 1830 | Dubai's Minister of Foreign Affairs and Intern... | 0 |
| 1831 | #USAPavilion Youth Ambassadors take the runway... | 0 |
| 1832 | To all foosball fans out there! Don’t miss the... | 1 |
| 1833 | @expo2020_jp I tried to book today at 12 pm an... | -1 |
| 1834 | In Unlimited Space, you’re set to explore the ... | 1 |
| 1835 | #GoGB is the first edition of an #investmentco... | 0 |
| 1836 | The Jamaica Pavilion has welcomed 84,683 visit... | 1 |
| 1837 | Dasman Diabetes Institute participates in the ... | 0 |
| 1838 | #DubaiExpo 2020 #Pakistan pavilion is making s... | 1 |
| 1839 | Welcome to Expo #Dubai 2020 Gilgit-Baltistan, ... | 0 |
| 1840 | Prayed Sonobe Handpan at Afganistan Pavilion D... | 0 |
| 1841 | Prayed Didge at Somalia Pavilion Dubaiexpo2020... | 0 |
| 1842 | Discover Afghanistan at Expo 2020. You can lea... | 1 |
| 1843 | #DubaiExpo: Gombe Governor Visits Nigerian Pav... | 0 |
| 1844 | Watch: Israel celebrates India's Republic Day ... | 1 |
| 1845 | It's the halfway point of Expo 2020 Dubai &... | 1 |
| 1846 | The world’s largest Quran is on display in the... | 0 |
| 1847 | Our very own Dr. Philip Webb is in the line up... | 0 |
| 1848 | Visited with pleasure and honour pavilion “Aze... | 1 |
| 1849 | The Belarus Pavilion at EXPO 2020 congratulate... | 1 |
| 1850 | Al Kaabi :Gabon Pavilion at Expo a space to re... | 0 |
| 1851 | The @ArchMOC Commission is working to document... | 1 |
| 1852 | Greek 🇬🇷 pavilion at the Cairo international B... | 1 |
| 1853 | #Greece is the Country of Honour at the 53rd C... | 1 |
| 1854 | @KashoonLeeza @ForeignOfficePk @mincompk Bhikh... | -1 |
| 1855 | Today I met with Pinarayi Vijayan, Chief Minis... | 1 |
| 1856 | "We have to act on the assumption that we will... | 0 |
| 1857 | Traditional Cultural Performance by Ladakh || ... | 1 |
| 1858 | Traditional Cultural Performance by Ladakh || ... | 1 |
| 1859 | Today I met with Pinarayi Vijayan, Chief Minis... | 1 |
| 1860 | Outside the Sweden Pavilion "The Forest" at Ex... | 0 |
| 1861 | 7th @smartcitiesind expo and 29th @Convergenc ... | 1 |
| 1862 | @vijayanpinarayi @expo2020dubai What is kerala... | -1 |
| 1863 | Kerala Week will begin on February 4 in the In... | 1 |
| 1864 | It’s first February today! Have you registered... | 0 |
| 1865 | Expo 2020 Dubai: India Pavilion to host Kerala... | 0 |
| 1866 | Expo 2020 Dubai: India Pavilion to host Kerala... | 0 |
| 1867 | Dikshu Kukreja, key Architecht of India Pavili... | 1 |
| 1868 | CHECK IN Announcement\nOFFICIAL INDIA PAVILION... | 1 |
| 1869 | CHECK IN Announcement\nOFFICIAL INDIA PAVILION... | 0 |
| 1870 | I am so destined to find the best butter chick... | 1 |
| 1871 | On a session on Medical Value Travel and telem... | 0 |
| 1872 | "This pandemic further strengthened the partne... | 0 |
| 1873 | Expo 2020 Dubai: Sheikh Hamdan visits DP World... | 0 |
| 1874 | #FlyWithIX : Hey #Dubai!\n\nFly with us to Dub... | 1 |
| 1875 | India Pavilion hosts discussion on MedTech sec... | 0 |
| 1876 | Explore the emerging trends at the Wood & ... | 0 |
| 1877 | OpIndia: Congress spokesperson lies about Indi... | -1 |
| 1878 | Manchester City and England midfielder Jack Gr... | 1 |
| 1879 | Honoured to meet H.E. Lee Seok-gu, Republic of... | 1 |
| 1880 | #ASSOCHAM with the support of @DoC_GoI is org... | 0 |
| 1881 | @Meghna_venture @drshamamohd Ummmm.... honey? ... | -1 |
| 1882 | I will be visiting Dubai Expo by the end of th... | -1 |
| 1883 | This sky over the India Gate was a lovely fini... | 1 |
| 1884 | @drshamamohd Why do u find reasons to defame I... | 0 |
| 1885 | @drshamamohd Am here in Dubai for quite some t... | 1 |
| 1886 | #Oum - An amazing mix of hassani, #jazz, #gosp... | 1 |
| 1887 | @getnagu @bahl65 @oldschoolmonk @__Hegde @Neta... | 0 |
| 1888 | @drshamamohd A big lier your husband is. Visit... | 1 |
| 1889 | We were thrilled to visit @IndiaExpo2020 where... | 1 |
| 1890 | @drshamamohd He is lying for sure. Anyway we c... | 1 |
| 1891 | Aster Volunteers conduct Basic Life Support aw... | 1 |
| 1892 | Map of india , Jammu and Kashmeer in Indian pa... | -1 |
| 1893 | In her chronic hate for Modi, the Congress spo... | 1 |
| 1894 | India is huge but mostly a boasting pavilion w... | -1 |
| 1895 | There are endless reasons to visit Hungary. \n... | 1 |
| 1896 | @shelo9 Visit USA , a walk and opposite India ... | 1 |
| 1897 | @drshamamohd https://t.co/pptWXjiBnE\nthis sho... | 0 |
| 1898 | Happening Now!\n@Sepc_India Chairman, Shri Sun... | 1 |
| 1899 | @BoredMallu @drshamamohd Her husband must be a... | 1 |
| 1900 | @drshamamohd I was wondering why are you lying... | -1 |
| 1901 | Congress spokesperson lies about India Pavilli... | 1 |
| 1902 | @drshamamohd This Means Ur Hubby dint Visit An... | 1 |
| 1903 | @drshamamohd Maybe your husband was hallucinat... | 1 |
| 1904 | No wonder more than 8 Lakh people have visited... | 1 |
| 1905 | "We need to be mindful, I hope this pandemic i... | 0 |
| 1906 | World Showcase (3/3) new pavilion elaboration,... | 1 |
| 1907 | @loraxstanclub I’ll drop you off India Pavilio... | 1 |
| 1908 | Bhag!\n\nHere’s India Pavilion @ Dubai Expo. I... | 1 |
| 1909 | @drshamamohd There's hardly any pictures of th... | 0 |
| 1910 | @drshamamohd Maybe that why the longest queues... | 0 |
| 1911 | OpIndia: Congress spokesperson lies about Indi... | -1 |
| 1912 | @MonicaK2511 She’s as dumb if not more like he... | 1 |
| 1913 | Congress spokesperson lies about India Pavilli... | -1 |
| 1914 | @drshamamohd I have visited the Dubai Expo 4 t... | 1 |
| 1915 | Congress spokesperson lies about India Pavilli... | -1 |
| 1916 | If you do have the opportunity to visit #Expo2... | 1 |
| 1917 | Congress spokesperson lies about India Pavilli... | -1 |
| 1918 | @Sweet_HoneygaI I have been to the India pavil... | 1 |
| 1919 | @drshamamohd Yaass... thats reality all the pa... | 0 |
| 1920 | Chef Vikas Khanna unveils new book from India ... | 0 |
| 1921 | Chef Vikas Khanna unveils new book from India ... | 0 |
| 1922 | Aster DM Healthcare launches its corporate boo... | 0 |
| 1923 | @drshamamohd Ma'am I will try to find out whic... | -1 |
| 1924 | A highly rated and well respected Global Leade... | 1 |
| 1925 | @drshamamohd @cgidubai false information about... | -1 |
| 1926 | @cgidubai kindly look into this false informat... | -1 |
| 1927 | "We need you to give us the ideas, your brains... | 1 |
| 1928 | Chef Vikas Khanna unveils new #book from India... | 1 |
| 1929 | Absolute nonsense. India pavilion is one of th... | 1 |
| 1930 | If #RahulGandhi was PM, \nShama:“My husband lo... | -1 |
| 1931 | @drshamamohd Anyone who is reading this, just ... | 1 |
| 1932 | @drshamamohd Madam don’t lie . Indian pavilion... | 1 |
| 1933 | @drshamamohd What these fake....contd:\nD. For... | -1 |
| 1934 | @drshamamohd I've been at the Dubai Expo for f... | 0 |
| 1935 | Expo 2020 Dubai: India pavilion hosts power-pa... | 1 |
| 1936 | Aster DM Healthcare launches its corporate boo... | 0 |
| 1937 | "Digital technology has to serve the people" —... | 0 |
| 1938 | @drshamamohd Wat he said he so true..none of t... | -1 |
| 1939 | I asked my husband about Dubai Expo, especiall... | 1 |
| 1940 | #Repost @IndiaExpo2020 \n\nIndia Pavilion capt... | 1 |
| 1941 | .@euronews: India’s Pavillion at @expo2020duba... | 1 |
| 1942 | .@euronews: India’s Pavillion at @expo2020duba... | 1 |
| 1943 | At the EXPO India Pavilion, I caught up with ... | 1 |
| 1944 | @TraderHarneet @velumania It's there in India ... | 0 |
| 1945 | @velumania Good photoshop at India pavilion Ex... | 1 |
| 1946 | Republic Day @timesofindia special featured Ho... | 0 |
| 1947 | A great gesture from true friend of India #Isr... | 1 |
| 1948 | #RepublicDayIndia: #India pavilion at #Expo202... | 0 |
| 1949 | #RepublicDayIndia: #India pavilion at #Expo202... | 1 |
| 1950 | Celebration of #RepublicDay at Indian pavilion... | 1 |
| 1951 | India's 73rd #RepublicDay at #India Pavilion i... | 1 |
| 1952 | Happy Republic Day Everyone 🇮🇳 \n\nSharing a f... | 1 |
| 1953 | #RepublicDayIndia: Artists perform cultural da... | 0 |
| 1954 | #RepublicDayIndia: The Consul General of India... | 0 |
| 1955 | #RepublicDayIndia: The Consul General of India... | 0 |
| 1956 | @HinaRKhar @Expo2020Pak @expo2020dubai Did you... | 0 |
| 1957 | - India Pavilion Crosses 800K Footfall Milesto... | 1 |
| 1958 | The India pavilion at Expo 2020 has been attra... | 1 |
| 1959 | I'm at India Pavilion in Dubai https://t.co/QF... | 0 |
| 1960 | Armenian National Day was celebrated at #Expo2... | 1 |
| 1961 | #FlyWithIX : Expo 2020 Dubai!\n\nJust a Flight... | 1 |
| 1962 | @EmiratiPatriot She was born in Israel, and ed... | -1 |
| 1963 | @Celebrty_0 She was born in Israel, and educat... | -1 |
| 1964 | In response to her boycott of Expo 2020, I enc... | -1 |
| 1965 | #Israel's President @Isaac_Herzog opened Isra... | 1 |
| 1966 | #Israel's President @Isaac_Herzog opened Isra... | 1 |
| 1967 | Israel and UAE discuss use of AI and Cybersecu... | 0 |
| 1968 | so expo has a israel pavilion now… | 0 |
| 1969 | Israel\nIsraeli President Herzog opened the co... | 1 |
| 1970 | We had the honour of welcoming H.E. Isaac Herz... | 1 |
| 1971 | 🔵⚪ From 28 February, the enfant terrible of fa... | 0 |
| 1972 | "The health sector being strong enough and how... | 1 |
| 1973 | Israel's President Herzog visits Expo 2020 Dub... | 1 |
| 1974 | @Israel @expo2020dubai @IsraelExpoDubai @Israe... | 0 |
| 1975 | Israel's President Isaac Herzog was in Dubai t... | 0 |
| 1976 | Blue and white, shining so bright! \n\nWhat a ... | 1 |
| 1977 | It’s Israel Day at @IsraelExpoDubai! \n\nFollo... | 0 |
| 1978 | WOAH! Now that's an impressive pavilion! 😮🇮🇱😍@... | 1 |
| 1979 | Israel National Day party at the Israeli Pavil... | 1 |
| 1980 | Blue and white, #ExpoDubai tonight. \n\nNothin... | 1 |
| 1981 | #Israel #UAE : Inside #Israel’s pavilion at #E... | 0 |
| 1982 | @HHShkMohd on Monday met @Isaac_Herzog at the ... | 0 |
| 1983 | President Isaac Herzog is joined by Expo 2020 ... | 0 |
| 1984 | @Israel No it’s what Arab hospitality bought w... | -1 |
| 1985 | Today we’re celebrating peace, success and pro... | 1 |
| 1986 | 🇮🇱 “Israel is a country in which obstacles bec... | 0 |
| 1987 | Mohammed bin Rashid meets with President of #I... | 1 |
| 1988 | The Israeli pavilion at Expo 2020 Dubai hosts ... | 1 |
| 1989 | Our pavilion at @expo2020dubai is in full swin... | 1 |
| 1990 | The Israeli pavilion at Expo 2020 Dubai will h... | 1 |
| 1991 | Wishing you all the success this year 🙏 Cheers... | 1 |
| 1992 | Today we’re covering Israel Day at @expo2020du... | 0 |
| 1993 | The Israeli Pavilion at Expo 2020 will play ho... | 1 |
| 1994 | Please just boycott Dubai Expo one time. They ... | -1 |
| 1995 | Israel Pavilion at Dubai Expo Commemorates the... | 0 |
| 1996 | The #UAE hosts its first-ever #InternationalHo... | 1 |
| 1997 | Visitors observed the International Holocaust ... | 1 |
| 1998 | Our Commissioner General, Mr @JThesleff, parti... | 0 |
| 1999 | #Israel Pavilion at #Expo2020Dubai marks #Inte... | 1 |
| 2000 | "As a nation we punch above our weight when it... | 1 |
| 2001 | International Holocaust Remembrance Day - Janu... | 1 |
| 2002 | The #Israel Pavilion enchanted attendees at #E... | 1 |
| 2003 | @Our_Levodopa The Israel pavilion is next to t... | 0 |
| 2004 | "Israel's President Visits United Arab Emirate... | -1 |
| 2005 | After a False Start in 2019, Kazakhstan Has An... | 1 |
| 2006 | After a False Start in 2019, Kazakhstan Has An... | -1 |
| 2007 | We are honored to welcome in Moldova Pavilion ... | 1 |
| 2008 | Expo 2020 Dubai: Mr.Sheikh Hamdan meets Chief ... | 0 |
| 2009 | HE Fatmire Isaki, Deputy Minister of Foreign A... | 1 |
| 2010 | Learn all about traditional architecture style... | 1 |
| 2011 | Philippines Pavilion at Expo 2020 Dubai highli... | 1 |
| 2012 | Philippines Pavilion at Expo 2020 Dubai highli... | 1 |
| 2013 | Philippines Pavilion at Expo 2020 Dubai highli... | 0 |
| 2014 | The healthcare sector is the 2nd largest expor... | 0 |
| 2015 | Applause to Sweden pavilion for organising and... | 1 |
| 2016 | Sweden is in the frontline in healthcare. Toda... | 0 |
| 2017 | It's the halfway point of Expo 2020 Dubai &... | 1 |
| 2018 | I’m surprised NO ONE took pictures of the Geme... | 1 |
| 2019 | We are in 2022.\nAny updates. \nWere the produ... | 0 |
| 2020 | Someone has to say it.. the U.K. stand at #Exp... | -1 |
| 2021 | Sources to MTV: The situation at #DubaiExpo is... | 1 |
| 2022 | Nicole Smith Ludvik is back on top of #BurjKha... | 0 |
| 2023 | Earl Brooks Jr. big up yourself brother . #Dub... | 1 |
| 2024 | Watch Health & Wellness Business Forum LIV... | 0 |
| 2025 | H.E Jakov Milatovic, Minister of Economic Deve... | 0 |
| 2026 | Lie machine - @INCIndia - says #DubaiExpo #Ind... | -1 |
| 2027 | Pump it loud with the Black Eyed Peas at Expo ... | 0 |
| 2028 | Dubai Events Mar 2022\nExpo until 31st \nhttps... | 0 |
| 2029 | Apparently missed the gig by #BlackEyedPeas in... | 0 |
| 2030 | Don’t miss this #SDG event tomorrow, live from... | 0 |
| 2031 | Here are highlights from Day 1 of the Mastercl... | 0 |
| 2032 | Expand your network of connections in the bigg... | 1 |
| 2033 | Don't miss out \nEgyptian band Cairokee will ... | 1 |
| 2034 | The #InvestinDubai Trade Mission at #Expo2020 ... | 1 |
| 2035 | Expo 2020 Dubai invited Sima Dance Company to ... | 0 |
| 2036 | Crowd goes wild as #AliZafar rocks the Jubilee... | 1 |
| 2037 | “THE HVAC HIGHLIGHT IS THE LACK OF HVAC ” \nTh... | 0 |
| 2038 | @drshamamohd Absolutely correct.\nONLY Pavilio... | -1 |
| 2039 | DO NOT MISS: Coppersmith handicraft & arti... | 1 |
| 2040 | Fried gnocchi poutine. 🔥 \n\nThank you, Canada... | 1 |
| 2041 | Together with 8 Canadian companies, the Consul... | 0 |
| 2042 | 📅Feb. 8-10: Don't miss the @IntlBldrsShow in #... | 0 |
| 2043 | Canada’s #OceanTech community is #MakingWaves ... | 1 |
| 2044 | #广州美术学院 走进#迪拜 #世博会,“艺齐#抗疫 ”作品\nAnti-epidemic t... | 0 |
| 2045 | @BTBullion Agreed. 💯 \n\nBecause now it’s not ... | -1 |
| 2046 | @JasonRempala And those would probably be just... | 1 |
| 2047 | Minister of Tolerance and Coexistence and Comm... | 0 |
| 2048 | @MyChinaTrip Thank you ~I think that the Jin M... | 1 |
| 2049 | @joshgad @Lin_Manuel @thejaredbush @ByronPHowa... | -1 |
| 2050 | Hot dog! I’ll be at the #EPCOT International F... | 1 |
| 2051 | Postcards have arrived! Check out the #WonderG... | 0 |
| 2052 | Photonics Finland Pavilion is building up at t... | 0 |
| 2053 | @NCAA @MarchMadnessMBB GEORGIA TECH IS PUMPING... | -1 |
| 2054 | Dear @expo2020dubai, I visited the pavilions. ... | 1 |
| 2055 | So #Israel-i enemy PM has been well received t... | -1 |
| 2056 | VIP entrance at the Morocco pavilion at Expo 2... | 1 |
| 2057 | .@Gulfood will also be a precursor to the much... | 0 |
| 2058 | Famous for its saliya or massive fishing nets,... | 1 |
| 2059 | @sincerelyivy It would honestly be so fun if h... | -1 |
| 2060 | I really hope this image clears everything up:... | -1 |
| 2061 | @SuperWeenieHtJr I actually had a talk once wi... | -1 |
| 2062 | Things happening at Dubai Expo\n\nLeft: SA pav... | 0 |
| 2063 | Construction of Pavilion by "Digital Lifestyle... | 0 |
| 2064 | Discover their unique heritage, vibrant energy... | 1 |
| 2065 | @RIPcotCenter Its not a recent thing...\n\nEve... | 1 |
| 2066 | "If the goal is to give people a taste of some... | 0 |
| 2067 | The former post-show theater for Maelstrom in ... | 0 |
| 2068 | We would like to remind guests that seats are ... | 0 |
| 2069 | That Maelstrom mural was a thing of beauty and... | 1 |
| 2070 | where she will be discussing and promoting her... | 1 |
| 2071 | @apldeap @JReysoul and @TabBep honor their Fil... | 1 |
| 2072 | CEO Clubs Network is proud to announce another... | 1 |
| 2073 | A funky installation I saw in the Dubai expo, ... | 1 |
| 2074 | @MadiBoity This pic is cut in half. Go on yout... | -1 |
| 2075 | Eduardo Paniagua, who visited the #SpainPavili... | 0 |
| 2076 | Health and Wellness Week at the #swisspavilion... | 1 |
| 2077 | The one of the most beautiful pieces from “Col... | 1 |
| 2078 | The art of storytelling in motion comes to the... | 1 |
| 2079 | Expo 2020 Dubai top events\n\n#إكسبو2020\n#Exp... | 1 |
| 2080 | Pray for the peoples of Vanuatu and those who ... | 1 |
| 2081 | Don’t miss them if you’re around too! #LifeSci... | 1 |
| 2082 | @HHichilema An opportunity to connect young m... | -1 |
| 2083 | @BTBullion Ok, I guess I’m kinda gross but I’d... | 1 |
| 2084 | Stunning visuals, immersive audio, interactive... | 1 |
| 2085 | The Al Wasl Plaza is stunning. Everyone night ... | 1 |
| 2086 | Find out why #SAPtraining is vital to digital ... | 1 |
| 2087 | #SaudiArabia is one of the world's largest cof... | 1 |
| 2088 | The #ActNow Live #VR Experience and Global Fes... | 1 |
| 2089 | Andorra Pavilion | World Expo in Dubai! \n\nHe... | 0 |
| 2090 | You can virtually follow it at https://t.co/bX... | 0 |
| 2091 | When you are at @expo2020 in Dubai, and you ge... | 1 |
| 2092 | Here is how Islam Inspires sustainable develop... | 0 |
| 2093 | Expo 2020 sustainability pavilion project.\nEx... | 1 |
| 2094 | Thank you #Expo2020 https://t.co/lyfpLiRa9D | 1 |
| 2095 | Well done KP, Pakistan.....\nthank you Expo202... | 1 |
| 2096 | #UAE Vice President, Prime Minister and ruler ... | 0 |
| 2097 | Jamaica Showcases Its Top Women Sportspersons-... | 1 |
| 2098 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | 1 |
| 2099 | Eradicating Hunger at top of world's to do lis... | 1 |
| 2100 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | 1 |
| 2101 | Come and explore tourism opportunities and dis... | 1 |
| 2102 | The most anticipated day in our pavilion is cl... | 1 |
| 2103 | Two days left for global megastars Black Eyed ... | 1 |
| 2104 | Participate in a unique on-site #HXM innovatio... | 0 |
| 2105 | 📢📅The 6 #frenchhealthcare conferences start to... | 0 |
| 2106 | @UKPavilion2020 @KensingtonRoyal @expo2020duba... | 1 |
| 2107 | WE ARE ALL RUNNERS & WINNERS!\n"We don't r... | 1 |
| 2108 | The #expo2020dubai visitor numbers continue to... | 1 |
| 2109 | HE Hamad Buamim, President & CEO of Dubai ... | 1 |
| 2110 | South Indian Hit Music Festival wows crowds at... | 1 |
| 2111 | The #UAE 🇦🇪 will not be safe until it stops it... | -1 |
| 2112 | #Breaking \n#Yemen's Iran🇮🇷-backed Houthi mili... | -1 |
| 2113 | So #Expo2020 is bonkers. Follow me on Instagra... | 1 |
| 2114 | #BREAKING #UAE\n\n🔴UNITED ARAB EMIRATES: EXPLO... | -1 |
| 2115 | According to eyewitnesses, at around 4 am #UAE... | -1 |
| 2116 | 🔴 #BREAKING \nThe movement is #normal within ... | 1 |
| 2117 | List of fines for breaking social media rules ... | -1 |
| 2118 | #Breaking - H.H.Sheikh Saif bin Zayed Al Nahy... | 0 |
| 2119 | Our President, Ms. Alwazna Falah, & VP &am... | 0 |
| 2120 | @prudensfx #SHINJA\n5 new exchange listings, w... | 0 |
| 2121 | Cold day with sunny wether.\n#DubaiExpo #UAE | 0 |
| 2122 | Night in desert #dubai_DATING \n#DubaiExpo2020... | 1 |
| 2123 | Last chance to register and ask your questions... | 0 |
| 2124 | And of course I visited the @ethnotecham pavil... | 1 |
| 2125 | Today, we celebrate Australia 🇦🇺 at Expo’s Por... | 1 |
| 2126 | @expo2020dubai #Australia Pavilion. Wonderful ... | 1 |
| 2127 | BREAKING NEWS: Israeli president presses on wi... | -1 |
| 2128 | @MarisePayne @DrSJaishankar @MEAIndia @AusHCIn... | -1 |
| 2129 | Yesterday, CEO Clubs hosted 'Introduction to T... | 0 |
| 2130 | @Knack Visitors to the Belgium Pavilion at Exp... | 1 |
| 2131 | Commissioner-General Clark & his wife note... | 1 |
| 2132 | Support our #socialproject & #shopforacaus... | 0 |
| 2133 | We were honored to welcome Shaikh Sultan Bin S... | 0 |
| 2134 | 🚇 Until 21 February, dive into the pharaonic #... | 0 |
| 2135 | Our pavilion ambassadros welcome you at the Bo... | 1 |
| 2136 | Chef Rodrigo Oliviera, one of #Brazil's most r... | 1 |
| 2137 | Guess who’s coming to the #BrazilPavilion? He ... | 1 |
| 2138 | Modern-day Bosnia and Herzegovina has been hom... | 1 |
| 2139 | @SuperWeenieHtJr Maybe they should make a Braz... | -1 |
| 2140 | A must-see physical-meets-digital immersive se... | 1 |
| 2141 | Advocating and Thriving ICT Innovators. The mi... | 0 |
| 2142 | #DubaiExpo\nThe top 5 are epic.\n#DubaiExpo202... | 1 |
| 2143 | It was such an honour to welcome H.E. Mr. Pak ... | 1 |
| 2144 | Welcome to the Health & Spa week in the Bu... | 1 |
| 2145 | Christie immerses visitors to Canada Expo pavi... | 1 |
| 2146 | @SalNJ19 Cool! She works tomorrow all day in t... | 0 |
| 2147 | I wanna meet celebs and compliment them on thi... | 1 |
| 2148 | On Feb 5th, the Canadian Business Council of D... | 1 |
| 2149 | @TheHorizoneer If someone ever does a concept ... | 1 |
| 2150 | The online CAEXPO is divided into China Pavili... | 0 |
| 2151 | @SuperWeenieHtJr Well, no they could use an em... | 0 |
| 2152 | #Funfact At the #Expo2012Yeosu held in #SouthK... | 1 |
| 2153 | @Frankenfarts @TheHorizoneer @VileAgatha There... | -1 |
| 2154 | @TheHorizoneer Encanto could work as part of a... | 1 |
| 2155 | President Herzog at the #DubaiExpo2020 despite... | 0 |
| 2156 | My first trip, Oct.1985 on our honeymoon. Firs... | 1 |
| 2157 | #Repost @samiyusuf \nThe Universe found manife... | 0 |
| 2158 | Dude, the movie is only like 2 months old and ... | -1 |
| 2159 | We’re taking a meditative look at the power of... | 0 |
| 2160 | I would love to see a Mirabel Madrigal meet an... | 1 |
| 2161 | @sincerelyivy We need a Colombia pavilion at E... | 1 |
| 2162 | @ScottGustin I've said it before and I'll say ... | 1 |
| 2163 | @TCJaalin I want a compromise. Colombia Pavili... | 1 |
| 2164 | Let’s welcome Ms. Nadimeh Mehra, Vice Presiden... | 1 |
| 2165 | Enjoyed celebrating “Rock” Ransdale’s life wit... | 1 |
| 2166 | @PresidenciaSV @nayibbukele I wonder if they a... | 0 |
| 2167 | Pure Genius: ... | 1 |
| 2168 | Take a good look at these stunning portraits ... | 1 |
| 2169 | Take a good look at these stunning portraits ... | 1 |
| 2170 | Video shows the stunning portraits which are ... | 1 |
| 2171 | Take a good look at these stunning portraits ... | 1 |
| 2172 | Pure Genius 🙏 These are some of the stunning p... | 1 |
| 2173 | Take a good look at these stunning portraits e... | 1 |
| 2174 | Take a good look at these stunning portraits ... | 1 |
| 2175 | My never ending sincere Gratitude & Salute... | 1 |
| 2176 | Photonics West Exhibition 2022 has now officia... | 1 |
| 2177 | How did you moss to check the contents of the ... | -1 |
| 2178 | More work to be done.\nSee you Sunday at the S... | 1 |
| 2179 | @LottinPackeddd Damn, I wish I could go but I’... | 1 |
| 2180 | Thank you for coming! We love having students ... | 1 |
| 2181 | On Monday, part of the world’s largest copy of... | 1 |
| 2182 | Zsófia Keresztes will represent Hungary at the... | 0 |
| 2183 | We were honoured to have a stunning four-piece... | 1 |
| 2184 | Meet our Expo Players! 🪕\n\nBarry, Laura, Step... | 0 |
| 2185 | Visiting #Expo2020 is easier than you think!\n... | 1 |
| 2186 | Thrilled to be a community partner in “JORDAN ... | 1 |
| 2187 | Top Ten Things We Love About Epcot's Japan Pav... | 1 |
| 2188 | My favorite pavilion art goes to Italy. Well d... | 1 |
| 2189 | Jamaica pavilion is winning over visitiors' he... | 1 |
| 2190 | Here are some discussions that will happen sho... | 0 |
| 2191 | Antioxidant, immunomodulatory & Anti-infla... | 0 |
| 2192 | Getting rid of the Saki bar in the Japan Pavil... | -1 |
| 2193 | The Kenya Pavilion at the Expo Dubai 2020 has ... | 1 |
| 2194 | Amy from Lebanon was the 500 000th visitor at ... | 1 |
| 2195 | Andy Vermaut shares:Virtual Therapy Lab Presen... | 0 |
| 2196 | We were moved to see the warmth displayed towa... | 1 |
| 2197 | Wonderful to see @ShimhaShakyb’s stunning pain... | 1 |
| 2198 | Good morning from Dubai Exhibition Centre #Exp... | 0 |
| 2199 | We are here now for Sustainable Energy and Nat... | 0 |
| 2200 | Come and join us live today for Opening Ceremo... | 0 |
| 2201 | Visit the Maldives Pavilion at the Sustainabil... | 0 |
| 2202 | 1 DAY TO GO [Opening of Week 18: Sustainable E... | 1 |
| 2203 | All this is happening during the Sustainable A... | 0 |
| 2204 | 2 days to go to Sustainable Energy and Natural... | 0 |
| 2205 | 3 more days to go for the opening of Week 18 -... | 1 |
| 2206 | 3 more days to go for the opening of Week 18 -... | 0 |
| 2207 | 25 JAN 2022 | 3PM UAE | 7PM MYT \n\nJoin Mr Ha... | 0 |
| 2208 | 🍳 From 10 to 22 February, meet on the esplanad... | 1 |
| 2209 | Enter the weekly raffle draw to stand a chance... | 0 |
| 2210 | Injecting Malaysia's diverse and vibrant cultu... | 1 |
| 2211 | @DreamfinderGuy Now, to just get rid of the pe... | -1 |
| 2212 | COLOMBIA is not Mexico. Stop suggesting an #En... | -1 |
| 2213 | Thank you @TravTalkME for this nice article ab... | 1 |
| 2214 | The sangria/chickpea snack bar in the middle o... | 1 |
| 2215 | Roy our photo pass photographer in the Morocco... | 1 |
| 2216 | It’s amaziiiiiiiiiing😳\nThank you for great ti... | 1 |
| 2217 | Both #AMUM 50KM and 5KM races will take place ... | 0 |
| 2218 | @KLM recently co-hosted a reception at the Net... | 0 |
| 2219 | Are you interested in horticulture contributin... | 0 |
| 2220 | So I went to the Netherlands Pavilion. Instead... | 1 |
| 2221 | Premier #Construction - The Oman Pavilion at E... | 1 |
| 2222 | The #LEAP2022 exhibition is going to be awesom... | 1 |
| 2223 | The #LEAP22 exhibition is going to be awesome!... | 1 |
| 2224 | The wait is over!! Our team has landed and wil... | 1 |
| 2225 | Throwback to side event at #Pakistan's pavilio... | 0 |
| 2226 | Its still surreal to grasp how much love the P... | 1 |
| 2227 | How can business and emerging technologies hel... | 0 |
| 2228 | We thank all our official Pavilion sponsors fo... | 1 |
| 2229 | The Pakistan Pavilion wholeheartedly would lik... | 1 |
| 2230 | What an honor to take #Malala's and her family... | 1 |
| 2231 | Thank you so much Zia bhai @ZiauddinY \n@Malal... | 1 |
| 2232 | The #Pakistan Pavilion won Honorable Mention i... | 1 |
| 2233 | The Pakistan Pavilion was honored to have Paki... | 0 |
| 2234 | As a country Pakistan does not impress much gl... | 1 |
| 2235 | Today’s business highlights at Expo 2020 Dubai... | 1 |
| 2236 | Part of the world’s largest Holy Quran was rec... | 1 |
| 2237 | The Pakistan Pavilion was proud to unveil the ... | 1 |
| 2238 | come to Pakistan the beautiful country on the ... | 1 |
| 2239 | You know our color, right? IT'S BLUE!!! 💙\nSho... | 1 |
| 2240 | Yesterday's magical performance at @expo2020du... | 1 |
| 2241 | Dont miss expo2020 dubai soon to reach to end ... | 1 |
| 2242 | Pavel Volya — a Russian TV host, actor and Lya... | 1 |
| 2243 | 4/5 Palestinian civil society has been calling... | -1 |
| 2244 | We were thrilled to host His Excellency Hussai... | 1 |
| 2245 | @expo2020dubai : Saudi Arabia’s pavilion is de... | 1 |
| 2246 | During @HamdanMohammed's visit to #Expo2020, h... | 0 |
| 2247 | Congrats to the 6️⃣ #EUeic companies selected ... | 1 |
| 2248 | Together with @SSPHplus we brought @ATeatroDim... | 0 |
| 2249 | @uwuketz This small pavilion was a gift from t... | 1 |
| 2250 | Staff at work 🇨🇭👷 \n\nBravo to all our staff f... | 1 |
| 2251 | @drshamamohd Shama, given the real video of In... | 0 |
| 2252 | Dubai Ruler and the Prime Minister of Somalia ... | 0 |
| 2253 | Ruler of Dubai meets the President of Israel a... | 0 |
| 2254 | Wishing you all the success this year. Cheers ... | 1 |
| 2255 | The spaces of the future must be designed with... | 1 |
| 2256 | HH Sheikh Mohammed bin Rashid received today ... | 0 |
| 2257 | Number of visitors to the largest tourism even... | 1 |
| 2258 | #Expo2020 random shots 🤷🏻♂️ https://t.co/47lO... | 0 |
| 2259 | Hola amigos, I want to confess something one o... | 1 |
| 2260 | @JohnGallagherUK @UKPavilion2020 @expo2020duba... | 0 |
| 2261 | #GlobalGoalsforAll\n#ObjetivosGlobalesparaTodo... | 0 |
| 2262 | Mr. Parag Ghosh, Founder & CEO of Auspice ... | 0 |
| 2263 | Today's the day! As #Expo2020's Health and Wel... | 1 |
| 2264 | Promises are made to be kept for people and pl... | 1 |
| 2265 | #UAE Innovates will Start Tomorrow and will Co... | 0 |
| 2266 | @AD_GQ BTw today I visited #IsrealPavilion ver... | 1 |
| 2267 | @ScotExpo2020 @jasonleitch @HIMSS @dhiscotland... | -1 |
| 2268 | 60 More Days with Expo 2020 Dubai\n#Expo2020 #... | 0 |
| 2269 | @ICCROM @expo2020 @ItalyExpo2020 I could not r... | -1 |
| 2270 | It’s amazing 🤩 \nSix60 is the greatest artist... | 1 |
| 2271 | Mr. Bhushan Chhajed, Founder of Khetiwalo Orga... | 1 |
| 2272 | First-of-its-kind prosthetic limb socket made ... | 0 |
| 2273 | #UAE Innovates 2022 kicks off its journey in a... | 0 |
| 2274 | You may say, I'm a dreamer #expo2020 https://t... | 1 |
| 2275 | Crowd at the Six60 performance in Dubai right ... | 0 |
| 2276 | People in large numbers have started visiting ... | 1 |
| 2277 | The one and only, Lucky Ali is making his way ... | 1 |
| 2278 | We are sharing some memories from the economic... | 1 |
| 2279 | Technologies Transforming Healthcare at Expo 2... | 0 |
| 2280 | The #spaces of the future must be designed wit... | 0 |
| 2281 | "Klunk-klank": that's the sound meaning your v... | 0 |
| 2282 | Meanwhile in the United Arab Emirates. 🇮🇱🇦🇪\n\... | 0 |
| 2283 | The brilliant folks at @EquidemOrg are launchi... | 1 |
| 2284 | Six60 take the stage at #Expo2020 Dubai for th... | 1 |
| 2285 | Excellent to see the UK Pavilion at #Expo2020.... | 1 |
| 2286 | A fantasy masterpiece in multiple languages🙏🎶💞... | 1 |
| 2287 | Gabon Pavilion at Expo 2020 Dubai a Space to R... | 0 |
| 2288 | using the same ancient techniques practiced in... | 1 |
| 2289 | Did you know that Kidovation has been to the D... | 1 |
| 2290 | #UAE Innovates will Start Tomorrow and will Co... | 1 |
| 2291 | Terry Fox Run at #Expo2020 #Dubai \n#Expo2020D... | 0 |
| 2292 | Myriam I'm so excited that you will have a con... | 1 |
| 2293 | UAE’s Ministry of Defence to perform weekly pa... | 0 |
| 2294 | Project: UAE Pavilion, @expo2020dubai\nhttps:/... | 0 |
| 2295 | Inside the Russian pavilion - Expo moment\nDub... | 0 |
| 2296 | #WATCH: Pakistani artist’s unique Qur’anic ins... | 1 |
| 2297 | SHAME!!!!! \n#Dubai #AbuDhabi #Expo2020 #Dubai... | -1 |
| 2298 | SMF Team visit To EXPO 2020, exploring culture... | 0 |
| 2299 | It was an unforgettable night! Superstar Balqe... | 1 |
| 2300 | #loymachedo shares\nHouthi Claim Explosion In ... | -1 |
| 2301 | #loymachedo shares\nHouthi Claim Explosion In ... | -1 |
| 2302 | What a huge honour to have H.E. Isaac Herzog, ... | 1 |
| 2303 | Fifth visit to Expo 2020 Dubai, wonderful afte... | 1 |
| 2304 | Israel's president Isaac Herzog visits Israeli... | 0 |
| 2305 | Israel's president Isaac Herzog visits Israeli... | 0 |
| 2306 | Israel's president Isaac Herzog visits Israeli... | 0 |
| 2307 | It starts with a dream 📸\n#expo2020 #Dubai #Ru... | 0 |
| 2308 | Each month, we highlight the notable moments f... | 1 |
| 2309 | UAE Innovates 2022 kicks off its journey in al... | 1 |
| 2310 | #Houhti view on the #AbrahamAccords. Consider ... | 0 |
| 2311 | With the participation of H.E. Dr. Yousif Moha... | 0 |
| 2312 | NEW: The Royal Family Dance Crew's #Expo2020 N... | -1 |
| 2313 | Discover the #KuwaitPavilion at #Expo2020Dubai... | 0 |
| 2314 | Don't miss the opportunity to join us tomorrow... | 1 |
| 2315 | Missing that strawberry kinder beauno cheeseca... | 1 |
| 2316 | A Tribute to “Netaji Subhas Chandra Bose” in t... | 0 |
| 2317 | Visitors will be able to virtually experience ... | 0 |
| 2318 | THE KENYA PAVILLION AT #EXPO2020\nThe Kenya Pa... | 1 |
| 2319 | To celebrate his country’s national day, H.E. ... | 1 |
| 2320 | 60 More Days with #Expo2020 #Dubai\n#Expo2020D... | 0 |
| 2321 | Incredible miniatures, and much much more, at ... | 1 |
| 2322 | New Zealand’s national day is being celebrated... | 1 |
| 2323 | Alain Ebobissé, CEO, Africa50, will be speakin... | 0 |
| 2324 | Happy dayoff at expo2020 #mybff https://t.co/i... | 1 |
| 2325 | They’re talented, they’re full of energy, and ... | 1 |
| 2326 | Today, we reached 700,000 visitors. We thank e... | 1 |
| 2327 | Scotland is looking to the future of health at... | 1 |
| 2328 | From @MyriamFares to @LuckyAli, here are six c... | 1 |
| 2329 | This week, join us virtually in the Swedish pa... | 0 |
| 2330 | The Great Indian Recipe Contest has started. A... | 0 |
| 2331 | Visit Expo 2020 Dubai for Chinese New Year Cel... | 1 |
| 2332 | Mr. Shubham Dungarwal, Director - Gfarms Pvt L... | 1 |
| 2333 | Getting to know Luxemburg #expo2020 (@ Luxembo... | 0 |
| 2334 | Join us @RwandaExpo2020 in #Dubai for the Rwan... | 1 |
| 2335 | Sheikh Mohammed bin Rashid, Vice President and... | 0 |
| 2336 | No one is safe until everyone is safe. We need... | 0 |
| 2337 | World Expo has undergone great challenges; glo... | 1 |
| 2338 | Among the speakers for the #GEMGlobalReport22 ... | 0 |
| 2339 | 125th Birth Anniversary: A Tribute to “Netaji ... | 0 |
| 2340 | Discover the Côte d'Azur, a unique destination... | 1 |
| 2341 | #Expo2020 #Dubai Where life happens - A shor... | 0 |
| 2342 | Get the chance to win exciting prizes! \nHere'... | 1 |
| 2343 | The Pakistan Pavilion Cordially invites you fo... | 0 |
| 2344 | “#Israel's president spoke at #Dubai's #Expo20... | -1 |
| 2345 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 2346 | Discover the land of vibrant culture and endle... | 1 |
| 2347 | With all the love we’ve received, we can’t wai... | 1 |
| 2348 | We are excited to welcome @INJAZorg as a commu... | 1 |
| 2349 | Some photos from the "National Day" ceremony a... | 1 |
| 2350 | An insightful end to Scotland's Digital Health... | 1 |
| 2351 | Scotland's Digital Health and Wellness Day at ... | 1 |
| 2352 | It’s now or never before it’s gone forever! 60... | 1 |
| 2353 | Eat and save! Go for these affordable must-try... | 1 |
| 2354 | Will be sharing my thoughts at the Rwanda Busi... | 0 |
| 2355 | @PascalMurasira, Managing Director, Norrsken E... | 0 |
| 2356 | Celebrity chef #VineetBhatia is back on #Studi... | 0 |
| 2357 | #StudioExpo team is getting bigger! \nJoin the... | 1 |
| 2358 | Connecting Minds, Creating the Future! Join Co... | 1 |
| 2359 | The #USAPavilion welcomed Hochschule Munich Un... | 1 |
| 2360 | It’s now or never before it’s gone forever! 60... | 1 |
| 2361 | Exciting! Israel's National Day at #Expo2020 D... | 1 |
| 2362 | The Musical Journey full of wonder every Thurs... | -1 |
| 2363 | We are incredibly proud that the @UofGLivingLa... | 1 |
| 2364 | Expo 2020 Dubai @expo2020dubai has announced i... | 0 |
| 2365 | If there is just one African exhibition you mu... | 1 |
| 2366 | Canadians and others from all over the globe j... | 1 |
| 2367 | It was so wonderful to welcome students back a... | 1 |
| 2368 | We are delighted to have joined Scotland's Dig... | 1 |
| 2369 | This week @essity will be supporting the @Swec... | 1 |
| 2370 | On February 1, from 4 PM - 6 PM, she will part... | 1 |
| 2371 | #WATCH: Pakistani artist’s unique Qur’anic ins... | 1 |
| 2372 | Expo 2020 Dubai India Pavilion building design... | 0 |
| 2373 | Egypt used stunning audio-visual screens and r... | 1 |
| 2374 | The Wasl dome in all its glory @expo2020dubai... | 1 |
| 2375 | Ambassador of the Syrian Arab Republic in the ... | 1 |
| 2376 | Expo 2020 Dubai is the world’s biggest event a... | 1 |
| 2377 | Celebrating the connecting power of sport and ... | 1 |
| 2378 | Eat and save! Go for these affordable must-try... | 1 |
| 2379 | #StudioExpo is live at #Expo2020Dubai. \n#Duba... | 0 |
| 2380 | BioClavis is part of the expert panel discussi... | 0 |
| 2381 | Slip in a workout while you’re visiting @expo2... | 1 |
| 2382 | @VusiThembekwayo, CEO, MyGrowthFund Venture, w... | 0 |
| 2383 | The Syria Pavilion at Expo 2020 Dubai and the ... | 1 |
| 2384 | The famous #NaatuNaatuSong @expo2020schools @e... | 0 |
| 2385 | Celebrating Israel National Day at #Expo2020 #... | 1 |
| 2386 | #Herzog and First Lady Michal Herzog opened #I... | 0 |
| 2387 | We are excited to welcome @Oasis_500 as a comm... | 1 |
| 2388 | 👀 There’s so much to see at #EXPO2020Dubai tha... | 1 |
| 2389 | UAE’s Ministry of Defence to perform a live pa... | 0 |
| 2390 | Pleased and proud to see Dr Ujala Nayyar from ... | 0 |
| 2391 | Get the chance to meet the brilliant @ShankarA... | 1 |
| 2392 | Don’t miss our next running event, the Terry F... | 0 |
| 2393 | A week of sharing the unique history, aroma, a... | 1 |
| 2394 | Happening today! #Expo2020 https://t.co/UyyA5Y... | 1 |
| 2395 | HH Sheikh Mohammed bin Rashid Meets with the P... | 0 |
| 2396 | "The control of covid19 came at a cost, such a... | 0 |
| 2397 | .@UofGLivingLab are at #Expo2020 with @Precisi... | 1 |
| 2398 | We are proud to be at #Expo2020 with @Precisio... | 1 |
| 2399 | We had the opportunity to attend a debate focu... | 1 |
| 2400 | #Herzog and First Lady Michal Herzog opened #I... | 0 |
| 2401 | Stay tuned for #UAE Innovates events at #Expo2... | 1 |
| 2402 | These new creations, the largest we've ever bu... | 1 |
| 2403 | Enjoy opera 🎻 music with a pop twist 🎸 as Sol3... | 1 |
| 2404 | What a great moment. Fantastic to see. Well do... | 1 |
| 2405 | “The Walk for the Ocean” took place at the #... | 1 |
| 2406 | @expo2020 @TheNationalNews Meanwhile, Dr Kanda... | 0 |
| 2407 | Interesting panel discussion at Scotland's Dig... | 0 |
| 2408 | A Tribute to “Netaji Subhas Chandra Bose” in t... | 0 |
| 2409 | Incorporating many complex choreographies, inc... | 1 |
| 2410 | #StudioExpo goes live a 4PM #Expo2020Dubai!\n\... | 0 |
| 2411 | Scottish digital health #Expo2020 panel highli... | 0 |
| 2412 | #Israel: President Isaac Herzog kicked off the... | 1 |
| 2413 | 125th Birth Anniversary: A Tribute to “Netaji ... | 0 |
| 2414 | The technical ability of its musicians 🎼 and t... | 1 |
| 2415 | "VIPs from around the world visit the Japan Pa... | 1 |
| 2416 | Join us for the long-awaited #SpainDay at #Exp... | 1 |
| 2417 | This was followed with an opening address by #... | 1 |
| 2418 | New Video: Emirates - A #VisitDubai, #Expo2020... | 1 |
| 2419 | New Video: Emirates - A #VisitDubai, #Expo2020... | 1 |
| 2420 | UN at Expo 2020 Dubai | United Nations https:/... | 0 |
| 2421 | What a day! Great to have our guests from Etis... | 1 |
| 2422 | By experimenting with materials, techniques an... | 1 |
| 2423 | Great to hear @djlmed, @jasonleitch and @HalWo... | 1 |
| 2424 | Our #Expo2020 National Day celebrations began ... | 1 |
| 2425 | #HealthandWellness week at the pavilion in #Du... | 0 |
| 2426 | Israel's President Isaac Herzog visits #Expo20... | 1 |
| 2427 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | 0 |
| 2428 | The #USAPavilion hosted Stephen Shaya, M.D. of... | 1 |
| 2429 | As part of #Expo2020 \nHealth & Wellness W... | 1 |
| 2430 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | 0 |
| 2431 | :::TODAY:::\n#NewZealand @Expo2020Dubai \n#Exp... | 0 |
| 2432 | UAE’s Minister of Tolerance Sheikh Nahyan bin ... | 1 |
| 2433 | Last week, DMU was back at @Expo2020, showing ... | 1 |
| 2434 | If you are planning to visit #Expo2020 Dubai, ... | 0 |
| 2435 | "There is no subtitute for quality. We need a ... | 0 |
| 2436 | The #USAPavilion welcomed Minister of Health o... | 0 |
| 2437 | Today our CEO Mohan Frick and Finance Director... | 0 |
| 2438 | Fighting Stigma : India pavilion at EXPO2020 ... | 1 |
| 2439 | Finally 😍😍😍 #Expo2020 https://t.co/sgxvk5tUCJ | 1 |
| 2440 | Today is the day...our official @expo2020dubai... | 1 |
| 2441 | 4 months down, 2 more to go! 🇾🇪\n\n#أحفاد_سبأ ... | 0 |
| 2442 | #IweWosvora\n\n#Zimbabwe’s healthcare system h... | 1 |
| 2443 | Join #SAPServices on-site at SAP House Dubai i... | 0 |
| 2444 | In the India Pavilion yoga is really on displa... | 1 |
| 2445 | Essential to #learn from the #polio eradicatio... | 0 |
| 2446 | The Greek pavilion was designed based on the m... | 1 |
| 2447 | "We live in an age of misinformation and disin... | 0 |
| 2448 | EXPO AL WASL PLAZA\n\nPFC is taking a main par... | 0 |
| 2449 | “Wild animals don’t cause pandemics: people do... | 0 |
| 2450 | What A Place This #Expo2020 Dubai Is 😊 Feel My... | 1 |
| 2451 | Malaysia Pavilion spreads smiles with a unique... | 1 |
| 2452 | Today we are excited to celebrate Spain 🙌\nDo... | 1 |
| 2453 | Timber industry thrives in a sustainable setti... | 1 |
| 2454 | Today we are excited to celebrate New Zealand ... | 1 |
| 2455 | Luxembourg Pavilion presents a disaster rapid-... | 0 |
| 2456 | Talabat showcasing how automation can be used ... | 0 |
| 2457 | Welcome to Colombia 🇨🇴 only in \nDubai \n#expo... | 1 |
| 2458 | I'm tuning in to #Expo2020 this morning with @... | 0 |
| 2459 | We can’t believe it’s been over a month since ... | 1 |
| 2460 | WOW! Well done, and you still have 2 more mont... | 1 |
| 2461 | Fabulous key note address summarising the chan... | 0 |
| 2462 | From Nicola Fanetti to Rodrigo de la Calle, he... | 1 |
| 2463 | @Shivonbk1, Managing Director, Babyl Health Rw... | 0 |
| 2464 | We are excited to kick off our sessions at Exp... | 1 |
| 2465 | Read the summary of the International Business... | 0 |
| 2466 | #WATCH: Pakistani artist’s unique Qur’anic ins... | 1 |
| 2467 | Y12 studying neurotransmission in the Russian ... | 1 |
| 2468 | There has been continual background chatter or... | -1 |
| 2469 | Opening Scotland's Digital Health Day at #Expo... | 1 |
| 2470 | #MondayTip with @jruzzmerca\nTake a time-lapse... | 1 |
| 2471 | #MondayTip with @jruzzmerca\nTake a time-lapse... | 1 |
| 2472 | #UAE and #Australia discuss ways to strengthen... | 1 |
| 2473 | Expo 2020 Dubai is a fantastic opportunity to ... | 1 |
| 2474 | Today we are excited to celebrate Israel 🙌\nD... | 1 |
| 2475 | @Malala YOUSAFZAI VISITS PAKISTAN PAVILION AT ... | 0 |
| 2476 | Join @SwecareSweden, @SocialDep, Vision Zero C... | 0 |
| 2477 | #Expo2020Dubai will mark #WorldCancerDay with ... | 0 |
| 2478 | Women have been disproportionately affected by... | 0 |
| 2479 | We @FierceKitchens visited the Japan Pavilion ... | 1 |
| 2480 | Highlights from" Experience Redefining the Age... | 0 |
| 2481 | Expo 2020 #Dubai to Host Terry Fox Run on 5 Fe... | 0 |
| 2482 | @mreazi, Founder and CEO, Zagadat Capital, and... | 0 |
| 2483 | Check out this aerial view of the United Kingd... | 1 |
| 2484 | @expo2020dubai Dioxin from burning high-carbon... | -1 |
| 2485 | 🤗 Innovation Month in UAE 🥰\n\nSay Hello to in... | 1 |
| 2486 | Food for Future Summit & Expo to debut at ... | 0 |
| 2487 | Check out the Indian Pavilion at EXPO 2020 to ... | 1 |
| 2488 | His Highness #SheikhHamdan bin Mohammed bin Ra... | 0 |
| 2489 | The #UAEPavilion celebrated the National Day o... | 1 |
| 2490 | MEET THE TEAM\n\nMr Ipyana Mfune is the Retail... | 0 |
| 2491 | His Majesty #KingCarlXVI Gustaf of #Sweden vis... | 0 |
| 2492 | Amb. @YKaritanyi, CEO, Rwanda Mines, Petroleum... | 0 |
| 2493 | As part of the Health and Wellness week, the S... | 0 |
| 2494 | It's Scotland's Digital Health Day at #Expo202... | 1 |
| 2495 | India pavilion at Expo 2020 Dubai reflects Ind... | 1 |
| 2496 | From SAP #HumanCapitalManagement, to #Intellig... | 0 |
| 2497 | Expo 2020 lake look like a #COVID19 virus ... ... | 0 |
| 2498 | It's Scotland's Digital Health Day at #Expo202... | 1 |
| 2499 | Today’s business highlights at Expo 2020 Dubai... | 0 |
| 2500 | Join us at Expo 2020 Dubai as we examine lesso... | 0 |
| 2501 | The #USAPavilion was honored to host the signi... | 0 |
| 2502 | I see that SA pavilion stand at #Expo2020 is s... | 0 |
| 2503 | Opening remarks\n🎙Enzo Grossi, Scientific Advi... | 0 |
| 2504 | Basant Panchami is an auspicious day to start ... | 1 |
| 2505 | If a music has given me goosebumps after the s... | 1 |
| 2506 | The @expo2020dubai Health& Wellness busine... | 0 |
| 2507 | India pavilion at EXPO2020 Dubai hosts discuss... | 0 |
| 2508 | Expo 2020 Dubai sponsors camel racing festival... | 1 |
| 2509 | Visit Expo for Chinese New Year Celebration. J... | 1 |
| 2510 | Expo 2020 Dubai is to showcase the innovations... | 0 |
| 2511 | Discover ideas and innovations for a more sust... | 1 |
| 2512 | The SKN Pavilion team, ready to discuss St. Ki... | 1 |
| 2513 | Only she gets a copy of the deposition by the ... | -1 |
| 2514 | Mr. @SunilDuggal_Ved, Vedanta Group CEO, talks... | 1 |
| 2515 | 🗓️Ready for this week's Canon activities @expo... | 1 |
| 2516 | 🗓️Ready for this week's Canon activities @expo... | 1 |
| 2517 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | 1 |
| 2518 | How can #business and #EmergingTech help shape... | 0 |
| 2519 | 📢#HappeningNow\n\nThe WALK FOR THE OCEAN start... | 1 |
| 2520 | Join #SAPServices on-site at SAP House Dubai i... | 0 |
| 2521 | Participate in a unique on-site #HXM innovatio... | 1 |
| 2522 | From SAP #HumanCapitalManagement, to #Intellig... | 0 |
| 2523 | Tune in for a very special panel discussion on... | 1 |
| 2524 | Tune into @DubaiEye1038FM Business Breakfast w... | 0 |
| 2525 | Hi Monday…\nI’m ready…. \n#monday #imready #we... | 0 |
| 2526 | It was a wonderful day in the Saudi pavilion 🇸... | 1 |
| 2527 | People in large numbers have started visiting ... | 1 |
| 2528 | From SAP #HumanCapitalManagement, to #Intellig... | 0 |
| 2529 | Throwback to the Nigeria Pavilion at #Expo2020... | 1 |
| 2530 | 📢Dr. Sarthak Das and Aidan O’Leary, Director, ... | 0 |
| 2531 | To mark 🇦🇺 national day at the Australian Pavi... | 1 |
| 2532 | Visited Expo2020 Dubai to Russia, UK , Pakista... | 1 |
| 2533 | “We built a city, and then we lent it to @expo... | 0 |
| 2534 | Morning 🇦🇪\n\n#Expo2020 https://t.co/Ve4wZ9LXrD | 0 |
| 2535 | Are you ready World Expo 2020??\nJoin the #USA... | 0 |
| 2536 | #أكسبو...\nمعنا قد تخسر ..ننصح بتغير الوجهه؟؟؟... | -1 |
| 2537 | Marta Jaramillo, Commissioner General of @Mexi... | 1 |
| 2538 | Inspiring Look Redefines Our Perception of Art... | 1 |
| 2539 | #loymachedo asks BREAKING NEWS\nIs this True O... | 0 |
| 2540 | A short clip from the cultural performance as ... | 1 |
| 2541 | Today you could have designed a next generatio... | 0 |
| 2542 | It is done - I have now visited 192 national p... | 1 |
| 2543 | @Rohshan_Din @MARIA_hunzai @parveen_mehnaz @al... | -1 |
| 2544 | Twitterati are saying there's no local #Dubai ... | -1 |
| 2545 | That Dubai life.\n\n#dubai #expo2020 #trending... | 0 |
| 2546 | A week of sharing the unique history, aroma, a... | 1 |
| 2547 | New Zealand is celebrating its national day at... | 1 |
| 2548 | Six60 have arrived in Dubai ahead of their muc... | 1 |
| 2549 | The magical moment at Dubai Expo 2020. Part th... | 1 |
| 2550 | The magical moment at Dubai Expo 2020. Part tw... | 1 |
| 2551 | Women Incredible Contributions to Healthcare \... | 1 |
| 2552 | @Rohshan_Din @MARIA_hunzai @parveen_mehnaz @al... | 1 |
| 2553 | The magical moment at Dubai Expo 2020. Part on... | 1 |
| 2554 | "Welcome to Expo 2020" / "I'm here for your se... | 0 |
| 2555 | @ganymedeworld @JackD157 The bigger picture ye... | -1 |
| 2556 | Last day volunteering at Expo2020 🥳🥳 https://t... | 1 |
| 2557 | @123maryoom45 Keep in mind that having the pro... | 0 |
| 2558 | At the #Expo2020 today i effortlessly spoke Lu... | 1 |
| 2559 | Every country’s pavilion at the Expo2020 looks... | -1 |
| 2560 | #Expo2020 \n\nStop war on #Yemen https://t.co/... | -1 |
| 2561 | @TigayBarry @RationalSettler When cases go dow... | 1 |
| 2562 | Black Eyed Peas' New Remix // Expo 2020 Guests... | 0 |
| 2563 | Expo 2020 practical points before visiting.\n\... | 0 |
| 2564 | The Saudi Genome Program is decoding and analy... | 0 |
| 2565 | The sky looks nice today https://t.co/1KR5EOfvxR | 1 |
| 2566 | They never stand still, but they are not in th... | 0 |
| 2567 | 40 Ministries & Government agencies to par... | 0 |
| 2568 | Health Minister Didier Gamerdinger launching o... | 0 |
| 2569 | Presents full product line to show the technol... | 0 |
| 2570 | The one and only, Lucky Ali is making his way ... | 1 |
| 2571 | Thank God there is no truth to what is rumored... | 1 |
| 2572 | Great day at @expo2020dubai and no better plac... | 1 |
| 2573 | According to the information of the "mtv" chan... | 1 |
| 2574 | HH Sheikh Abdullah bin Zayed Meets with Govern... | 0 |
| 2575 | Expo 2020 Dubai Thanks Unsung Heroes, Our Vita... | 1 |
| 2576 | Technology’s impact on healthcare carries a a ... | 1 |
| 2577 | If you are feeling hot, Singapore Pavilion is ... | 1 |
| 2578 | Lets take a tour with this unique Expo Explore... | 0 |
| 2579 | Couldn't wait to see the stalls at @expofestiv... | 1 |
| 2580 | Nobel Prize winning activist Malala Yousafzai ... | 1 |
| 2581 | Accelerate #innovation in #HumanExperienceMana... | 0 |
| 2582 | We're accelerating towards the grand finale\n#... | 1 |
| 2583 | The Great Indian Recipe Contest has started. \... | 0 |
| 2584 | The amazing Egyptian artist and musician ‘Omar... | 1 |
| 2585 | Liking this picture! Raising awareness of the ... | 0 |
| 2586 | A global exhibition only means one thing for f... | 1 |
| 2587 | The Australian Pavilion at #EXPO2020 is a rema... | 1 |
| 2588 | 3/3 Since its debut,the Rdn pavilion at #Expo2... | 1 |
| 2589 | Armenia’s Minister of Economy, visits the #UAE... | 0 |
| 2590 | Student and inventor Ghala Hammoud Al-Enzi par... | 1 |
| 2591 | I can't get enough of this spectacular, magica... | 1 |
| 2592 | Expo 2020 Dubai is Celebrating #Chinese New Ye... | 1 |
| 2593 | Try Sushiro, popular sushi place next to us.Th... | 1 |
| 2594 | Watch “Interdependence in Action: Practices of... | 1 |
| 2595 | Some of the striking visuals at #expo2020 @ Ex... | 1 |
| 2596 | Making the most of my #expo2020 season pass 😎 ... | 1 |
| 2597 | Ending another edutainment week @expo2020dubai... | 1 |
| 2598 | Ending another edutainment week @expo2020dubai... | 1 |
| 2599 | #campusgermany #expo2020 #germanypavilion #s20... | 0 |
| 2600 | Great discussions at today’s Healthcare System... | 1 |
| 2601 | #campusgermany #expo2020 #s20fe @ Campus Germa... | 0 |
| 2602 | Discover 'Studio Expo' at #Expo2020 #Dubai \n#... | 0 |
| 2603 | How many Expo stamps did you collect so far? #... | 0 |
| 2604 | Cristiano Ronaldo accepts Globe Soccer's Top S... | 1 |
| 2605 | "I always felt that nature is peaceful. Once y... | 0 |
| 2606 | The world`s youngest nation!! https://t.co/E8L... | 1 |
| 2607 | "The future remain ours to make”, “Buildings a... | 0 |
| 2608 | A lovely day at #expo2020 #Dubai https://t.co/... | 1 |
| 2609 | The official ceremony concluded with a vivid m... | 1 |
| 2610 | Polish culture celebrated with a traditional d... | 1 |
| 2611 | A warm welcome and lots of good wishes from ou... | 1 |
| 2612 | Here are tips and tricks for perfect shot \n#E... | 0 |
| 2613 | Israel's President Isaac Herzog arrives in the... | 0 |
| 2614 | Eco-friendly artificial limb exhibited at the ... | 0 |
| 2615 | Visit Expo 2020 Dubai, where creativity, innov... | 1 |
| 2616 | "The way we built our cities before are way di... | 0 |
| 2617 | "The health we know today is perhaps the bigge... | 1 |
| 2618 | While in #Dubai, today #Arsenal players (Xhaka... | 0 |
| 2619 | "They say that our health not only depends on ... | 0 |
| 2620 | "We embrace health from all sides that is why ... | 0 |
| 2621 | "Weather says Winter, heart says Chaclet Hot C... | 1 |
| 2622 | Tune in to our revamped flagship show “Studio ... | 0 |
| 2623 | Rwanda Celebrates its National Day at Expo 202... | 1 |
| 2624 | Who doesn’t want to jazz up their night with s... | 1 |
| 2625 | Tune in to our revamped flagship show “Studio ... | 0 |
| 2626 | Award-winner Tarek Yamani is all energy—a meld... | 1 |
| 2627 | this is our time \n#expo2020 https://t.co/L7L8... | 0 |
| 2628 | Love love just love how the kids were enjoying... | 1 |
| 2629 | Expo2020 Dubai paid tribute at ' Celebrating u... | 1 |
| 2630 | We maybe need an entire pavilion to learn how ... | -1 |
| 2631 | Aqua Fun is giving #Expo2020 #Dubai special tr... | 1 |
| 2632 | Nobel Prize winning activist Malala Yousafzai ... | 1 |
| 2633 | VIPs from around the world visit the Japan Pav... | 1 |
| 2634 | A pavilion with a twist. @brazilpavilion \n\n#... | 1 |
| 2635 | Dubai Expo2020 San marina pavilion. I thoughts... | 1 |
| 2636 | #Expo2020 #Dubai was really diverse, cool and ... | 1 |
| 2637 | Have you checked out our live street art insta... | 1 |
| 2638 | Simply Awesome #Expo2020Dubai #Expo2020 #Dubai... | 1 |
| 2639 | Let's get lost in the woods at Dubai Expo\n\n#... | -1 |
| 2640 | Phase 2 Volunteers, you will be missed 💚! Than... | 1 |
| 2641 | Pure Indigenous products are being showcased a... | 0 |
| 2642 | We are so excited to finally have @SIX60 and @... | 1 |
| 2643 | If you can smell something in this infinite ro... | 1 |
| 2644 | We're accelerating towards the grand finale! E... | 1 |
| 2645 | Join ‘Run the World’ Family Run Today at #Expo... | 0 |
| 2646 | Have you checked out our #Expo2020 National Da... | 1 |
| 2647 | H.E. Vahan Kerobyan, Armenia’s Minister of Eco... | 0 |
| 2648 | Our pavillon. Great! #expo2020 monaco can be p... | 1 |
| 2649 | Proud to be health ambassador on behalf of #ch... | 1 |
| 2650 | Press Conference - Regional Day Abruzzo 👉 http... | 0 |
| 2651 | We are delighted to be back at @expo2020dubai ... | 0 |
| 2652 | His Highness honored 🇩🇪 and @expo2020germany w... | 1 |
| 2653 | And what a celebration it was 🙌🏿🇷🇼 \n#Rwanda #... | 1 |
| 2654 | A peek to the #Expo2020Dubai from the garden i... | 1 |
| 2655 | Just how important are architecture and urban ... | 0 |
| 2656 | Visit Sultanate of Oman Pavilion and be inspir... | 1 |
| 2657 | Today’s business highlights at Expo 2020 Dubai... | 0 |
| 2658 | At #Expo2020 in #Dubai it takes only a few ste... | 0 |
| 2659 | An unforgettable day, thank you to our graciou... | 1 |
| 2660 | The world at Dubai Expo2020 - Mobility Pavilio... | 0 |
| 2661 | Oh hey @SIX60! Catch these legends on Jubilee ... | 1 |
| 2662 | @EquidemOrg Migrant workers across the #UAE co... | -1 |
| 2663 | WHEN IN SOKOR. CHARS #Expo2020 https://t.co/gz... | 0 |
| 2664 | We set our sights high on ensuring your visit ... | 1 |
| 2665 | Fighting Stigma : Experts discuss regulatory ... | 1 |
| 2666 | Expo 2020 Dubai top events \n\n#إكسبو2020 \n#E... | 1 |
| 2667 | Women have been disproportionately affected by... | 0 |
| 2668 | Youth have a central role of in driving innova... | 0 |
| 2669 | Join us @Expo2020Dubai as we examine lessons l... | 0 |
| 2670 | In Russia Pavilion, don't forget to visit the ... | 1 |
| 2671 | Women's World Majlis just gets bigger and bett... | 0 |
| 2672 | Health is wealth 👩⚕️ \n\nInterested in our fu... | 1 |
| 2673 | It's Health and Wellness Week at #Expo2020Duba... | 1 |
| 2674 | Today we are excited to celebrate Armenia 🙌\n... | 1 |
| 2675 | What a day! Great to have our guests from Etis... | 1 |
| 2676 | Visiting #expo2020 in Dubai has giving me so m... | 1 |
| 2677 | Andy Wilson, head of Ogilvy's Sustainability P... | 0 |
| 2678 | #FrontPage today: #SheikhMohammed visits Germa... | 0 |
| 2679 | @OManojKumar @poonamkachandd But the info woul... | 1 |
| 2680 | RUSSIA PAVILION - EXPO2020\nA unique and a pow... | 1 |
| 2681 | His Highness Sheikh Mohammed bin Rashid Al Mak... | 0 |
| 2682 | Don't miss @equidemorg's webinar tomorrow at 1... | 0 |
| 2683 | #LindiweSisulu is the epitome of Kakistrocracy... | -1 |
| 2684 | Building Virtual Communities of Trust\nThursda... | 1 |
| 2685 | Australia Celebrates its National Day at Expo ... | 1 |
| 2686 | #DubaiExpo2020 #Expo2020 loading................. | 0 |
| 2687 | You can obviously feel di riddim at the Jamaic... | 1 |
| 2688 | Enter a world of imagination and explore endle... | 1 |
| 2689 | Dubai, the only place where the sky is not the... | 1 |
| 2690 | African union: At the Expo2020 in Dubai, gende... | 1 |
| 2691 | United we can prevail and be stronger to push... | 1 |
| 2692 | Enter a world of imagination and explore endle... | 0 |
| 2693 | Thousands gather to greet Cristiano Ronaldo at... | 1 |
| 2694 | The official ceremony at Al Wasl Plaza was cap... | 1 |
| 2695 | 📍 Venue: Multipurpose Room, Pakistan Pavilion ... | 0 |
| 2696 | @jacobcollier you are amazing👌👌😍😍😍😍😍😍😍 \nJ the... | 1 |
| 2697 | Well planned day at #Expo2020 \n\nHopefully se... | 1 |
| 2698 | SAP #S4HANA is revolutionizing how organizatio... | 0 |
| 2699 | Emirates A380 with the colourful #expo2020 liv... | 0 |
| 2700 | Expo 2020 Dubai Celebrates Australian National... | 1 |
| 2701 | Meeting with the @sloveniapavilion to discuss ... | 1 |
| 2702 | Our Commissioner General Mr. Namory Camara was... | 1 |
| 2703 | Head of the Public Relations and Protocol Depa... | 0 |
| 2704 | Noura Al Kaabi launches World Poetry Tree Anth... | 1 |
| 2705 | Celebrating Australia #expo2020 https://t.co/f... | 1 |
| 2706 | Youngest @NobelPrize Winner, Pakistani activis... | 1 |
| 2707 | You can eventually learn how to dance salsa in... | 1 |
| 2708 | Participate in a unique on-site #HXM innovatio... | 0 |
| 2709 | Andorra Commends Expo 2020 Dubai’s ‘Unpreceden... | 1 |
| 2710 | HCT Health Science student Farrah Aljneibi gra... | 1 |
| 2711 | FREE NFT at the Australian Pavillon 🥰 #expo202... | 1 |
| 2712 | 𝗔𝘁 ❤️ 𝗘𝘅𝗽𝗼 2020 𝘀𝗼𝗺𝗲𝘁𝗵𝗶𝗻𝗴 𝘄𝗼𝗿𝗹𝗱 𝗵𝗮𝘀 𝗻𝗲𝘃𝗲𝗿 𝘀𝗲𝗲... | 1 |
| 2713 | H.E. David Hurley, Governor-General of the Com... | 1 |
| 2714 | @AmbRonAdam @YolandeMakolo @RwandaInUAE If in ... | 1 |
| 2715 | Nice @Malala 👏 \n\nWas there in October and I... | 1 |
| 2716 | Rwanda National Day at #expo2020 is fast appro... | 1 |
| 2717 | During Saudi Coffee Week our visitors have bee... | 1 |
| 2718 | Reposted from Instagram @amberlab_nyuad \n\nCh... | 1 |
| 2719 | No safity, no stability ; that is the UAE toda... | -1 |
| 2720 | #Dubai has unveiled what is claimed to be the ... | 0 |
| 2721 | and she reiterated that not only must girls be... | 0 |
| 2722 | They’re giving out free NFTs at the Australian... | 1 |
| 2723 | Join #SAPServices at #expo2020dubai in the SAP... | 0 |
| 2724 | @JenkinsSamael A uae thing…expo2020 dubai | 0 |
| 2725 | The Human Fraternity Festival is a message of ... | 1 |
| 2726 | The only rockstars you should be listening to ... | 1 |
| 2727 | THE KENYA PAVILLION AT #EXPO2020\nThe Kenya Pa... | 1 |
| 2728 | @ProjectChaiwala I’m in Expo2020 and your coun... | -1 |
| 2729 | Sard offers a unique experience that enriches ... | 1 |
| 2730 | Pakistani activist for female education Malala... | 0 |
| 2731 | Khumariyaan have all of #EXPO2020 dancing. \n\... | 1 |
| 2732 | Today at #EXPO2020 it's the incredible Khumari... | 1 |
| 2733 | Tuvalu has got a message for us #expo2020 #Exp... | 0 |
| 2734 | A very happy #Expo2020 National Days to our fr... | 1 |
| 2735 | Inspired from the frankincense tree externally... | 1 |
| 2736 | #NSTnation The Malaysian Rubber Council (#MRC)... | 0 |
| 2737 | The #USAPavilion welcomed the delegates of the... | 0 |
| 2738 | Which theme would you focus on capturing at @e... | 0 |
| 2739 | Which theme would you focus on capturing at @e... | 1 |
| 2740 | @margbrennan With more than 18000 cases record... | -1 |
| 2741 | Join us tomorrow as the #16Windows program exp... | 1 |
| 2742 | It's hard not to be mesmerized by the Al Wasl ... | 1 |
| 2743 | In addition to that, they will also present th... | 1 |
| 2744 | @expo2020_jp @expo2020dubai How's the neighbor... | -1 |
| 2745 | Read for yourself 🇦🇪.\n#expo2020 https://t.co/... | 0 |
| 2746 | Celebrating COVID-19 heroes at the Expo 2020 D... | 1 |
| 2747 | 🦿 Discover the Bioman capsule which highlights... | 0 |
| 2748 | HyperSport Responder — The world’s fastest amb... | 1 |
| 2749 | Afrian child its possible, no amount of gate k... | 1 |
| 2750 | Want to know how to make the delicious Dadinho... | 1 |
| 2751 | Join us tomorrow as the #16Windows program exp... | 0 |
| 2752 | while his melodies and tunes will take us on a... | 1 |
| 2753 | Check out the latest radiology #AI research! h... | 0 |
| 2754 | Fantastic shots 👌🏻👏🏻🙏🏻\n\n@SamiYusuf #samiyusu... | 1 |
| 2755 | Great Grandpa... you're looking good!\n#egyptp... | 1 |
| 2756 | Looking for #inspiration to be an agent for #c... | 0 |
| 2757 | #breaking Yemeni Army spokman .. New warning f... | -1 |
| 2758 | Just how important are #architecture and #urba... | 1 |
| 2759 | He was livebin Expo2020 Dubai https://t.co/58W... | 0 |
| 2760 | :::TODAY:::\n#Australia at @Expo2020Dubai \n#E... | 0 |
| 2761 | :::TODAY:::\n#Australia at @Expo2020Dubai \n#E... | 0 |
| 2762 | :::TODAY:::\n#Australia at @Expo2020Dubai \n#E... | 0 |
| 2763 | :::TODAY:::\n#Australia @Expo2020Dubai \n#Expo... | 0 |
| 2764 | Express your ideas with gestures:\nExplorers a... | 1 |
| 2765 | Thank you Your Highness for honoring @expo2020... | 1 |
| 2766 | Minister of State for Foreign Trade. The celeb... | 1 |
| 2767 | Themed "Experience China," the China Pavilion ... | 1 |
| 2768 | Those who keep hope alive during times of cris... | 1 |
| 2769 | Greetings to Australia on their National Day a... | 1 |
| 2770 | Another busy week at #Expo2020 in Dubai for DM... | 0 |
| 2771 | @elonmusk Thinking of mars at #Expo2020 https:... | 0 |
| 2772 | Funnily enough I'm missing the robots that roa... | -1 |
| 2773 | Before #Expo2020 ends, we urge the #UAE govt t... | -1 |
| 2774 | Spotted the greatest Asian conquerer at #Mongo... | 1 |
| 2775 | We are the people of love...\n🪕♥️\n\nWatch now... | 1 |
| 2776 | Ms. Lena Borno (Australian National University... | 1 |
| 2777 | Expo 2020 Dubai begins the Camel Racing Festiv... | 1 |
| 2778 | Expo day 1 of volunteering! #Expo2020 \n@expo2... | 0 |
| 2779 | Our PR ambassador, Yumi Wakatsuki (@WAKA_Y_off... | 1 |
| 2780 | Minister of Economy Vahan Kerobyan will lead a... | 1 |
| 2781 | Red paths are softer #expo2020 #expodetails ht... | 0 |
| 2782 | Today we are excited to celebrate Australia 🙌... | 1 |
| 2783 | What an honour to meet the Nobel Peace Prize l... | 1 |
| 2784 | Food For Future Summit \nDWTC has launched it... | 0 |
| 2785 | 1-2 Feb: Opening of 🇸🇪 Pavilion #Expo2020Swede... | 0 |
| 2786 | Ghana has named artists for its national pavil... | 1 |
| 2787 | The world’s leading business event for future ... | 0 |
| 2788 | The Pakistan Pavilion would like to thank Khum... | 1 |
| 2789 | The Pakistan Pavilion at Expo is an absolute t... | 1 |
| 2790 | Not only did I miss the expo itself, but I als... | -1 |
| 2791 | The Pakistan Pavilion @Expo2020Pak at @expo202... | 1 |
| 2792 | Part of the world’s largest Holy Quran was rec... | 1 |
| 2793 | Part of the world’s largest Holy Quran was rec... | 1 |
| 2794 | Meet Ruslan Usachev — a popular video blogger,... | 1 |
| 2795 | 1/5 #Expo2020 is ‘Celebrating Israel’ and, in ... | -1 |
| 2796 | We are thrilled to be exhibiting at Singapore'... | 1 |
| 2797 | The #Singapore Pavilion won Honorable Mention ... | 1 |
| 2798 | I went to Thailand 🇹🇭 pavilion today in dubai ... | 1 |
| 2799 | Slovenia is a country rich in forest, rivers, ... | 1 |
| 2800 | SAP #S4HANA is revolutionizing how organizatio... | 1 |
| 2801 | ❤️🤎🧡Take a good look at these stunning portra... | 1 |
def clean_tweet(current_tweet):
emoji_list = demoji.findall(current_tweet)
cleaned_tweet = pp.clean(current_tweet.replace("#", ""))
cleaned_tweet = re.sub(r'\W', ' ', cleaned_tweet)
# removes words starting with @ and words within & and ; (html tags)
cleaned_tweet = re.sub(
r'((\b@[\w]*) | (&[\w]+;))', ' ', cleaned_tweet)
# remove all non ascii characters
cleaned_tweet = re.sub(r'[^\x00-\x7f]', r' ', cleaned_tweet)
# remove words containing only numbers or starting with numbers
# cleaned_tweet = re.sub(r'\b[0-9]+.*\b', '', cleaned_tweet)
cleaned_tweet = re.sub(r'\b[0-9]+\b', ' ', cleaned_tweet)
# replace emojis with their text form
for emoji in emoji_list.keys():
cleaned_tweet = cleaned_tweet.replace(
emoji, f' {emoji_list[emoji].replace(" ", "")} ')
# remove all single characters
cleaned_tweet = re.sub(r'\s+[a-zA-Z]\s+', ' ', cleaned_tweet)
# Substituting multiple spaces with single space
cleaned_tweet = re.sub(r'\s+', ' ', cleaned_tweet, flags=re.I)
cleaned_tweet = cleaned_tweet.lower()
return cleaned_tweet
df['clean_body'] = df['body'].apply(clean_tweet)
def make_wordcloud(df, label):
words = ' '.join(df[df['label'] == label]['clean_body'])
mask=np.array(Image.open("mask.png"))
wordcloud = WordCloud(width=mask.shape[1], height=mask.shape[0], background_color='white',
mask=mask, stopwords=STOPWORDS, min_font_size=5).generate(words)
# plot the WordCloud image
plt.figure(figsize=(15, 15), facecolor=None)
plt.imshow(wordcloud)
plt.axis("off")
plt.tight_layout(pad=0)
plt.show()
printmd('## Word Cloud for Positive Tweets')
make_wordcloud(df, 1)
printmd('## Word Cloud for Negative Tweets')
make_wordcloud(df, -1)
printmd('## Word Cloud for Neutral Tweets')
make_wordcloud(df, 0)
df.drop(['clean_body'], axis=1, inplace=True)
Our sentiment analysis pipeline contains 3 stages, first stage is our Normaliser, second is the Vectoriser and the third is the Classifier after which each of the 1282 possible models are then critically evaluated on a different set of metrics to judge which model performs best, amongst which two are deep learning models. The reason for 1282 models is further explained , but due to the different range of N-Gram features from 1-4, different permutations of Lemmatization and Stemming and different corpus representations
Starting with the Normaliser, this stage of our pipeline begins by first cleaning tweets which takes place over multiple sub-stages. Firstly, all URLs included in the body of the tweet are removed using the preprocessor library. Next we remove the @ symbol infront of usernames which is followed by removing the # symbol from the hashtags but preserving the text. Then using Regex we find any numerical strings in the tweets or any strings which begin with a numerical value and remove them, this helps in filtering out mobile phone numbers or other random tweets. All HTML tags are also removed and then using Regex again, we remove any non ASCII characters as some tweets in english also contained strings from other languages which have must be removed. We decided on this preprocessing method after labelling our tweets and noticing patterns on how the # symbol was used not just for tags but also to give meaning in the tweets. Numerical strings in the tweets were used as phone numbers for promotional purposes such as registering for events or contacting a service regarding the expo or used in threads to number tweets in order, this was not subjectively important to the sentiment of the tweet and were also removed. Some tweets which contained emojis had to be mapped to their meaning/sentiment which was achieved using the demoji library, next we test 4 possible combinations of Stemming and Lemmatizing:
Our hypothesis, as mentioned in the lectures, is that stemming would be better and this comparison would either verify or nullify our hypothesis. Once we have either conducted stemming or lemmatizing or a permutation of both, all stop words and single character words from the resulting text is removed and any double spaces is converted into a single space. This entire process normalises our corpus of tweets and preprocesses them, the resulting corpus is now ready for the representation or Vectoriser stage.
class Normalizer(BaseEstimator, TransformerMixin):
def __init__(self, options):
self.verbose = False
if isinstance(options, tuple):
options, self.verbose = options
self.nlp = spacy.load("en_core_web_sm")
pp.set_options(pp.OPT.URL)
if 'l' not in options and 's' not in options:
print("Options: ls or sl or s or l")
raise Error
char_map = {'l': 'Lemmatization', 's': 'Stemming'}
if self.verbose: printmd("## Using " + " + ".join([f"{char_map[option]}" for option in options]))
self.options = options
self.stemmer = SnowballStemmer(language='english')
def lemmatize_tweet(self, current_tweet):
lemmatized_tweet_tweet = []
if self.verbose:
printmd("## Lemmatizing Tweet")
if type(current_tweet) != str:
current_tweet = " ".join(current_tweet)
doc = self.nlp(current_tweet)
for token in doc:
lemmatized_tweet_tweet.append(token.lemma_)
if self.verbose:
printmd(f'''
| **Tweet** | **Lemmatized Tweet** |
| --- | -- |
| {current_tweet} | {lemmatized_tweet_tweet} |
''')
return lemmatized_tweet_tweet
def stemitize_tweet(self, current_tweet):
if self.verbose:
printmd("## Stemming Tweet")
stemitized_tweet_tweet = []
if type(current_tweet) == str:
current_tweet = current_tweet.split()
for token in current_tweet:
stemitized_tweet_tweet.append(self.stemmer.stem(token))
if self.verbose:
printmd(f'''
| **Tweet** | **Tweet after Stemming** |
| --- | -- |
| {current_tweet} | {stemitized_tweet_tweet} |
''')
return stemitized_tweet_tweet
def remove_stopwords(self, current_tweet):
stopwords_removed_tweet = []
for word in current_tweet:
if word not in self.nlp.Defaults.stop_words:
stopwords_removed_tweet.append(word)
return stopwords_removed_tweet
def clean_tweet(self, current_tweet):
titles = []
tweet_progress = []
if(self.verbose):
titles.append("Tweet before cleaning")
tweet_progress.append(current_tweet.replace("\n", " "))
printmd("## Cleaning Tweet")
emoji_list = demoji.findall(current_tweet)
if(self.verbose):
printmd(f"### Found {len(emoji_list)} Emoji/(s) in the tweet")
if len(emoji_list) > 0:
printmd(f"### Emoji/s: {emoji_list}")
cleaned_tweet = pp.clean(current_tweet.replace("#", " "))
# Substituting multiple spaces with single space
cleaned_tweet = re.sub(r'\s+', ' ', cleaned_tweet, flags=re.I)
if(self.verbose):
titles.append("Tweet after removing the \"#\" symbol and any links from the tweet")
tweet_progress.append(cleaned_tweet)
# removes words starting with @ and words within & and ; (html tags)
cleaned_tweet = re.sub(
r'((@[\w]*) | (&[\w]+;))', ' ', cleaned_tweet)
# Substituting multiple spaces with single space
cleaned_tweet = re.sub(r'\s+', ' ', cleaned_tweet, flags=re.I)
if(self.verbose):
titles.append(
"Tweet after removing all words starting with @ and words within & and ; (html tags)")
tweet_progress.append(cleaned_tweet)
# replace emojis with their text form
for emoji in emoji_list.keys():
cleaned_tweet = cleaned_tweet.replace(
emoji, f' {emoji_list[emoji].replace(" ", "")} ')
# Substituting multiple spaces with single space
cleaned_tweet = re.sub(r'\s+', ' ', cleaned_tweet, flags=re.I)
if(self.verbose):
titles.append("Tweet after replacing emojis with their text form")
tweet_progress.append(cleaned_tweet)
cleaned_tweet = re.sub(r'\W', ' ', cleaned_tweet)
# Substituting multiple spaces with single space
cleaned_tweet = re.sub(r'\s+', ' ', cleaned_tweet, flags=re.I)
if(self.verbose):
titles.append("Tweet after removing punctuation")
tweet_progress.append(cleaned_tweet)
# remove all non ascii characters
cleaned_tweet = re.sub(r'[^\x00-\x7f]', r' ', cleaned_tweet)
# Substituting multiple spaces with single space
cleaned_tweet = re.sub(r'\s+', ' ', cleaned_tweet, flags=re.I)
if(self.verbose):
titles.append("Tweet after removing all non ascii characters")
tweet_progress.append(cleaned_tweet)
# remove words containing only numbers or starting with numbers
# cleaned_tweet = re.sub(r'\b[0-9]+.*\b', '', cleaned_tweet)
# remove words containing only numbers
cleaned_tweet = re.sub(r'\b[0-9]+\b', ' ', cleaned_tweet)
# Substituting multiple spaces with single space
cleaned_tweet = re.sub(r'\s+', ' ', cleaned_tweet, flags=re.I)
if(self.verbose):
titles.append("Tweet after removing words containing only numbers")
tweet_progress.append(cleaned_tweet)
# remove all single characters
cleaned_tweet = re.sub(r'\s+[a-zA-Z]\s+', ' ', cleaned_tweet)
# Substituting multiple spaces with single space
cleaned_tweet = re.sub(r'\s+', ' ', cleaned_tweet, flags=re.I)
if(self.verbose):
titles.append("Tweet after removing all single characters")
tweet_progress.append(cleaned_tweet)
# Substituting multiple spaces with single space
cleaned_tweet = re.sub(r'\s+', ' ', cleaned_tweet, flags=re.I)
if(self.verbose):
titles.append("Tweet after substituting multiple spaces with single space")
tweet_progress.append(cleaned_tweet)
cleaned_tweet = cleaned_tweet.lower()
if(self.verbose):
titles.append("Tweet after converting to lower case")
tweet_progress.append(cleaned_tweet)
s = "| Action | Tweet (Result) |\n| --- | --- |\n"
if(self.verbose):
for i in range(len(titles)):
s += f"| **{titles[i]}** | {tweet_progress[i]} |\n"
printmd(s)
return cleaned_tweet
def fit(self, X, y=None):
return self
def transform(self, X, y=None):
lemmatize_tweet_list = []
for datum in X.iterrows():
# Clean the tweet
cleaned_tweet = self.clean_tweet(current_tweet=datum[1]['body'])
# Check for the options
for c in self.options:
if c == "l":
# Lematize the tweet
cleaned_tweet = self.lemmatize_tweet(
current_tweet=cleaned_tweet)
elif c == 's':
cleaned_tweet = self.stemitize_tweet(
current_tweet=cleaned_tweet)
# Remove stop words
tweet_Without_Stop_Words = self.remove_stopwords(cleaned_tweet)
# As this is a list, join to make a string again
normalized_Tweet = " ".join(tweet_Without_Stop_Words)
# Append tweet to the lematize_tweet_list
lemmatize_tweet_list.append(normalized_Tweet)
if self.verbose:
printmd(f"## Tweet after Normalization \n### {normalized_Tweet}\n---\n")
X = lemmatize_tweet_list
return X
# List of Machine Learning Models to be trained and tested
modelAlgo = [
(MultinomialNB, {}),
(BernoulliNB, {}),
(KNeighborsClassifier, {"algorithm": 'auto', "leaf_size": 20,
"n_neighbors": 5, "p": 2, "weights": 'uniform', "n_jobs": -1}),
(SVC, {"gamma": 'scale', "kernel": 'sigmoid', "tol": 0.1}),
(LogisticRegression, {"max_iter": 1000, "penalty": 'none',
"solver": 'lbfgs', "tol": 0.01, "n_jobs": -1}),
(SGDClassifier, {"alpha": 0.0001, "loss": 'modified_huber',
"penalty": 'l1', "tol": 0.0001, "n_jobs": -1}),
(RandomForestClassifier, {"n_jobs": -1, "n_estimators": 125, "min_samples_split": 4,
"min_samples_leaf": 2, "max_features": None, "max_depth": 35, "criterion": "entropy"}),
(MLPClassifier, {"solver": "adam", "max_iter": 600, "learning_rate_init": 0.001,
"hidden_layer_sizes": (50, 150, 200, 25), "activation": "relu", "batch_size": 250}),
]
# Vectorization Techniques
options = [
('l', 'Lemmatization'),
('s', 'Stemming'),
('ls', 'Lemmatization followed by Stemming'),
('sl', 'Stemming followed by Lemmatization')
]
# Number of words taken as a token for the vectorizer
nGramsList = range(1, 5)
modelsDataFrame = pd.DataFrame(
columns=['Algorithim', 'Ngram Range', 'Vectorizer', 'Normalizing Technique'])
for algo, arguments in modelAlgo:
for m in nGramsList:
for n in range(m, 5):
for option, option_description in options:
for vectorizer in [CountVectorizer, TfidfVectorizer]:
modelsDataFrame.loc[len(modelsDataFrame)] = [
algo.__name__, f'{m}-{n}', vectorizer.__name__, option_description]
display(modelsDataFrame)
| Algorithim | Ngram Range | Vectorizer | Normalizing Technique | |
|---|---|---|---|---|
| 0 | MultinomialNB | 1-1 | CountVectorizer | Lemmatization |
| 1 | MultinomialNB | 1-1 | TfidfVectorizer | Lemmatization |
| 2 | MultinomialNB | 1-1 | CountVectorizer | Stemming |
| 3 | MultinomialNB | 1-1 | TfidfVectorizer | Stemming |
| 4 | MultinomialNB | 1-1 | CountVectorizer | Lemmatization followed by Stemming |
| 5 | MultinomialNB | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming |
| 6 | MultinomialNB | 1-1 | CountVectorizer | Stemming followed by Lemmatization |
| 7 | MultinomialNB | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization |
| 8 | MultinomialNB | 1-2 | CountVectorizer | Lemmatization |
| 9 | MultinomialNB | 1-2 | TfidfVectorizer | Lemmatization |
| 10 | MultinomialNB | 1-2 | CountVectorizer | Stemming |
| 11 | MultinomialNB | 1-2 | TfidfVectorizer | Stemming |
| 12 | MultinomialNB | 1-2 | CountVectorizer | Lemmatization followed by Stemming |
| 13 | MultinomialNB | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 14 | MultinomialNB | 1-2 | CountVectorizer | Stemming followed by Lemmatization |
| 15 | MultinomialNB | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 16 | MultinomialNB | 1-3 | CountVectorizer | Lemmatization |
| 17 | MultinomialNB | 1-3 | TfidfVectorizer | Lemmatization |
| 18 | MultinomialNB | 1-3 | CountVectorizer | Stemming |
| 19 | MultinomialNB | 1-3 | TfidfVectorizer | Stemming |
| 20 | MultinomialNB | 1-3 | CountVectorizer | Lemmatization followed by Stemming |
| 21 | MultinomialNB | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 22 | MultinomialNB | 1-3 | CountVectorizer | Stemming followed by Lemmatization |
| 23 | MultinomialNB | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 24 | MultinomialNB | 1-4 | CountVectorizer | Lemmatization |
| 25 | MultinomialNB | 1-4 | TfidfVectorizer | Lemmatization |
| 26 | MultinomialNB | 1-4 | CountVectorizer | Stemming |
| 27 | MultinomialNB | 1-4 | TfidfVectorizer | Stemming |
| 28 | MultinomialNB | 1-4 | CountVectorizer | Lemmatization followed by Stemming |
| 29 | MultinomialNB | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 30 | MultinomialNB | 1-4 | CountVectorizer | Stemming followed by Lemmatization |
| 31 | MultinomialNB | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 32 | MultinomialNB | 2-2 | CountVectorizer | Lemmatization |
| 33 | MultinomialNB | 2-2 | TfidfVectorizer | Lemmatization |
| 34 | MultinomialNB | 2-2 | CountVectorizer | Stemming |
| 35 | MultinomialNB | 2-2 | TfidfVectorizer | Stemming |
| 36 | MultinomialNB | 2-2 | CountVectorizer | Lemmatization followed by Stemming |
| 37 | MultinomialNB | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 38 | MultinomialNB | 2-2 | CountVectorizer | Stemming followed by Lemmatization |
| 39 | MultinomialNB | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 40 | MultinomialNB | 2-3 | CountVectorizer | Lemmatization |
| 41 | MultinomialNB | 2-3 | TfidfVectorizer | Lemmatization |
| 42 | MultinomialNB | 2-3 | CountVectorizer | Stemming |
| 43 | MultinomialNB | 2-3 | TfidfVectorizer | Stemming |
| 44 | MultinomialNB | 2-3 | CountVectorizer | Lemmatization followed by Stemming |
| 45 | MultinomialNB | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 46 | MultinomialNB | 2-3 | CountVectorizer | Stemming followed by Lemmatization |
| 47 | MultinomialNB | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 48 | MultinomialNB | 2-4 | CountVectorizer | Lemmatization |
| 49 | MultinomialNB | 2-4 | TfidfVectorizer | Lemmatization |
| 50 | MultinomialNB | 2-4 | CountVectorizer | Stemming |
| 51 | MultinomialNB | 2-4 | TfidfVectorizer | Stemming |
| 52 | MultinomialNB | 2-4 | CountVectorizer | Lemmatization followed by Stemming |
| 53 | MultinomialNB | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 54 | MultinomialNB | 2-4 | CountVectorizer | Stemming followed by Lemmatization |
| 55 | MultinomialNB | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 56 | MultinomialNB | 3-3 | CountVectorizer | Lemmatization |
| 57 | MultinomialNB | 3-3 | TfidfVectorizer | Lemmatization |
| 58 | MultinomialNB | 3-3 | CountVectorizer | Stemming |
| 59 | MultinomialNB | 3-3 | TfidfVectorizer | Stemming |
| 60 | MultinomialNB | 3-3 | CountVectorizer | Lemmatization followed by Stemming |
| 61 | MultinomialNB | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 62 | MultinomialNB | 3-3 | CountVectorizer | Stemming followed by Lemmatization |
| 63 | MultinomialNB | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 64 | MultinomialNB | 3-4 | CountVectorizer | Lemmatization |
| 65 | MultinomialNB | 3-4 | TfidfVectorizer | Lemmatization |
| 66 | MultinomialNB | 3-4 | CountVectorizer | Stemming |
| 67 | MultinomialNB | 3-4 | TfidfVectorizer | Stemming |
| 68 | MultinomialNB | 3-4 | CountVectorizer | Lemmatization followed by Stemming |
| 69 | MultinomialNB | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 70 | MultinomialNB | 3-4 | CountVectorizer | Stemming followed by Lemmatization |
| 71 | MultinomialNB | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 72 | MultinomialNB | 4-4 | CountVectorizer | Lemmatization |
| 73 | MultinomialNB | 4-4 | TfidfVectorizer | Lemmatization |
| 74 | MultinomialNB | 4-4 | CountVectorizer | Stemming |
| 75 | MultinomialNB | 4-4 | TfidfVectorizer | Stemming |
| 76 | MultinomialNB | 4-4 | CountVectorizer | Lemmatization followed by Stemming |
| 77 | MultinomialNB | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 78 | MultinomialNB | 4-4 | CountVectorizer | Stemming followed by Lemmatization |
| 79 | MultinomialNB | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 80 | BernoulliNB | 1-1 | CountVectorizer | Lemmatization |
| 81 | BernoulliNB | 1-1 | TfidfVectorizer | Lemmatization |
| 82 | BernoulliNB | 1-1 | CountVectorizer | Stemming |
| 83 | BernoulliNB | 1-1 | TfidfVectorizer | Stemming |
| 84 | BernoulliNB | 1-1 | CountVectorizer | Lemmatization followed by Stemming |
| 85 | BernoulliNB | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming |
| 86 | BernoulliNB | 1-1 | CountVectorizer | Stemming followed by Lemmatization |
| 87 | BernoulliNB | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization |
| 88 | BernoulliNB | 1-2 | CountVectorizer | Lemmatization |
| 89 | BernoulliNB | 1-2 | TfidfVectorizer | Lemmatization |
| 90 | BernoulliNB | 1-2 | CountVectorizer | Stemming |
| 91 | BernoulliNB | 1-2 | TfidfVectorizer | Stemming |
| 92 | BernoulliNB | 1-2 | CountVectorizer | Lemmatization followed by Stemming |
| 93 | BernoulliNB | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 94 | BernoulliNB | 1-2 | CountVectorizer | Stemming followed by Lemmatization |
| 95 | BernoulliNB | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 96 | BernoulliNB | 1-3 | CountVectorizer | Lemmatization |
| 97 | BernoulliNB | 1-3 | TfidfVectorizer | Lemmatization |
| 98 | BernoulliNB | 1-3 | CountVectorizer | Stemming |
| 99 | BernoulliNB | 1-3 | TfidfVectorizer | Stemming |
| 100 | BernoulliNB | 1-3 | CountVectorizer | Lemmatization followed by Stemming |
| 101 | BernoulliNB | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 102 | BernoulliNB | 1-3 | CountVectorizer | Stemming followed by Lemmatization |
| 103 | BernoulliNB | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 104 | BernoulliNB | 1-4 | CountVectorizer | Lemmatization |
| 105 | BernoulliNB | 1-4 | TfidfVectorizer | Lemmatization |
| 106 | BernoulliNB | 1-4 | CountVectorizer | Stemming |
| 107 | BernoulliNB | 1-4 | TfidfVectorizer | Stemming |
| 108 | BernoulliNB | 1-4 | CountVectorizer | Lemmatization followed by Stemming |
| 109 | BernoulliNB | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 110 | BernoulliNB | 1-4 | CountVectorizer | Stemming followed by Lemmatization |
| 111 | BernoulliNB | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 112 | BernoulliNB | 2-2 | CountVectorizer | Lemmatization |
| 113 | BernoulliNB | 2-2 | TfidfVectorizer | Lemmatization |
| 114 | BernoulliNB | 2-2 | CountVectorizer | Stemming |
| 115 | BernoulliNB | 2-2 | TfidfVectorizer | Stemming |
| 116 | BernoulliNB | 2-2 | CountVectorizer | Lemmatization followed by Stemming |
| 117 | BernoulliNB | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 118 | BernoulliNB | 2-2 | CountVectorizer | Stemming followed by Lemmatization |
| 119 | BernoulliNB | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 120 | BernoulliNB | 2-3 | CountVectorizer | Lemmatization |
| 121 | BernoulliNB | 2-3 | TfidfVectorizer | Lemmatization |
| 122 | BernoulliNB | 2-3 | CountVectorizer | Stemming |
| 123 | BernoulliNB | 2-3 | TfidfVectorizer | Stemming |
| 124 | BernoulliNB | 2-3 | CountVectorizer | Lemmatization followed by Stemming |
| 125 | BernoulliNB | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 126 | BernoulliNB | 2-3 | CountVectorizer | Stemming followed by Lemmatization |
| 127 | BernoulliNB | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 128 | BernoulliNB | 2-4 | CountVectorizer | Lemmatization |
| 129 | BernoulliNB | 2-4 | TfidfVectorizer | Lemmatization |
| 130 | BernoulliNB | 2-4 | CountVectorizer | Stemming |
| 131 | BernoulliNB | 2-4 | TfidfVectorizer | Stemming |
| 132 | BernoulliNB | 2-4 | CountVectorizer | Lemmatization followed by Stemming |
| 133 | BernoulliNB | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 134 | BernoulliNB | 2-4 | CountVectorizer | Stemming followed by Lemmatization |
| 135 | BernoulliNB | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 136 | BernoulliNB | 3-3 | CountVectorizer | Lemmatization |
| 137 | BernoulliNB | 3-3 | TfidfVectorizer | Lemmatization |
| 138 | BernoulliNB | 3-3 | CountVectorizer | Stemming |
| 139 | BernoulliNB | 3-3 | TfidfVectorizer | Stemming |
| 140 | BernoulliNB | 3-3 | CountVectorizer | Lemmatization followed by Stemming |
| 141 | BernoulliNB | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 142 | BernoulliNB | 3-3 | CountVectorizer | Stemming followed by Lemmatization |
| 143 | BernoulliNB | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 144 | BernoulliNB | 3-4 | CountVectorizer | Lemmatization |
| 145 | BernoulliNB | 3-4 | TfidfVectorizer | Lemmatization |
| 146 | BernoulliNB | 3-4 | CountVectorizer | Stemming |
| 147 | BernoulliNB | 3-4 | TfidfVectorizer | Stemming |
| 148 | BernoulliNB | 3-4 | CountVectorizer | Lemmatization followed by Stemming |
| 149 | BernoulliNB | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 150 | BernoulliNB | 3-4 | CountVectorizer | Stemming followed by Lemmatization |
| 151 | BernoulliNB | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 152 | BernoulliNB | 4-4 | CountVectorizer | Lemmatization |
| 153 | BernoulliNB | 4-4 | TfidfVectorizer | Lemmatization |
| 154 | BernoulliNB | 4-4 | CountVectorizer | Stemming |
| 155 | BernoulliNB | 4-4 | TfidfVectorizer | Stemming |
| 156 | BernoulliNB | 4-4 | CountVectorizer | Lemmatization followed by Stemming |
| 157 | BernoulliNB | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 158 | BernoulliNB | 4-4 | CountVectorizer | Stemming followed by Lemmatization |
| 159 | BernoulliNB | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 160 | KNeighborsClassifier | 1-1 | CountVectorizer | Lemmatization |
| 161 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Lemmatization |
| 162 | KNeighborsClassifier | 1-1 | CountVectorizer | Stemming |
| 163 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Stemming |
| 164 | KNeighborsClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming |
| 165 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming |
| 166 | KNeighborsClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization |
| 167 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization |
| 168 | KNeighborsClassifier | 1-2 | CountVectorizer | Lemmatization |
| 169 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Lemmatization |
| 170 | KNeighborsClassifier | 1-2 | CountVectorizer | Stemming |
| 171 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Stemming |
| 172 | KNeighborsClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming |
| 173 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 174 | KNeighborsClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization |
| 175 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 176 | KNeighborsClassifier | 1-3 | CountVectorizer | Lemmatization |
| 177 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Lemmatization |
| 178 | KNeighborsClassifier | 1-3 | CountVectorizer | Stemming |
| 179 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Stemming |
| 180 | KNeighborsClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming |
| 181 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 182 | KNeighborsClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization |
| 183 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 184 | KNeighborsClassifier | 1-4 | CountVectorizer | Lemmatization |
| 185 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Lemmatization |
| 186 | KNeighborsClassifier | 1-4 | CountVectorizer | Stemming |
| 187 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Stemming |
| 188 | KNeighborsClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming |
| 189 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 190 | KNeighborsClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization |
| 191 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 192 | KNeighborsClassifier | 2-2 | CountVectorizer | Lemmatization |
| 193 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Lemmatization |
| 194 | KNeighborsClassifier | 2-2 | CountVectorizer | Stemming |
| 195 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Stemming |
| 196 | KNeighborsClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming |
| 197 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 198 | KNeighborsClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization |
| 199 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 200 | KNeighborsClassifier | 2-3 | CountVectorizer | Lemmatization |
| 201 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Lemmatization |
| 202 | KNeighborsClassifier | 2-3 | CountVectorizer | Stemming |
| 203 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Stemming |
| 204 | KNeighborsClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming |
| 205 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 206 | KNeighborsClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization |
| 207 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 208 | KNeighborsClassifier | 2-4 | CountVectorizer | Lemmatization |
| 209 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Lemmatization |
| 210 | KNeighborsClassifier | 2-4 | CountVectorizer | Stemming |
| 211 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Stemming |
| 212 | KNeighborsClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming |
| 213 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 214 | KNeighborsClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization |
| 215 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 216 | KNeighborsClassifier | 3-3 | CountVectorizer | Lemmatization |
| 217 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Lemmatization |
| 218 | KNeighborsClassifier | 3-3 | CountVectorizer | Stemming |
| 219 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Stemming |
| 220 | KNeighborsClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming |
| 221 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 222 | KNeighborsClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization |
| 223 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 224 | KNeighborsClassifier | 3-4 | CountVectorizer | Lemmatization |
| 225 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Lemmatization |
| 226 | KNeighborsClassifier | 3-4 | CountVectorizer | Stemming |
| 227 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Stemming |
| 228 | KNeighborsClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming |
| 229 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 230 | KNeighborsClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization |
| 231 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 232 | KNeighborsClassifier | 4-4 | CountVectorizer | Lemmatization |
| 233 | KNeighborsClassifier | 4-4 | TfidfVectorizer | Lemmatization |
| 234 | KNeighborsClassifier | 4-4 | CountVectorizer | Stemming |
| 235 | KNeighborsClassifier | 4-4 | TfidfVectorizer | Stemming |
| 236 | KNeighborsClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming |
| 237 | KNeighborsClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 238 | KNeighborsClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization |
| 239 | KNeighborsClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 240 | SVC | 1-1 | CountVectorizer | Lemmatization |
| 241 | SVC | 1-1 | TfidfVectorizer | Lemmatization |
| 242 | SVC | 1-1 | CountVectorizer | Stemming |
| 243 | SVC | 1-1 | TfidfVectorizer | Stemming |
| 244 | SVC | 1-1 | CountVectorizer | Lemmatization followed by Stemming |
| 245 | SVC | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming |
| 246 | SVC | 1-1 | CountVectorizer | Stemming followed by Lemmatization |
| 247 | SVC | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization |
| 248 | SVC | 1-2 | CountVectorizer | Lemmatization |
| 249 | SVC | 1-2 | TfidfVectorizer | Lemmatization |
| 250 | SVC | 1-2 | CountVectorizer | Stemming |
| 251 | SVC | 1-2 | TfidfVectorizer | Stemming |
| 252 | SVC | 1-2 | CountVectorizer | Lemmatization followed by Stemming |
| 253 | SVC | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 254 | SVC | 1-2 | CountVectorizer | Stemming followed by Lemmatization |
| 255 | SVC | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 256 | SVC | 1-3 | CountVectorizer | Lemmatization |
| 257 | SVC | 1-3 | TfidfVectorizer | Lemmatization |
| 258 | SVC | 1-3 | CountVectorizer | Stemming |
| 259 | SVC | 1-3 | TfidfVectorizer | Stemming |
| 260 | SVC | 1-3 | CountVectorizer | Lemmatization followed by Stemming |
| 261 | SVC | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 262 | SVC | 1-3 | CountVectorizer | Stemming followed by Lemmatization |
| 263 | SVC | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 264 | SVC | 1-4 | CountVectorizer | Lemmatization |
| 265 | SVC | 1-4 | TfidfVectorizer | Lemmatization |
| 266 | SVC | 1-4 | CountVectorizer | Stemming |
| 267 | SVC | 1-4 | TfidfVectorizer | Stemming |
| 268 | SVC | 1-4 | CountVectorizer | Lemmatization followed by Stemming |
| 269 | SVC | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 270 | SVC | 1-4 | CountVectorizer | Stemming followed by Lemmatization |
| 271 | SVC | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 272 | SVC | 2-2 | CountVectorizer | Lemmatization |
| 273 | SVC | 2-2 | TfidfVectorizer | Lemmatization |
| 274 | SVC | 2-2 | CountVectorizer | Stemming |
| 275 | SVC | 2-2 | TfidfVectorizer | Stemming |
| 276 | SVC | 2-2 | CountVectorizer | Lemmatization followed by Stemming |
| 277 | SVC | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 278 | SVC | 2-2 | CountVectorizer | Stemming followed by Lemmatization |
| 279 | SVC | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 280 | SVC | 2-3 | CountVectorizer | Lemmatization |
| 281 | SVC | 2-3 | TfidfVectorizer | Lemmatization |
| 282 | SVC | 2-3 | CountVectorizer | Stemming |
| 283 | SVC | 2-3 | TfidfVectorizer | Stemming |
| 284 | SVC | 2-3 | CountVectorizer | Lemmatization followed by Stemming |
| 285 | SVC | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 286 | SVC | 2-3 | CountVectorizer | Stemming followed by Lemmatization |
| 287 | SVC | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 288 | SVC | 2-4 | CountVectorizer | Lemmatization |
| 289 | SVC | 2-4 | TfidfVectorizer | Lemmatization |
| 290 | SVC | 2-4 | CountVectorizer | Stemming |
| 291 | SVC | 2-4 | TfidfVectorizer | Stemming |
| 292 | SVC | 2-4 | CountVectorizer | Lemmatization followed by Stemming |
| 293 | SVC | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 294 | SVC | 2-4 | CountVectorizer | Stemming followed by Lemmatization |
| 295 | SVC | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 296 | SVC | 3-3 | CountVectorizer | Lemmatization |
| 297 | SVC | 3-3 | TfidfVectorizer | Lemmatization |
| 298 | SVC | 3-3 | CountVectorizer | Stemming |
| 299 | SVC | 3-3 | TfidfVectorizer | Stemming |
| 300 | SVC | 3-3 | CountVectorizer | Lemmatization followed by Stemming |
| 301 | SVC | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 302 | SVC | 3-3 | CountVectorizer | Stemming followed by Lemmatization |
| 303 | SVC | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 304 | SVC | 3-4 | CountVectorizer | Lemmatization |
| 305 | SVC | 3-4 | TfidfVectorizer | Lemmatization |
| 306 | SVC | 3-4 | CountVectorizer | Stemming |
| 307 | SVC | 3-4 | TfidfVectorizer | Stemming |
| 308 | SVC | 3-4 | CountVectorizer | Lemmatization followed by Stemming |
| 309 | SVC | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 310 | SVC | 3-4 | CountVectorizer | Stemming followed by Lemmatization |
| 311 | SVC | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 312 | SVC | 4-4 | CountVectorizer | Lemmatization |
| 313 | SVC | 4-4 | TfidfVectorizer | Lemmatization |
| 314 | SVC | 4-4 | CountVectorizer | Stemming |
| 315 | SVC | 4-4 | TfidfVectorizer | Stemming |
| 316 | SVC | 4-4 | CountVectorizer | Lemmatization followed by Stemming |
| 317 | SVC | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 318 | SVC | 4-4 | CountVectorizer | Stemming followed by Lemmatization |
| 319 | SVC | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 320 | LogisticRegression | 1-1 | CountVectorizer | Lemmatization |
| 321 | LogisticRegression | 1-1 | TfidfVectorizer | Lemmatization |
| 322 | LogisticRegression | 1-1 | CountVectorizer | Stemming |
| 323 | LogisticRegression | 1-1 | TfidfVectorizer | Stemming |
| 324 | LogisticRegression | 1-1 | CountVectorizer | Lemmatization followed by Stemming |
| 325 | LogisticRegression | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming |
| 326 | LogisticRegression | 1-1 | CountVectorizer | Stemming followed by Lemmatization |
| 327 | LogisticRegression | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization |
| 328 | LogisticRegression | 1-2 | CountVectorizer | Lemmatization |
| 329 | LogisticRegression | 1-2 | TfidfVectorizer | Lemmatization |
| 330 | LogisticRegression | 1-2 | CountVectorizer | Stemming |
| 331 | LogisticRegression | 1-2 | TfidfVectorizer | Stemming |
| 332 | LogisticRegression | 1-2 | CountVectorizer | Lemmatization followed by Stemming |
| 333 | LogisticRegression | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 334 | LogisticRegression | 1-2 | CountVectorizer | Stemming followed by Lemmatization |
| 335 | LogisticRegression | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 336 | LogisticRegression | 1-3 | CountVectorizer | Lemmatization |
| 337 | LogisticRegression | 1-3 | TfidfVectorizer | Lemmatization |
| 338 | LogisticRegression | 1-3 | CountVectorizer | Stemming |
| 339 | LogisticRegression | 1-3 | TfidfVectorizer | Stemming |
| 340 | LogisticRegression | 1-3 | CountVectorizer | Lemmatization followed by Stemming |
| 341 | LogisticRegression | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 342 | LogisticRegression | 1-3 | CountVectorizer | Stemming followed by Lemmatization |
| 343 | LogisticRegression | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 344 | LogisticRegression | 1-4 | CountVectorizer | Lemmatization |
| 345 | LogisticRegression | 1-4 | TfidfVectorizer | Lemmatization |
| 346 | LogisticRegression | 1-4 | CountVectorizer | Stemming |
| 347 | LogisticRegression | 1-4 | TfidfVectorizer | Stemming |
| 348 | LogisticRegression | 1-4 | CountVectorizer | Lemmatization followed by Stemming |
| 349 | LogisticRegression | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 350 | LogisticRegression | 1-4 | CountVectorizer | Stemming followed by Lemmatization |
| 351 | LogisticRegression | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 352 | LogisticRegression | 2-2 | CountVectorizer | Lemmatization |
| 353 | LogisticRegression | 2-2 | TfidfVectorizer | Lemmatization |
| 354 | LogisticRegression | 2-2 | CountVectorizer | Stemming |
| 355 | LogisticRegression | 2-2 | TfidfVectorizer | Stemming |
| 356 | LogisticRegression | 2-2 | CountVectorizer | Lemmatization followed by Stemming |
| 357 | LogisticRegression | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 358 | LogisticRegression | 2-2 | CountVectorizer | Stemming followed by Lemmatization |
| 359 | LogisticRegression | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 360 | LogisticRegression | 2-3 | CountVectorizer | Lemmatization |
| 361 | LogisticRegression | 2-3 | TfidfVectorizer | Lemmatization |
| 362 | LogisticRegression | 2-3 | CountVectorizer | Stemming |
| 363 | LogisticRegression | 2-3 | TfidfVectorizer | Stemming |
| 364 | LogisticRegression | 2-3 | CountVectorizer | Lemmatization followed by Stemming |
| 365 | LogisticRegression | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 366 | LogisticRegression | 2-3 | CountVectorizer | Stemming followed by Lemmatization |
| 367 | LogisticRegression | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 368 | LogisticRegression | 2-4 | CountVectorizer | Lemmatization |
| 369 | LogisticRegression | 2-4 | TfidfVectorizer | Lemmatization |
| 370 | LogisticRegression | 2-4 | CountVectorizer | Stemming |
| 371 | LogisticRegression | 2-4 | TfidfVectorizer | Stemming |
| 372 | LogisticRegression | 2-4 | CountVectorizer | Lemmatization followed by Stemming |
| 373 | LogisticRegression | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 374 | LogisticRegression | 2-4 | CountVectorizer | Stemming followed by Lemmatization |
| 375 | LogisticRegression | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 376 | LogisticRegression | 3-3 | CountVectorizer | Lemmatization |
| 377 | LogisticRegression | 3-3 | TfidfVectorizer | Lemmatization |
| 378 | LogisticRegression | 3-3 | CountVectorizer | Stemming |
| 379 | LogisticRegression | 3-3 | TfidfVectorizer | Stemming |
| 380 | LogisticRegression | 3-3 | CountVectorizer | Lemmatization followed by Stemming |
| 381 | LogisticRegression | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 382 | LogisticRegression | 3-3 | CountVectorizer | Stemming followed by Lemmatization |
| 383 | LogisticRegression | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 384 | LogisticRegression | 3-4 | CountVectorizer | Lemmatization |
| 385 | LogisticRegression | 3-4 | TfidfVectorizer | Lemmatization |
| 386 | LogisticRegression | 3-4 | CountVectorizer | Stemming |
| 387 | LogisticRegression | 3-4 | TfidfVectorizer | Stemming |
| 388 | LogisticRegression | 3-4 | CountVectorizer | Lemmatization followed by Stemming |
| 389 | LogisticRegression | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 390 | LogisticRegression | 3-4 | CountVectorizer | Stemming followed by Lemmatization |
| 391 | LogisticRegression | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 392 | LogisticRegression | 4-4 | CountVectorizer | Lemmatization |
| 393 | LogisticRegression | 4-4 | TfidfVectorizer | Lemmatization |
| 394 | LogisticRegression | 4-4 | CountVectorizer | Stemming |
| 395 | LogisticRegression | 4-4 | TfidfVectorizer | Stemming |
| 396 | LogisticRegression | 4-4 | CountVectorizer | Lemmatization followed by Stemming |
| 397 | LogisticRegression | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 398 | LogisticRegression | 4-4 | CountVectorizer | Stemming followed by Lemmatization |
| 399 | LogisticRegression | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 400 | SGDClassifier | 1-1 | CountVectorizer | Lemmatization |
| 401 | SGDClassifier | 1-1 | TfidfVectorizer | Lemmatization |
| 402 | SGDClassifier | 1-1 | CountVectorizer | Stemming |
| 403 | SGDClassifier | 1-1 | TfidfVectorizer | Stemming |
| 404 | SGDClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming |
| 405 | SGDClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming |
| 406 | SGDClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization |
| 407 | SGDClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization |
| 408 | SGDClassifier | 1-2 | CountVectorizer | Lemmatization |
| 409 | SGDClassifier | 1-2 | TfidfVectorizer | Lemmatization |
| 410 | SGDClassifier | 1-2 | CountVectorizer | Stemming |
| 411 | SGDClassifier | 1-2 | TfidfVectorizer | Stemming |
| 412 | SGDClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming |
| 413 | SGDClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 414 | SGDClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization |
| 415 | SGDClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 416 | SGDClassifier | 1-3 | CountVectorizer | Lemmatization |
| 417 | SGDClassifier | 1-3 | TfidfVectorizer | Lemmatization |
| 418 | SGDClassifier | 1-3 | CountVectorizer | Stemming |
| 419 | SGDClassifier | 1-3 | TfidfVectorizer | Stemming |
| 420 | SGDClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming |
| 421 | SGDClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 422 | SGDClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization |
| 423 | SGDClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 424 | SGDClassifier | 1-4 | CountVectorizer | Lemmatization |
| 425 | SGDClassifier | 1-4 | TfidfVectorizer | Lemmatization |
| 426 | SGDClassifier | 1-4 | CountVectorizer | Stemming |
| 427 | SGDClassifier | 1-4 | TfidfVectorizer | Stemming |
| 428 | SGDClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming |
| 429 | SGDClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 430 | SGDClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization |
| 431 | SGDClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 432 | SGDClassifier | 2-2 | CountVectorizer | Lemmatization |
| 433 | SGDClassifier | 2-2 | TfidfVectorizer | Lemmatization |
| 434 | SGDClassifier | 2-2 | CountVectorizer | Stemming |
| 435 | SGDClassifier | 2-2 | TfidfVectorizer | Stemming |
| 436 | SGDClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming |
| 437 | SGDClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 438 | SGDClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization |
| 439 | SGDClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 440 | SGDClassifier | 2-3 | CountVectorizer | Lemmatization |
| 441 | SGDClassifier | 2-3 | TfidfVectorizer | Lemmatization |
| 442 | SGDClassifier | 2-3 | CountVectorizer | Stemming |
| 443 | SGDClassifier | 2-3 | TfidfVectorizer | Stemming |
| 444 | SGDClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming |
| 445 | SGDClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 446 | SGDClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization |
| 447 | SGDClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 448 | SGDClassifier | 2-4 | CountVectorizer | Lemmatization |
| 449 | SGDClassifier | 2-4 | TfidfVectorizer | Lemmatization |
| 450 | SGDClassifier | 2-4 | CountVectorizer | Stemming |
| 451 | SGDClassifier | 2-4 | TfidfVectorizer | Stemming |
| 452 | SGDClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming |
| 453 | SGDClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 454 | SGDClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization |
| 455 | SGDClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 456 | SGDClassifier | 3-3 | CountVectorizer | Lemmatization |
| 457 | SGDClassifier | 3-3 | TfidfVectorizer | Lemmatization |
| 458 | SGDClassifier | 3-3 | CountVectorizer | Stemming |
| 459 | SGDClassifier | 3-3 | TfidfVectorizer | Stemming |
| 460 | SGDClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming |
| 461 | SGDClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 462 | SGDClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization |
| 463 | SGDClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 464 | SGDClassifier | 3-4 | CountVectorizer | Lemmatization |
| 465 | SGDClassifier | 3-4 | TfidfVectorizer | Lemmatization |
| 466 | SGDClassifier | 3-4 | CountVectorizer | Stemming |
| 467 | SGDClassifier | 3-4 | TfidfVectorizer | Stemming |
| 468 | SGDClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming |
| 469 | SGDClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 470 | SGDClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization |
| 471 | SGDClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 472 | SGDClassifier | 4-4 | CountVectorizer | Lemmatization |
| 473 | SGDClassifier | 4-4 | TfidfVectorizer | Lemmatization |
| 474 | SGDClassifier | 4-4 | CountVectorizer | Stemming |
| 475 | SGDClassifier | 4-4 | TfidfVectorizer | Stemming |
| 476 | SGDClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming |
| 477 | SGDClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 478 | SGDClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization |
| 479 | SGDClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 480 | RandomForestClassifier | 1-1 | CountVectorizer | Lemmatization |
| 481 | RandomForestClassifier | 1-1 | TfidfVectorizer | Lemmatization |
| 482 | RandomForestClassifier | 1-1 | CountVectorizer | Stemming |
| 483 | RandomForestClassifier | 1-1 | TfidfVectorizer | Stemming |
| 484 | RandomForestClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming |
| 485 | RandomForestClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming |
| 486 | RandomForestClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization |
| 487 | RandomForestClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization |
| 488 | RandomForestClassifier | 1-2 | CountVectorizer | Lemmatization |
| 489 | RandomForestClassifier | 1-2 | TfidfVectorizer | Lemmatization |
| 490 | RandomForestClassifier | 1-2 | CountVectorizer | Stemming |
| 491 | RandomForestClassifier | 1-2 | TfidfVectorizer | Stemming |
| 492 | RandomForestClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming |
| 493 | RandomForestClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 494 | RandomForestClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization |
| 495 | RandomForestClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 496 | RandomForestClassifier | 1-3 | CountVectorizer | Lemmatization |
| 497 | RandomForestClassifier | 1-3 | TfidfVectorizer | Lemmatization |
| 498 | RandomForestClassifier | 1-3 | CountVectorizer | Stemming |
| 499 | RandomForestClassifier | 1-3 | TfidfVectorizer | Stemming |
| 500 | RandomForestClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming |
| 501 | RandomForestClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 502 | RandomForestClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization |
| 503 | RandomForestClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 504 | RandomForestClassifier | 1-4 | CountVectorizer | Lemmatization |
| 505 | RandomForestClassifier | 1-4 | TfidfVectorizer | Lemmatization |
| 506 | RandomForestClassifier | 1-4 | CountVectorizer | Stemming |
| 507 | RandomForestClassifier | 1-4 | TfidfVectorizer | Stemming |
| 508 | RandomForestClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming |
| 509 | RandomForestClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 510 | RandomForestClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization |
| 511 | RandomForestClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 512 | RandomForestClassifier | 2-2 | CountVectorizer | Lemmatization |
| 513 | RandomForestClassifier | 2-2 | TfidfVectorizer | Lemmatization |
| 514 | RandomForestClassifier | 2-2 | CountVectorizer | Stemming |
| 515 | RandomForestClassifier | 2-2 | TfidfVectorizer | Stemming |
| 516 | RandomForestClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming |
| 517 | RandomForestClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 518 | RandomForestClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization |
| 519 | RandomForestClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 520 | RandomForestClassifier | 2-3 | CountVectorizer | Lemmatization |
| 521 | RandomForestClassifier | 2-3 | TfidfVectorizer | Lemmatization |
| 522 | RandomForestClassifier | 2-3 | CountVectorizer | Stemming |
| 523 | RandomForestClassifier | 2-3 | TfidfVectorizer | Stemming |
| 524 | RandomForestClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming |
| 525 | RandomForestClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 526 | RandomForestClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization |
| 527 | RandomForestClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 528 | RandomForestClassifier | 2-4 | CountVectorizer | Lemmatization |
| 529 | RandomForestClassifier | 2-4 | TfidfVectorizer | Lemmatization |
| 530 | RandomForestClassifier | 2-4 | CountVectorizer | Stemming |
| 531 | RandomForestClassifier | 2-4 | TfidfVectorizer | Stemming |
| 532 | RandomForestClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming |
| 533 | RandomForestClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 534 | RandomForestClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization |
| 535 | RandomForestClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 536 | RandomForestClassifier | 3-3 | CountVectorizer | Lemmatization |
| 537 | RandomForestClassifier | 3-3 | TfidfVectorizer | Lemmatization |
| 538 | RandomForestClassifier | 3-3 | CountVectorizer | Stemming |
| 539 | RandomForestClassifier | 3-3 | TfidfVectorizer | Stemming |
| 540 | RandomForestClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming |
| 541 | RandomForestClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 542 | RandomForestClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization |
| 543 | RandomForestClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 544 | RandomForestClassifier | 3-4 | CountVectorizer | Lemmatization |
| 545 | RandomForestClassifier | 3-4 | TfidfVectorizer | Lemmatization |
| 546 | RandomForestClassifier | 3-4 | CountVectorizer | Stemming |
| 547 | RandomForestClassifier | 3-4 | TfidfVectorizer | Stemming |
| 548 | RandomForestClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming |
| 549 | RandomForestClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 550 | RandomForestClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization |
| 551 | RandomForestClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 552 | RandomForestClassifier | 4-4 | CountVectorizer | Lemmatization |
| 553 | RandomForestClassifier | 4-4 | TfidfVectorizer | Lemmatization |
| 554 | RandomForestClassifier | 4-4 | CountVectorizer | Stemming |
| 555 | RandomForestClassifier | 4-4 | TfidfVectorizer | Stemming |
| 556 | RandomForestClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming |
| 557 | RandomForestClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 558 | RandomForestClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization |
| 559 | RandomForestClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 560 | MLPClassifier | 1-1 | CountVectorizer | Lemmatization |
| 561 | MLPClassifier | 1-1 | TfidfVectorizer | Lemmatization |
| 562 | MLPClassifier | 1-1 | CountVectorizer | Stemming |
| 563 | MLPClassifier | 1-1 | TfidfVectorizer | Stemming |
| 564 | MLPClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming |
| 565 | MLPClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming |
| 566 | MLPClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization |
| 567 | MLPClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization |
| 568 | MLPClassifier | 1-2 | CountVectorizer | Lemmatization |
| 569 | MLPClassifier | 1-2 | TfidfVectorizer | Lemmatization |
| 570 | MLPClassifier | 1-2 | CountVectorizer | Stemming |
| 571 | MLPClassifier | 1-2 | TfidfVectorizer | Stemming |
| 572 | MLPClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming |
| 573 | MLPClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 574 | MLPClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization |
| 575 | MLPClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 576 | MLPClassifier | 1-3 | CountVectorizer | Lemmatization |
| 577 | MLPClassifier | 1-3 | TfidfVectorizer | Lemmatization |
| 578 | MLPClassifier | 1-3 | CountVectorizer | Stemming |
| 579 | MLPClassifier | 1-3 | TfidfVectorizer | Stemming |
| 580 | MLPClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming |
| 581 | MLPClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 582 | MLPClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization |
| 583 | MLPClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 584 | MLPClassifier | 1-4 | CountVectorizer | Lemmatization |
| 585 | MLPClassifier | 1-4 | TfidfVectorizer | Lemmatization |
| 586 | MLPClassifier | 1-4 | CountVectorizer | Stemming |
| 587 | MLPClassifier | 1-4 | TfidfVectorizer | Stemming |
| 588 | MLPClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming |
| 589 | MLPClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 590 | MLPClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization |
| 591 | MLPClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 592 | MLPClassifier | 2-2 | CountVectorizer | Lemmatization |
| 593 | MLPClassifier | 2-2 | TfidfVectorizer | Lemmatization |
| 594 | MLPClassifier | 2-2 | CountVectorizer | Stemming |
| 595 | MLPClassifier | 2-2 | TfidfVectorizer | Stemming |
| 596 | MLPClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming |
| 597 | MLPClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming |
| 598 | MLPClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization |
| 599 | MLPClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization |
| 600 | MLPClassifier | 2-3 | CountVectorizer | Lemmatization |
| 601 | MLPClassifier | 2-3 | TfidfVectorizer | Lemmatization |
| 602 | MLPClassifier | 2-3 | CountVectorizer | Stemming |
| 603 | MLPClassifier | 2-3 | TfidfVectorizer | Stemming |
| 604 | MLPClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming |
| 605 | MLPClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 606 | MLPClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization |
| 607 | MLPClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 608 | MLPClassifier | 2-4 | CountVectorizer | Lemmatization |
| 609 | MLPClassifier | 2-4 | TfidfVectorizer | Lemmatization |
| 610 | MLPClassifier | 2-4 | CountVectorizer | Stemming |
| 611 | MLPClassifier | 2-4 | TfidfVectorizer | Stemming |
| 612 | MLPClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming |
| 613 | MLPClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 614 | MLPClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization |
| 615 | MLPClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 616 | MLPClassifier | 3-3 | CountVectorizer | Lemmatization |
| 617 | MLPClassifier | 3-3 | TfidfVectorizer | Lemmatization |
| 618 | MLPClassifier | 3-3 | CountVectorizer | Stemming |
| 619 | MLPClassifier | 3-3 | TfidfVectorizer | Stemming |
| 620 | MLPClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming |
| 621 | MLPClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming |
| 622 | MLPClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization |
| 623 | MLPClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization |
| 624 | MLPClassifier | 3-4 | CountVectorizer | Lemmatization |
| 625 | MLPClassifier | 3-4 | TfidfVectorizer | Lemmatization |
| 626 | MLPClassifier | 3-4 | CountVectorizer | Stemming |
| 627 | MLPClassifier | 3-4 | TfidfVectorizer | Stemming |
| 628 | MLPClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming |
| 629 | MLPClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 630 | MLPClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization |
| 631 | MLPClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization |
| 632 | MLPClassifier | 4-4 | CountVectorizer | Lemmatization |
| 633 | MLPClassifier | 4-4 | TfidfVectorizer | Lemmatization |
| 634 | MLPClassifier | 4-4 | CountVectorizer | Stemming |
| 635 | MLPClassifier | 4-4 | TfidfVectorizer | Stemming |
| 636 | MLPClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming |
| 637 | MLPClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming |
| 638 | MLPClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization |
| 639 | MLPClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization |
# _ = Normalizer(('ls', True)).fit_transform(df.iloc[20:21])
_ = Normalizer(('ls', True)).fit_transform(df.iloc[333:334])
| Action | Tweet (Result) |
|---|---|
| Tweet before cleaning | A huge worldwide THANK YOU to the Unsung Heroes, our vital frontline Health Workers 👩⚕️ 👨⚕️ We couldn’t be where we’re at right now without every single one of YOU 💙 @FrontlineUAE #Expo2020 #Dubai https://t.co/7ips0I1gja |
| Tweet after removing the "#" symbol and any links from the tweet | A huge worldwide THANK YOU to the Unsung Heroes, our vital frontline Health Workers 👩⚕️ 👨⚕️ We couldn’t be where we’re at right now without every single one of YOU 💙 @FrontlineUAE Expo2020 Dubai |
| Tweet after removing all words starting with @ and words within & and ; (html tags) | A huge worldwide THANK YOU to the Unsung Heroes, our vital frontline Health Workers 👩⚕️ 👨⚕️ We couldn’t be where we’re at right now without every single one of YOU 💙 Expo2020 Dubai |
| Tweet after replacing emojis with their text form | A huge worldwide THANK YOU to the Unsung Heroes, our vital frontline Health Workers womanhealthworker manhealthworker We couldn’t be where we’re at right now without every single one of YOU blueheart Expo2020 Dubai |
| Tweet after removing punctuation | A huge worldwide THANK YOU to the Unsung Heroes our vital frontline Health Workers womanhealthworker manhealthworker We couldn t be where we re at right now without every single one of YOU blueheart Expo2020 Dubai |
| Tweet after removing all non ascii characters | A huge worldwide THANK YOU to the Unsung Heroes our vital frontline Health Workers womanhealthworker manhealthworker We couldn t be where we re at right now without every single one of YOU blueheart Expo2020 Dubai |
| Tweet after removing words containing only numbers | A huge worldwide THANK YOU to the Unsung Heroes our vital frontline Health Workers womanhealthworker manhealthworker We couldn t be where we re at right now without every single one of YOU blueheart Expo2020 Dubai |
| Tweet after removing all single characters | A huge worldwide THANK YOU to the Unsung Heroes our vital frontline Health Workers womanhealthworker manhealthworker We couldn be where we re at right now without every single one of YOU blueheart Expo2020 Dubai |
| Tweet after substituting multiple spaces with single space | A huge worldwide THANK YOU to the Unsung Heroes our vital frontline Health Workers womanhealthworker manhealthworker We couldn be where we re at right now without every single one of YOU blueheart Expo2020 Dubai |
| Tweet after converting to lower case | a huge worldwide thank you to the unsung heroes our vital frontline health workers womanhealthworker manhealthworker we couldn be where we re at right now without every single one of you blueheart expo2020 dubai |
| Tweet | Lemmatized Tweet |
|---|---|
| a huge worldwide thank you to the unsung heroes our vital frontline health workers womanhealthworker manhealthworker we couldn be where we re at right now without every single one of you blueheart expo2020 dubai | ['a', 'huge', 'worldwide', 'thank', 'you', 'to', 'the', 'unsung', 'hero', 'our', 'vital', 'frontline', 'health', 'worker', 'womanhealthworker', 'manhealthworker', 'we', 'couldn', 'be', 'where', 'we', 're', 'at', 'right', 'now', 'without', 'every', 'single', 'one', 'of', 'you', 'blueheart', 'expo2020', 'dubai'] |
| Tweet | Tweet after Stemming |
|---|---|
| ['a', 'huge', 'worldwide', 'thank', 'you', 'to', 'the', 'unsung', 'hero', 'our', 'vital', 'frontline', 'health', 'worker', 'womanhealthworker', 'manhealthworker', 'we', 'couldn', 'be', 'where', 'we', 're', 'at', 'right', 'now', 'without', 'every', 'single', 'one', 'of', 'you', 'blueheart', 'expo2020', 'dubai'] | ['a', 'huge', 'worldwid', 'thank', 'you', 'to', 'the', 'unsung', 'hero', 'our', 'vital', 'frontlin', 'health', 'worker', 'womanhealthwork', 'manhealthwork', 'we', 'couldn', 'be', 'where', 'we', 're', 'at', 'right', 'now', 'without', 'everi', 'singl', 'one', 'of', 'you', 'blueheart', 'expo2020', 'dubai'] |
Vectoriser is the second stage of our pipeline in which we will be comparing 2 representations, the TFIDF representation using Sklearn TfidfVectoriser, the second representation is Bag of words (BoW) using Sklearn CountVectoriser. TFIDF being the gold standard in information retrieval as it weighs importance of each term in the corpus BoW is the simplest representation of text for machine learning yet highly effecient. A comparison of both will tell us which representation is optimal for our corpus.
The third stage of the pipeline is the Classifier which is a series of different Discriminative Models which will find the boundaries between our classes to correctly label them. The models include:
In Generative Models we will be using:
Each model will undergo extensive hyperparameter optimisation to fine tune each them to have the most optimal version of each model. From then each model will be compared with each other on the basis of multiple metrics such as F1 score, Precision, Recall and Accuracy.
Each model will run on each combination of representations (TFIDF and Bag of Words) and normalisation (Stemming and Lemmitizing). Each model will also run on 2 variations of our corpus. The first variation is of having a stratified data set where each label in the test and train split is in the same proportion as in the original data set, this will result in an unbalanced dataset as the corpus is positively skewed. The second variation is ensuring all labels are in equal amount so our model is trained on an equal set for each class, this would result in a small subset of the corpus to be used but the model will not have any inherent bias unlike the previous as this is a balanced data set.
Each of these models will also use a range of N-grams from Uni-gram to 6-gram and all combinations in between, thus generating 960 models in total and with 2 variations of our corpus, we will have 1920 models in total each with 10 fold cross validation to find the optimal model.
Before finding the best model, first we must tune each model for optimum perfomance, thus first we must optimse each model's hyperparameters for which we used Sklearn GridSearchCV which will test every possible combination of hyperparameters in a defined hyperparameter search space, to search for a globally optimal solution. Due to being very computationally expensive, this was conducted on University system's.
To be able to have an unbiased comparison between models while ensuring each model performance to its optimal potential, thus first we must optimse each model's hyperparameters for which we used Sklearn GridSearchCV which will test every possible combination of hyperparameters in a defined hyperparameter search space, to search for a globally optimal solution. GridSearchCV will search for each individual model, their optimal hyperparameters for our corpus, to optimise each model's performance and validation which was tested with 10 fold cross validation for each possible combination of hyperparameters for each model. Each model was judged on the basis of their F1 score .Due to the massive amount of computational power required, the GridSearchCV algorithm was conducted on University systems with multi-threading to ensure efficiency while retrieving results for each of our models.
param_grid = {'kernel': ['poly', 'rbf', 'sigmoid'], 'gamma': [
'scale', 'auto'], 'tol': [1e-2, 1e-3, 1e-4, 1e-1, 1e-5]}
gridcv = GridSearchCV(SVC(), param_grid, scoring='f1_macro', n_jobs=-1, cv=10)
gridcv.fit(result, df['label'])
print("SVC")
print(gridcv.best_params_)
param_grid = {'penalty':['l1', 'l2', 'elasticnet', 'none'], 'solver': ['netwon-cg', 'sag', 'saga', 'lbfgs'], 'tol':[1e-2, 1e-3, 1e-4, 1e-1, 1e-5], 'max_iter':[1000]}
gridcv = GridSearchCV(LogisticRegression(), param_grid, scoring='f1_macro', n_jobs=-1, cv=10)
gridcv.fit(result, df['label'])
print('LogisticRegression')
print(gridcv.best_params_)
param_grid = {'loss': ['hinge', 'modified_huber', 'squared_hinge', 'perceptron', 'huber'], 'penalty': [
'l1', 'l2', 'elasticnet'], 'alpha': [0.0001, 0.00001, 0.001, 0.01, 0.1], 'tol': [1e-2, 1e-3, 1e-4, 1e-1, 1e-5]}
gridcv = GridSearchCV(SGDClassifier(), param_grid, scoring='f1_macro', n_jobs=-1, cv=10)
gridcv.fit(result, df['label'])
print('SGDClassifier')
print(gridcv.best_params_)
param_grid = {'n_neighbors': list(range(3, 10)), 'weights': ['uniform', 'distance'], 'algorithm': ['auto'], 'p': [1, 2], 'leaf_size': list(range(20,40)), }
gridcv = GridSearchCV(KNeighborsClassifier(), param_grid,
scoring='f1_macro', n_jobs=-1, cv=10)
gridcv.fit(result, df['label'])
print('KNeighborsClassifier')
print(gridcv.best_params_)
param_grid = {'n_estimators': list(range(100, 300, 25)), 'criterion': ['gini', 'entropy'], 'max_depth': list(
range(15, 40)), 'min_samples_split': [2, 3, 4, 5, 6], 'min_samples_leaf': [1, 2, 3], 'max_features': ['auto', 'log2', None]}
gridcv = GridSearchCV(RandomForestClassifier(), param_grid,
scoring='f1_macro', n_jobs=-1, cv=10)
gridcv.fit(result, df['label'])
print('RandomForestClassifier')
print(gridcv.best_params_)
param_grid = {'activation': ['relu', 'tanh'], 'solver': ['sgd', 'adam'], 'batch_size': [
'auto', 50, 100, 250, 300], 'learning_rate_init': [0.01, 0.001, 0.0001, 0.00001], 'max_iter': [200, 400, 600, 800],
'hidden_layer_sizes': [(50, 100, 150), (50, 150, 200, 25), (200, 300, 75, 30), (75, 75, 300, 600, 100), (200, 500, 1000, 750, 300, 100)]}
gridcv = GridSearchCV(MLPClassifier(), param_grid,
scoring='f1_macro', n_jobs=-1, cv=10)
gridcv.fit(result, df['label'])
print('MLPClassifier')
print(gridcv.best_params_)
For model evaluation, we would be generating a confusion matrix to find out the number of True Positives, True Negatives, False Positives and False Negatives. From this we will calculate Recall score, Precision score and F1 score which is the most important evaluation metric in an unbalanced data set. The F1 for the stratified version of training we will be using F1 score with macro average due to the skewed nature of our corpus and each sample being equally important while for the variation with equal number of samples per class we will use micro average as our corpus is no longer unbalanced. Accuracy is also an important metric for our balanced version of the corpus since will be no inherrent biases while training the model.
The best performing model will be the model with the overall best accuracy and F1 score, and the preprocessing steps and hyperparameters for that model would verify or nullify our hypotheses regarding representation and normalisation. These steps and hyperparameter optimisation will gaurantee the most optimal model for our corpus given its heavily positively skewed nature.
Using multi-threading, we run our models with their optimised hyperparameters so each model runs on an individual thread. We store print out the results and keep track of the best model which gave the best F1 score and accuracy. The same process is repeated for the balanced data set.
# Doing Multi threading because it will take alot of time
MAX_THREADS = 10
highest_f1_score_model = {"model":None, "score":0,"lock":threading.Lock()}
highest_accuracy_model = {"model":None, "score":0,"lock":threading.Lock()}
# Do the training and testing
# Creating the list to store the result of ewach model
result = {"list":[],"lock":threading.Lock()}
def trainingAndTesting(model,df,highest_f1_score_model,highest_accuracy_model,result,numberOFThreadsCreated,kfold):
totalFScore = 0
totalAccuracy = 0
totalConfusion_matrix = None
best_model = None
local_highest_f1_score = 0
for train_index, test_index in kfold.split(df[['body']], df['label']):
X_train, X_test = df.iloc[train_index][['body']], df.iloc[test_index][['body']]
y_train, y_test = df.iloc[train_index]['label'], df.iloc[test_index]['label']
model['pipeline'].fit(X_train, y_train)
y_pred = model['pipeline'].predict(X_test)
totalAccuracy += accuracy_score(y_test, y_pred)
totalFScore += f1_score(y_test, y_pred, average='macro')
totalConfusion_matrix = totalConfusion_matrix + confusion_matrix(y_test, y_pred) if totalConfusion_matrix is not None else confusion_matrix(y_test, y_pred)
if f1_score(y_test, y_pred, average='macro') > local_highest_f1_score:
local_highest_f1_score = f1_score(y_test, y_pred, average='macro')
best_model = model
fscore = totalFScore/kfold.get_n_splits()
acc_score = totalAccuracy/kfold.get_n_splits()
confusion_matrix_result = totalConfusion_matrix/kfold.get_n_splits()
highest_f1_score_model["lock"].acquire()
if fscore > highest_f1_score_model.get("score"):
highest_f1_score_model["score"] = fscore
highest_f1_score_model["model"] = best_model
highest_f1_score_model["lock"].release()
highest_accuracy_model["lock"].acquire()
if acc_score > highest_accuracy_model.get("score"):
highest_accuracy_model["score"] = acc_score
highest_accuracy_model["model"] = best_model
highest_accuracy_model["lock"].release()
result["lock"].acquire()
best_model["pipeline"]=None
result["list"].append({"model": best_model, "accuracy": acc_score,
"f1_score": fscore, "confusion_matrix": confusion_matrix_result})
result["lock"].release()
numberOFThreadsCreated["lock"].acquire()
numberOFThreadsCreated["num"] -= 1
numberOFThreadsCreated["lock"].release()
# 10 fold cross validation for each model
numberOfFolds = 5
kfold = StratifiedKFold(n_splits=numberOfFolds, shuffle=True, random_state=7)
numberOFThreadsCreated = {"num":0,"lock":threading.Lock()}
threads= []
models =0
for algo, arguments in (modelAlgo):
for m in nGramsList:
for n in range(m, 5):
for option, option_description in options:
for vectorizer in [CountVectorizer, TfidfVectorizer]:
pipeline = Pipeline([
("normalizer", Normalizer(options=option)),
("vectorizer", vectorizer(ngram_range=(m, n))),
("classifier", algo(**arguments))
])
model = {"pipeline": pipeline, "minNrange": m, "maxNrange": n,
"machineLearingAlgo": algo.__name__, "vectorizer": vectorizer.__name__, "options": option_description}
models+=1
while(True):
numberOFThreadsCreated["lock"].acquire()
if(numberOFThreadsCreated["num"] < MAX_THREADS):
numberOFThreadsCreated["lock"].release()
break
numberOFThreadsCreated["lock"].release()
time.sleep(10)
thread = threading.Thread(target=trainingAndTesting, args=(model,df,highest_f1_score_model,highest_accuracy_model,result,numberOFThreadsCreated,kfold))
numberOFThreadsCreated["lock"].acquire()
numberOFThreadsCreated["num"] += 1
thread.start()
numberOFThreadsCreated["lock"].release()
threads.append(thread)
# Wait for each model to finish to start printing
for thread in threads:
thread.join()
printmd(
f'We had {models} models which were trained and tested in parallel with {MAX_THREADS} threads.')
# Now will do printing
def prettyPrintModels(model):
modelAlgoName = model["model"]["machineLearingAlgo"]
vectorizerName = model["model"]["vectorizer"]
optionsName = model["model"]["options"]
minNrange = model["model"]["minNrange"]
maxNrange = model["model"]["maxNrange"]
if minNrange==maxNrange:
nGramString = f'{minNrange} {"word" if minNrange==1 else "words as a feature for vectorization"}'
else:
nGramString = f'{minNrange}-{maxNrange} words as a feature for vectorization'
printmd("## Trained and Tested Model: " + modelAlgoName +
"\n\t - using " + optionsName + " for tokenization" +
"\n\t - with " + vectorizerName + " as a vectorizer taking " + nGramString +
"\n\t - without stratification on an unbalanced dataset")
printmd("--"*10+"Results" + "--"*10)
printmd(f"- Average Accuracy of {modelAlgoName} across {numberOfFolds}-folds = {model['accuracy']}")
printmd(f"- Average F1-Score of {modelAlgoName} across {numberOfFolds}-folds = {model['f1_score']}")
printmd(f"- Average Confustion Matrix of {modelAlgoName} across {numberOfFolds}-folds:")
# print(model['confusion_matrix'])
sns.heatmap(model['confusion_matrix'], annot=True)
plt.show()
# Fist will sort the models based on the model's minimum ngram range and maximum ngram range
result["lock"].acquire()
result["list"].sort(key=lambda x: (x["model"]["minNrange"],x["model"]["maxNrange"]))
for model in result["list"]:
prettyPrintModels(model)
# Print the best model
printmd('---'*10)
result["lock"].release()
# Load all the json files in the directory
MAX_THREADS = 10
highest_f1_score_model = {"model":None, "score":0,"lock":threading.Lock()}
highest_accuracy_model = {"model":None, "score":0,"lock":threading.Lock()}
# Do the training and testing
# Creating the list to store the result of each model
result = {"list": [], "lock": threading.Lock()}
numberOfFolds =5
def prettyPrintModels(model):
modelAlgoName = model["model"]["machineLearingAlgo"]
vectorizerName = model["model"]["vectorizer"]
optionsName = model["model"]["options"]
minNrange = model["model"]["minNrange"]
maxNrange = model["model"]["maxNrange"]
if minNrange == maxNrange:
nGramString = f'{minNrange} {"word" if minNrange==1 else "words as a feature for vectorization"}'
else:
nGramString = f'{minNrange}-{maxNrange} words as a feature for vectorization'
printmd("## Trained and Tested Model: " + modelAlgoName +
"\n\t - using " + optionsName + " for tokenization" +
"\n\t - with " + vectorizerName + " as a vectorizer taking " + nGramString +
"\n\t - without stratification on an unbalanced dataset")
printmd("--"*10+"Results" + "--"*10)
printmd(
f"- Average Accuracy of {modelAlgoName} across {numberOfFolds}-folds = {model['accuracy']}")
printmd(
f"- Average F1-Score of {modelAlgoName} across {numberOfFolds}-folds = {model['f1_score']}")
printmd(
f"- Average Confustion Matrix of {modelAlgoName} across {numberOfFolds}-folds:")
sns.heatmap(model["confusion_matrix"], annot=True)
plt.show()
outputs = []
for file in os.listdir("./Outputs"):
if file.endswith(".json"):
# Load the json file
with open(os.path.join("./Outputs", file), "r") as f:
model = json.load(f)
with open(os.path.join("./Outputs", f"{file[:-5]}_confusion_matrix.npy"), "rb") as fc:
#Load the confusion matrix
model["confusion_matrix"] = np.load(fc)
highest_accuracy_model["lock"].acquire()
if model["accuracy"] > highest_accuracy_model.get("score"):
highest_accuracy_model["score"] = model["accuracy"]
highest_accuracy_model["model"] = model['model']
highest_accuracy_model["lock"].release()
highest_f1_score_model["lock"].acquire()
if model["f1_score"] > highest_f1_score_model.get("score"):
highest_f1_score_model["score"] = model["f1_score"]
highest_f1_score_model["model"] = model['model']
highest_f1_score_model["lock"].release()
outputs.append(model)
outputs.sort(key=lambda x: (x["model"]["minNrange"],x["model"]["maxNrange"]))
result["lock"].acquire()
result["list"] = outputs
result["lock"].release()
for model in outputs:
prettyPrintModels(model)
printmd('---'*10)
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
result["lock"].acquire()
# result_balanced["list"].sort(key=lambda x: (
# x["model"]["machineLearingAlgo"], x["model"]["minNrange"], x["model"]["maxNrange"]))
result["list"].sort(key=lambda x: (
x["f1_score"]))
resultsDataFrameUnBalanced = pd.DataFrame(
columns=['Algorithim', 'Ngram Range', 'Vectorizer', 'Normalizing Technique', 'Accuracy', 'F1-Score'])
for model in reversed(result["list"]):
resultsDataFrameUnBalanced.loc[len(resultsDataFrameUnBalanced)] = [model["model"]["machineLearingAlgo"],
f'{model["model"]["minNrange"]}-{model["model"]["maxNrange"]}',
model["model"]["vectorizer"],
model["model"]["options"],
model["accuracy"],
model["f1_score"]]
result["lock"].release()
resultsDataFrameUnBalanced
| Algorithim | Ngram Range | Vectorizer | Normalizing Technique | Accuracy | F1-Score | |
|---|---|---|---|---|---|---|
| 0 | LogisticRegression | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.724834 | 0.707880 |
| 1 | SGDClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.728052 | 0.705361 |
| 2 | LogisticRegression | 1-1 | TfidfVectorizer | Lemmatization | 0.723046 | 0.704369 |
| 3 | LogisticRegression | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.726258 | 0.703417 |
| 4 | LogisticRegression | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.728045 | 0.703185 |
| 5 | SGDClassifier | 1-3 | TfidfVectorizer | Lemmatization | 0.720552 | 0.702520 |
| 6 | LogisticRegression | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.725902 | 0.702218 |
| 7 | LogisticRegression | 1-4 | TfidfVectorizer | Stemming | 0.724117 | 0.701505 |
| 8 | LogisticRegression | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.727331 | 0.701485 |
| 9 | LogisticRegression | 1-1 | TfidfVectorizer | Stemming | 0.719477 | 0.701389 |
| 10 | LogisticRegression | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.724475 | 0.701186 |
| 11 | MLPClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.709843 | 0.701067 |
| 12 | LogisticRegression | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.722689 | 0.700822 |
| 13 | LogisticRegression | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.726974 | 0.700732 |
| 14 | SGDClassifier | 1-4 | TfidfVectorizer | Lemmatization | 0.724124 | 0.700322 |
| 15 | SGDClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.726266 | 0.700199 |
| 16 | MLPClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.713051 | 0.700048 |
| 17 | LogisticRegression | 1-1 | CountVectorizer | Stemming | 0.719847 | 0.699706 |
| 18 | LogisticRegression | 1-4 | TfidfVectorizer | Lemmatization | 0.718404 | 0.698014 |
| 19 | LogisticRegression | 1-2 | CountVectorizer | Stemming | 0.721621 | 0.697919 |
| 20 | LogisticRegression | 1-2 | TfidfVectorizer | Stemming | 0.721979 | 0.697869 |
| 21 | MLPClassifier | 1-1 | CountVectorizer | Lemmatization | 0.716970 | 0.697834 |
| 22 | LogisticRegression | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.725551 | 0.696817 |
| 23 | LogisticRegression | 1-1 | CountVectorizer | Lemmatization | 0.720203 | 0.696388 |
| 24 | SGDClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.719121 | 0.696365 |
| 25 | LogisticRegression | 1-3 | CountVectorizer | Stemming | 0.721621 | 0.695877 |
| 26 | MLPClassifier | 1-2 | CountVectorizer | Stemming | 0.705915 | 0.695805 |
| 27 | LogisticRegression | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.721624 | 0.695686 |
| 28 | LogisticRegression | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.716273 | 0.695359 |
| 29 | LogisticRegression | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.720196 | 0.695284 |
| 30 | LogisticRegression | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.717705 | 0.695073 |
| 31 | LogisticRegression | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.716268 | 0.695014 |
| 32 | MLPClassifier | 1-2 | CountVectorizer | Lemmatization | 0.706623 | 0.694335 |
| 33 | SGDClassifier | 1-3 | TfidfVectorizer | Stemming | 0.718412 | 0.694321 |
| 34 | SGDClassifier | 1-4 | TfidfVectorizer | Stemming | 0.724835 | 0.694299 |
| 35 | MLPClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.714126 | 0.694221 |
| 36 | MLPClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.701284 | 0.694113 |
| 37 | LogisticRegression | 1-2 | TfidfVectorizer | Lemmatization | 0.714119 | 0.693695 |
| 38 | LogisticRegression | 1-3 | TfidfVectorizer | Stemming | 0.719833 | 0.693498 |
| 39 | SGDClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.717343 | 0.693308 |
| 40 | LogisticRegression | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.721267 | 0.693095 |
| 41 | LogisticRegression | 1-3 | TfidfVectorizer | Lemmatization | 0.717690 | 0.692816 |
| 42 | LogisticRegression | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.716276 | 0.692634 |
| 43 | LogisticRegression | 1-2 | CountVectorizer | Lemmatization | 0.719119 | 0.692423 |
| 44 | SGDClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.720908 | 0.692098 |
| 45 | SGDClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.715553 | 0.692064 |
| 46 | SGDClassifier | 1-1 | TfidfVectorizer | Lemmatization | 0.720184 | 0.692047 |
| 47 | SGDClassifier | 1-1 | CountVectorizer | Stemming | 0.711626 | 0.691742 |
| 48 | SGDClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.722696 | 0.691712 |
| 49 | SGDClassifier | 1-2 | CountVectorizer | Stemming | 0.715196 | 0.691380 |
| 50 | SGDClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.720547 | 0.691015 |
| 51 | SGDClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.714139 | 0.690910 |
| 52 | SGDClassifier | 1-2 | TfidfVectorizer | Stemming | 0.713411 | 0.690892 |
| 53 | MLPClassifier | 1-1 | TfidfVectorizer | Stemming | 0.707338 | 0.689449 |
| 54 | MLPClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.697702 | 0.689053 |
| 55 | MLPClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.693426 | 0.688984 |
| 56 | SGDClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.715196 | 0.687714 |
| 57 | MLPClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.703777 | 0.687611 |
| 58 | LogisticRegression | 1-4 | CountVectorizer | Stemming | 0.712697 | 0.687005 |
| 59 | SGDClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.710919 | 0.687004 |
| 60 | MLPClassifier | 1-4 | CountVectorizer | Stemming | 0.700915 | 0.686804 |
| 61 | MLPClassifier | 1-1 | CountVectorizer | Stemming | 0.706986 | 0.685828 |
| 62 | SGDClassifier | 1-3 | CountVectorizer | Lemmatization | 0.708405 | 0.685634 |
| 63 | LogisticRegression | 1-4 | CountVectorizer | Lemmatization | 0.713053 | 0.685245 |
| 64 | SGDClassifier | 1-1 | CountVectorizer | Lemmatization | 0.711984 | 0.684620 |
| 65 | MLPClassifier | 1-3 | TfidfVectorizer | Stemming | 0.706983 | 0.684533 |
| 66 | SGDClassifier | 1-2 | TfidfVectorizer | Lemmatization | 0.712702 | 0.683830 |
| 67 | SGDClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.712345 | 0.682948 |
| 68 | SGDClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.710213 | 0.682460 |
| 69 | SGDClassifier | 1-3 | CountVectorizer | Stemming | 0.712339 | 0.682424 |
| 70 | MLPClassifier | 1-3 | CountVectorizer | Stemming | 0.689845 | 0.682364 |
| 71 | MLPClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.699492 | 0.682358 |
| 72 | MLPClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.705572 | 0.682092 |
| 73 | MLPClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.706275 | 0.681879 |
| 74 | MLPClassifier | 1-1 | TfidfVectorizer | Lemmatization | 0.704484 | 0.681706 |
| 75 | MLPClassifier | 1-2 | TfidfVectorizer | Stemming | 0.706636 | 0.681561 |
| 76 | MLPClassifier | 1-2 | TfidfVectorizer | Lemmatization | 0.704850 | 0.681424 |
| 77 | SGDClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.711632 | 0.681234 |
| 78 | SGDClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.709132 | 0.681151 |
| 79 | SGDClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.708775 | 0.681085 |
| 80 | MLPClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.702706 | 0.680459 |
| 81 | LogisticRegression | 1-3 | CountVectorizer | Lemmatization | 0.710913 | 0.679498 |
| 82 | SVC | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.716628 | 0.678896 |
| 83 | MLPClassifier | 1-3 | TfidfVectorizer | Lemmatization | 0.697345 | 0.678121 |
| 84 | SVC | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.718056 | 0.677995 |
| 85 | SGDClassifier | 1-4 | CountVectorizer | Stemming | 0.707345 | 0.677677 |
| 86 | MLPClassifier | 1-3 | CountVectorizer | Lemmatization | 0.686644 | 0.677639 |
| 87 | MultinomialNB | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.709133 | 0.677087 |
| 88 | SVC | 1-1 | TfidfVectorizer | Stemming | 0.715558 | 0.676797 |
| 89 | MLPClassifier | 1-4 | TfidfVectorizer | Stemming | 0.698065 | 0.676627 |
| 90 | SGDClassifier | 1-2 | CountVectorizer | Lemmatization | 0.705567 | 0.676137 |
| 91 | MultinomialNB | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.709489 | 0.675865 |
| 92 | SVC | 1-2 | TfidfVectorizer | Stemming | 0.716629 | 0.673216 |
| 93 | MultinomialNB | 1-1 | CountVectorizer | Stemming | 0.705919 | 0.672922 |
| 94 | SVC | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.716986 | 0.671990 |
| 95 | MLPClassifier | 1-4 | CountVectorizer | Lemmatization | 0.681299 | 0.671636 |
| 96 | MLPClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.701639 | 0.670728 |
| 97 | MLPClassifier | 1-4 | TfidfVectorizer | Lemmatization | 0.693074 | 0.668082 |
| 98 | SGDClassifier | 1-4 | CountVectorizer | Lemmatization | 0.701994 | 0.667722 |
| 99 | SVC | 1-1 | TfidfVectorizer | Lemmatization | 0.709126 | 0.666453 |
| 100 | MultinomialNB | 1-1 | CountVectorizer | Lemmatization | 0.699853 | 0.666086 |
| 101 | SVC | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.712345 | 0.665741 |
| 102 | SGDClassifier | 1-1 | TfidfVectorizer | Stemming | 0.695213 | 0.665199 |
| 103 | SVC | 1-2 | TfidfVectorizer | Lemmatization | 0.711272 | 0.663583 |
| 104 | SVC | 1-3 | TfidfVectorizer | Stemming | 0.704136 | 0.657404 |
| 105 | SVC | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.706277 | 0.657267 |
| 106 | MultinomialNB | 1-2 | CountVectorizer | Lemmatization | 0.701640 | 0.656682 |
| 107 | SVC | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.704848 | 0.656674 |
| 108 | MultinomialNB | 1-2 | CountVectorizer | Stemming | 0.700566 | 0.656193 |
| 109 | MultinomialNB | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.701280 | 0.654371 |
| 110 | MultinomialNB | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.700210 | 0.653131 |
| 111 | MultinomialNB | 1-3 | CountVectorizer | Lemmatization | 0.700567 | 0.652955 |
| 112 | MultinomialNB | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.699141 | 0.652381 |
| 113 | MultinomialNB | 1-3 | CountVectorizer | Stemming | 0.699498 | 0.651451 |
| 114 | MultinomialNB | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.698070 | 0.649941 |
| 115 | MultinomialNB | 1-4 | CountVectorizer | Stemming | 0.698429 | 0.649821 |
| 116 | MultinomialNB | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.697001 | 0.649470 |
| 117 | SVC | 1-3 | TfidfVectorizer | Lemmatization | 0.702346 | 0.647405 |
| 118 | MultinomialNB | 1-4 | CountVectorizer | Lemmatization | 0.694855 | 0.646796 |
| 119 | SVC | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.700924 | 0.646563 |
| 120 | RandomForestClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.685938 | 0.644921 |
| 121 | SVC | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.698069 | 0.643374 |
| 122 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Lemmatization | 0.654528 | 0.642286 |
| 123 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Stemming | 0.655953 | 0.641763 |
| 124 | SVC | 1-4 | TfidfVectorizer | Stemming | 0.694146 | 0.640632 |
| 125 | SVC | 1-4 | TfidfVectorizer | Lemmatization | 0.696997 | 0.640091 |
| 126 | RandomForestClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.679873 | 0.638730 |
| 127 | RandomForestClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.686295 | 0.638413 |
| 128 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.654885 | 0.637798 |
| 129 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.655241 | 0.637427 |
| 130 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Lemmatization | 0.653100 | 0.636875 |
| 131 | RandomForestClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.682017 | 0.636437 |
| 132 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.652735 | 0.634457 |
| 133 | RandomForestClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.680230 | 0.634418 |
| 134 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Stemming | 0.651310 | 0.634014 |
| 135 | RandomForestClassifier | 1-1 | CountVectorizer | Stemming | 0.679514 | 0.633645 |
| 136 | RandomForestClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.681298 | 0.632994 |
| 137 | RandomForestClassifier | 1-4 | CountVectorizer | Stemming | 0.682365 | 0.632147 |
| 138 | RandomForestClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.679871 | 0.631658 |
| 139 | RandomForestClassifier | 1-3 | CountVectorizer | Stemming | 0.679158 | 0.631591 |
| 140 | RandomForestClassifier | 1-2 | CountVectorizer | Stemming | 0.681654 | 0.631451 |
| 141 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Lemmatization | 0.645247 | 0.631384 |
| 142 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Stemming | 0.645249 | 0.630041 |
| 143 | RandomForestClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.679514 | 0.628897 |
| 144 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Stemming | 0.646670 | 0.628784 |
| 145 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.649166 | 0.628469 |
| 146 | SVC | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.692369 | 0.628196 |
| 147 | MLPClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.647380 | 0.627582 |
| 148 | RandomForestClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.677718 | 0.626504 |
| 149 | SGDClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.658093 | 0.625185 |
| 150 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.645241 | 0.624598 |
| 151 | MLPClassifier | 2-2 | TfidfVectorizer | Lemmatization | 0.639186 | 0.624393 |
| 152 | SVC | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.691297 | 0.624284 |
| 153 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.642391 | 0.624255 |
| 154 | MLPClassifier | 2-2 | TfidfVectorizer | Stemming | 0.638822 | 0.624197 |
| 155 | MLPClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.642383 | 0.624065 |
| 156 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Lemmatization | 0.640613 | 0.623616 |
| 157 | RandomForestClassifier | 1-1 | CountVectorizer | Lemmatization | 0.680229 | 0.623408 |
| 158 | MultinomialNB | 2-4 | CountVectorizer | Stemming | 0.663809 | 0.623246 |
| 159 | MultinomialNB | 2-3 | CountVectorizer | Stemming | 0.662739 | 0.622699 |
| 160 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.644170 | 0.622646 |
| 161 | MultinomialNB | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.662380 | 0.622067 |
| 162 | RandomForestClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.665230 | 0.621562 |
| 163 | MultinomialNB | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.661667 | 0.621530 |
| 164 | MultinomialNB | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.661310 | 0.621269 |
| 165 | RandomForestClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.678083 | 0.621136 |
| 166 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.639535 | 0.620858 |
| 167 | MultinomialNB | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.660239 | 0.620513 |
| 168 | RandomForestClassifier | 1-1 | TfidfVectorizer | Stemming | 0.675584 | 0.619925 |
| 169 | RandomForestClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.660591 | 0.618992 |
| 170 | MultinomialNB | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.666658 | 0.618249 |
| 171 | SVC | 1-1 | CountVectorizer | Stemming | 0.685587 | 0.617936 |
| 172 | RandomForestClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.649524 | 0.617873 |
| 173 | MultinomialNB | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.665230 | 0.617125 |
| 174 | MultinomialNB | 2-4 | CountVectorizer | Lemmatization | 0.656313 | 0.616809 |
| 175 | MultinomialNB | 2-2 | CountVectorizer | Stemming | 0.666659 | 0.616663 |
| 176 | SGDClassifier | 2-2 | TfidfVectorizer | Stemming | 0.646668 | 0.616607 |
| 177 | SVC | 1-1 | CountVectorizer | Lemmatization | 0.686655 | 0.616092 |
| 178 | MultinomialNB | 2-3 | CountVectorizer | Lemmatization | 0.654885 | 0.615967 |
| 179 | SGDClassifier | 2-4 | CountVectorizer | Stemming | 0.650957 | 0.614710 |
| 180 | RandomForestClassifier | 1-2 | TfidfVectorizer | Stemming | 0.658450 | 0.614607 |
| 181 | MultinomialNB | 2-2 | CountVectorizer | Lemmatization | 0.661661 | 0.614404 |
| 182 | SGDClassifier | 2-3 | CountVectorizer | Lemmatization | 0.648092 | 0.614386 |
| 183 | SGDClassifier | 2-3 | TfidfVectorizer | Stemming | 0.655235 | 0.613620 |
| 184 | MLPClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.629540 | 0.613236 |
| 185 | RandomForestClassifier | 1-2 | CountVectorizer | Lemmatization | 0.674153 | 0.612829 |
| 186 | SGDClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.646674 | 0.612190 |
| 187 | RandomForestClassifier | 1-3 | CountVectorizer | Lemmatization | 0.671299 | 0.612098 |
| 188 | SGDClassifier | 2-2 | CountVectorizer | Lemmatization | 0.644889 | 0.611831 |
| 189 | SGDClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.650950 | 0.611394 |
| 190 | SGDClassifier | 2-2 | CountVectorizer | Stemming | 0.645601 | 0.611357 |
| 191 | SGDClassifier | 2-4 | TfidfVectorizer | Stemming | 0.646674 | 0.610095 |
| 192 | MLPClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.616338 | 0.609680 |
| 193 | SGDClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.639172 | 0.609585 |
| 194 | RandomForestClassifier | 1-4 | TfidfVectorizer | Stemming | 0.637031 | 0.609465 |
| 195 | SGDClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.641668 | 0.609396 |
| 196 | SGDClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.644884 | 0.609189 |
| 197 | MLPClassifier | 2-3 | TfidfVectorizer | Stemming | 0.629540 | 0.609041 |
| 198 | MLPClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.625266 | 0.608708 |
| 199 | RandomForestClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.649162 | 0.608249 |
| 200 | SGDClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.642393 | 0.607983 |
| 201 | RandomForestClassifier | 1-3 | TfidfVectorizer | Stemming | 0.643811 | 0.607396 |
| 202 | RandomForestClassifier | 1-4 | CountVectorizer | Lemmatization | 0.669875 | 0.607171 |
| 203 | SGDClassifier | 2-3 | TfidfVectorizer | Lemmatization | 0.641669 | 0.607152 |
| 204 | RandomForestClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.650232 | 0.606385 |
| 205 | RandomForestClassifier | 1-1 | TfidfVectorizer | Lemmatization | 0.666660 | 0.606097 |
| 206 | SGDClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.640250 | 0.605798 |
| 207 | MLPClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.620267 | 0.605248 |
| 208 | SVC | 1-2 | CountVectorizer | Lemmatization | 0.685584 | 0.605166 |
| 209 | RandomForestClassifier | 1-2 | TfidfVectorizer | Lemmatization | 0.650597 | 0.604971 |
| 210 | SVC | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.684517 | 0.604534 |
| 211 | SVC | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.684516 | 0.603765 |
| 212 | LogisticRegression | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.620975 | 0.603558 |
| 213 | SGDClassifier | 2-3 | CountVectorizer | Stemming | 0.643807 | 0.603185 |
| 214 | SGDClassifier | 2-4 | CountVectorizer | Lemmatization | 0.640952 | 0.602685 |
| 215 | RandomForestClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.636319 | 0.602068 |
| 216 | SGDClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.638811 | 0.601908 |
| 217 | SGDClassifier | 2-2 | TfidfVectorizer | Lemmatization | 0.635967 | 0.601524 |
| 218 | SGDClassifier | 2-4 | TfidfVectorizer | Lemmatization | 0.641679 | 0.601462 |
| 219 | SGDClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.641317 | 0.601294 |
| 220 | MLPClassifier | 2-3 | TfidfVectorizer | Lemmatization | 0.612776 | 0.600644 |
| 221 | SGDClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.641325 | 0.600612 |
| 222 | LogisticRegression | 2-2 | TfidfVectorizer | Stemming | 0.614563 | 0.600473 |
| 223 | SVC | 1-2 | CountVectorizer | Stemming | 0.681304 | 0.598915 |
| 224 | RandomForestClassifier | 1-3 | TfidfVectorizer | Lemmatization | 0.635248 | 0.598153 |
| 225 | MLPClassifier | 2-2 | CountVectorizer | Stemming | 0.610635 | 0.597298 |
| 226 | RandomForestClassifier | 1-4 | TfidfVectorizer | Lemmatization | 0.627751 | 0.597271 |
| 227 | LogisticRegression | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.613499 | 0.595745 |
| 228 | LogisticRegression | 2-3 | TfidfVectorizer | Stemming | 0.610992 | 0.595233 |
| 229 | MLPClassifier | 2-4 | TfidfVectorizer | Stemming | 0.613130 | 0.594543 |
| 230 | MLPClassifier | 2-4 | TfidfVectorizer | Lemmatization | 0.608838 | 0.594464 |
| 231 | LogisticRegression | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.613131 | 0.594204 |
| 232 | MLPClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.606355 | 0.594066 |
| 233 | SGDClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.634893 | 0.593563 |
| 234 | LogisticRegression | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.610271 | 0.591433 |
| 235 | LogisticRegression | 2-2 | TfidfVectorizer | Lemmatization | 0.611345 | 0.591389 |
| 236 | MLPClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.604911 | 0.589264 |
| 237 | SVC | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.676305 | 0.586336 |
| 238 | MLPClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.588865 | 0.585903 |
| 239 | LogisticRegression | 2-3 | TfidfVectorizer | Lemmatization | 0.601713 | 0.584582 |
| 240 | SVC | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.674878 | 0.583454 |
| 241 | SVC | 1-3 | CountVectorizer | Stemming | 0.673097 | 0.582136 |
| 242 | MLPClassifier | 2-2 | CountVectorizer | Lemmatization | 0.599562 | 0.580874 |
| 243 | SVC | 1-3 | CountVectorizer | Lemmatization | 0.673812 | 0.580687 |
| 244 | MLPClassifier | 2-3 | CountVectorizer | Lemmatization | 0.590296 | 0.580459 |
| 245 | LogisticRegression | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.608498 | 0.578014 |
| 246 | LogisticRegression | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.596005 | 0.577367 |
| 247 | LogisticRegression | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.594580 | 0.576874 |
| 248 | LogisticRegression | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.604928 | 0.573746 |
| 249 | MLPClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.579964 | 0.573532 |
| 250 | SVC | 1-4 | CountVectorizer | Stemming | 0.672385 | 0.572434 |
| 251 | LogisticRegression | 2-2 | CountVectorizer | Stemming | 0.603140 | 0.572155 |
| 252 | LogisticRegression | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.593869 | 0.569946 |
| 253 | SVC | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.669530 | 0.569471 |
| 254 | LogisticRegression | 2-3 | CountVectorizer | Stemming | 0.594579 | 0.569338 |
| 255 | LogisticRegression | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.593864 | 0.569062 |
| 256 | SVC | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.668816 | 0.569037 |
| 257 | LogisticRegression | 2-4 | TfidfVectorizer | Stemming | 0.589579 | 0.568804 |
| 258 | LogisticRegression | 2-2 | CountVectorizer | Lemmatization | 0.598501 | 0.568178 |
| 259 | LogisticRegression | 2-3 | CountVectorizer | Lemmatization | 0.586374 | 0.565456 |
| 260 | LogisticRegression | 2-4 | TfidfVectorizer | Lemmatization | 0.585301 | 0.565201 |
| 261 | SVC | 1-4 | CountVectorizer | Lemmatization | 0.665961 | 0.564614 |
| 262 | LogisticRegression | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.586725 | 0.560228 |
| 263 | LogisticRegression | 2-4 | CountVectorizer | Stemming | 0.583870 | 0.557960 |
| 264 | LogisticRegression | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.583514 | 0.557825 |
| 265 | MLPClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.591358 | 0.556540 |
| 266 | LogisticRegression | 2-4 | CountVectorizer | Lemmatization | 0.581011 | 0.556179 |
| 267 | MLPClassifier | 2-4 | CountVectorizer | Lemmatization | 0.569242 | 0.554897 |
| 268 | MLPClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.577444 | 0.554780 |
| 269 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.555647 | 0.554059 |
| 270 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Stemming | 0.554223 | 0.552197 |
| 271 | SGDClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.631337 | 0.550610 |
| 272 | MLPClassifier | 2-4 | CountVectorizer | Stemming | 0.559611 | 0.550022 |
| 273 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.551369 | 0.549891 |
| 274 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Stemming | 0.551728 | 0.549407 |
| 275 | LogisticRegression | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.588143 | 0.549158 |
| 276 | LogisticRegression | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.588855 | 0.548772 |
| 277 | SGDClassifier | 3-4 | CountVectorizer | Stemming | 0.627408 | 0.548588 |
| 278 | SGDClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.635256 | 0.548371 |
| 279 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.552443 | 0.548252 |
| 280 | LogisticRegression | 3-3 | CountVectorizer | Stemming | 0.587072 | 0.547793 |
| 281 | SGDClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.630260 | 0.547770 |
| 282 | MLPClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.564249 | 0.546817 |
| 283 | SGDClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.636330 | 0.546007 |
| 284 | LogisticRegression | 3-4 | CountVectorizer | Stemming | 0.577811 | 0.545606 |
| 285 | MLPClassifier | 2-3 | CountVectorizer | Stemming | 0.570309 | 0.545604 |
| 286 | SVC | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.652026 | 0.545520 |
| 287 | MultinomialNB | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.640614 | 0.545000 |
| 288 | MLPClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.574244 | 0.544598 |
| 289 | MultinomialNB | 3-4 | CountVectorizer | Stemming | 0.639900 | 0.544594 |
| 290 | MultinomialNB | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.639901 | 0.544401 |
| 291 | SGDClassifier | 3-4 | CountVectorizer | Lemmatization | 0.622052 | 0.544019 |
| 292 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.551014 | 0.543855 |
| 293 | SVC | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.650599 | 0.543398 |
| 294 | MLPClassifier | 3-3 | CountVectorizer | Stemming | 0.572816 | 0.543332 |
| 295 | MultinomialNB | 3-3 | CountVectorizer | Stemming | 0.641330 | 0.543026 |
| 296 | MultinomialNB | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.641330 | 0.542990 |
| 297 | SGDClassifier | 3-3 | CountVectorizer | Stemming | 0.622768 | 0.542920 |
| 298 | MultinomialNB | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.640973 | 0.542771 |
| 299 | SVC | 2-2 | TfidfVectorizer | Stemming | 0.652740 | 0.542600 |
| 300 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Lemmatization | 0.544587 | 0.541923 |
| 301 | MultinomialNB | 3-4 | CountVectorizer | Lemmatization | 0.637758 | 0.541911 |
| 302 | SVC | 2-2 | TfidfVectorizer | Lemmatization | 0.649524 | 0.540984 |
| 303 | MultinomialNB | 3-3 | CountVectorizer | Lemmatization | 0.639544 | 0.540871 |
| 304 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.548505 | 0.540693 |
| 305 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Lemmatization | 0.553520 | 0.540194 |
| 306 | SGDClassifier | 3-3 | CountVectorizer | Lemmatization | 0.625621 | 0.538782 |
| 307 | SGDClassifier | 3-4 | TfidfVectorizer | Lemmatization | 0.637402 | 0.538380 |
| 308 | MLPClassifier | 3-4 | TfidfVectorizer | Lemmatization | 0.570674 | 0.538328 |
| 309 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.546721 | 0.538242 |
| 310 | MLPClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.565334 | 0.538163 |
| 311 | LogisticRegression | 3-4 | TfidfVectorizer | Stemming | 0.568531 | 0.537569 |
| 312 | SGDClassifier | 3-3 | TfidfVectorizer | Stemming | 0.633119 | 0.536759 |
| 313 | MLPClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.571748 | 0.536168 |
| 314 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Stemming | 0.544936 | 0.535759 |
| 315 | SGDClassifier | 3-3 | TfidfVectorizer | Lemmatization | 0.633118 | 0.535657 |
| 316 | MLPClassifier | 3-3 | TfidfVectorizer | Stemming | 0.564621 | 0.535542 |
| 317 | MLPClassifier | 3-3 | TfidfVectorizer | Lemmatization | 0.555313 | 0.534570 |
| 318 | MLPClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.566048 | 0.534463 |
| 319 | MLPClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.553889 | 0.532030 |
| 320 | BernoulliNB | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.667736 | 0.531636 |
| 321 | BernoulliNB | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.667736 | 0.531636 |
| 322 | MLPClassifier | 3-4 | TfidfVectorizer | Stemming | 0.548547 | 0.531440 |
| 323 | LogisticRegression | 3-3 | TfidfVectorizer | Stemming | 0.552098 | 0.531391 |
| 324 | LogisticRegression | 3-3 | CountVectorizer | Lemmatization | 0.556025 | 0.531085 |
| 325 | BernoulliNB | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.667022 | 0.531075 |
| 326 | BernoulliNB | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.667022 | 0.531075 |
| 327 | LogisticRegression | 3-4 | CountVectorizer | Lemmatization | 0.556744 | 0.530418 |
| 328 | BernoulliNB | 1-1 | TfidfVectorizer | Stemming | 0.664880 | 0.528970 |
| 329 | BernoulliNB | 1-1 | CountVectorizer | Stemming | 0.664880 | 0.528970 |
| 330 | LogisticRegression | 3-3 | TfidfVectorizer | Lemmatization | 0.551743 | 0.528368 |
| 331 | MLPClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.562114 | 0.526833 |
| 332 | MLPClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.556385 | 0.525986 |
| 333 | SGDClassifier | 3-4 | TfidfVectorizer | Stemming | 0.631335 | 0.525487 |
| 334 | LogisticRegression | 3-4 | TfidfVectorizer | Lemmatization | 0.547465 | 0.522677 |
| 335 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Lemmatization | 0.536734 | 0.520478 |
| 336 | LogisticRegression | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.540691 | 0.520261 |
| 337 | LogisticRegression | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.539978 | 0.520082 |
| 338 | MLPClassifier | 3-3 | CountVectorizer | Lemmatization | 0.542827 | 0.518036 |
| 339 | MLPClassifier | 3-4 | CountVectorizer | Stemming | 0.541763 | 0.516246 |
| 340 | MultinomialNB | 1-1 | TfidfVectorizer | Stemming | 0.654538 | 0.515881 |
| 341 | MultinomialNB | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.654180 | 0.515558 |
| 342 | BernoulliNB | 1-1 | TfidfVectorizer | Lemmatization | 0.659528 | 0.514531 |
| 343 | BernoulliNB | 1-1 | CountVectorizer | Lemmatization | 0.659528 | 0.514531 |
| 344 | MultinomialNB | 1-1 | TfidfVectorizer | Lemmatization | 0.653465 | 0.511578 |
| 345 | MultinomialNB | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.653109 | 0.511220 |
| 346 | MLPClassifier | 3-4 | CountVectorizer | Lemmatization | 0.536763 | 0.509827 |
| 347 | SVC | 2-3 | TfidfVectorizer | Stemming | 0.641681 | 0.508812 |
| 348 | SVC | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.641681 | 0.508796 |
| 349 | SVC | 2-3 | TfidfVectorizer | Lemmatization | 0.640606 | 0.508601 |
| 350 | SVC | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.641324 | 0.508584 |
| 351 | MultinomialNB | 4-4 | CountVectorizer | Lemmatization | 0.631688 | 0.506649 |
| 352 | MultinomialNB | 4-4 | CountVectorizer | Stemming | 0.630260 | 0.504921 |
| 353 | MultinomialNB | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.630260 | 0.504921 |
| 354 | MultinomialNB | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.630260 | 0.504921 |
| 355 | SGDClassifier | 4-4 | TfidfVectorizer | Lemmatization | 0.630978 | 0.500611 |
| 356 | SGDClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.630978 | 0.499251 |
| 357 | SGDClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.632408 | 0.498571 |
| 358 | SGDClassifier | 4-4 | TfidfVectorizer | Stemming | 0.629192 | 0.496160 |
| 359 | SGDClassifier | 4-4 | CountVectorizer | Lemmatization | 0.600979 | 0.495859 |
| 360 | SVC | 2-4 | TfidfVectorizer | Stemming | 0.636684 | 0.494148 |
| 361 | SVC | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.636327 | 0.493520 |
| 362 | SVC | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.636327 | 0.493517 |
| 363 | SVC | 2-4 | TfidfVectorizer | Lemmatization | 0.635255 | 0.492586 |
| 364 | SGDClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.598837 | 0.492347 |
| 365 | RandomForestClassifier | 2-2 | TfidfVectorizer | Lemmatization | 0.591727 | 0.483862 |
| 366 | RandomForestClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.589936 | 0.481433 |
| 367 | RandomForestClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.577442 | 0.481385 |
| 368 | RandomForestClassifier | 2-2 | TfidfVectorizer | Stemming | 0.592080 | 0.481064 |
| 369 | RandomForestClassifier | 2-4 | TfidfVectorizer | Lemmatization | 0.577797 | 0.480132 |
| 370 | RandomForestClassifier | 2-4 | TfidfVectorizer | Stemming | 0.576013 | 0.479567 |
| 371 | RandomForestClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.586728 | 0.478200 |
| 372 | RandomForestClassifier | 2-2 | CountVectorizer | Lemmatization | 0.624199 | 0.477813 |
| 373 | RandomForestClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.624558 | 0.477024 |
| 374 | RandomForestClassifier | 2-4 | CountVectorizer | Lemmatization | 0.625269 | 0.476833 |
| 375 | RandomForestClassifier | 2-3 | CountVectorizer | Lemmatization | 0.625626 | 0.476209 |
| 376 | RandomForestClassifier | 2-3 | TfidfVectorizer | Stemming | 0.585297 | 0.475919 |
| 377 | RandomForestClassifier | 2-3 | TfidfVectorizer | Lemmatization | 0.578160 | 0.474379 |
| 378 | RandomForestClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.584940 | 0.474188 |
| 379 | SVC | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.631691 | 0.473806 |
| 380 | SVC | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.630978 | 0.473102 |
| 381 | SVC | 2-2 | CountVectorizer | Stemming | 0.631335 | 0.472432 |
| 382 | SGDClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.542815 | 0.471845 |
| 383 | RandomForestClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.589581 | 0.471452 |
| 384 | RandomForestClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.623843 | 0.470255 |
| 385 | RandomForestClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.623482 | 0.469683 |
| 386 | SVC | 2-2 | CountVectorizer | Lemmatization | 0.628836 | 0.469532 |
| 387 | RandomForestClassifier | 2-4 | CountVectorizer | Stemming | 0.623130 | 0.469192 |
| 388 | RandomForestClassifier | 2-3 | CountVectorizer | Stemming | 0.623843 | 0.468676 |
| 389 | RandomForestClassifier | 2-2 | CountVectorizer | Stemming | 0.623126 | 0.468153 |
| 390 | RandomForestClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.622772 | 0.467600 |
| 391 | SGDClassifier | 4-4 | CountVectorizer | Stemming | 0.538946 | 0.467487 |
| 392 | RandomForestClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.621701 | 0.467109 |
| 393 | SVC | 3-3 | TfidfVectorizer | Lemmatization | 0.637403 | 0.467066 |
| 394 | SVC | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.634906 | 0.465383 |
| 395 | SVC | 3-3 | TfidfVectorizer | Stemming | 0.634906 | 0.465373 |
| 396 | SVC | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.634550 | 0.464936 |
| 397 | MultinomialNB | 2-3 | TfidfVectorizer | Lemmatization | 0.636687 | 0.461052 |
| 398 | MultinomialNB | 3-3 | TfidfVectorizer | Stemming | 0.634546 | 0.460943 |
| 399 | KNeighborsClassifier | 1-1 | CountVectorizer | Stemming | 0.498211 | 0.460774 |
| 400 | MultinomialNB | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.634189 | 0.460728 |
| 401 | MultinomialNB | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.633833 | 0.460037 |
| 402 | MultinomialNB | 2-3 | TfidfVectorizer | Stemming | 0.637044 | 0.459750 |
| 403 | MultinomialNB | 3-3 | TfidfVectorizer | Lemmatization | 0.634546 | 0.459490 |
| 404 | MultinomialNB | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.636329 | 0.458888 |
| 405 | MultinomialNB | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.636329 | 0.458888 |
| 406 | SVC | 2-3 | CountVectorizer | Lemmatization | 0.626695 | 0.457425 |
| 407 | SVC | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.625269 | 0.455953 |
| 408 | MultinomialNB | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.636328 | 0.455799 |
| 409 | SVC | 3-4 | TfidfVectorizer | Stemming | 0.632054 | 0.455765 |
| 410 | SVC | 3-4 | TfidfVectorizer | Lemmatization | 0.632408 | 0.455739 |
| 411 | MultinomialNB | 2-2 | TfidfVectorizer | Stemming | 0.635971 | 0.455619 |
| 412 | KNeighborsClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.496073 | 0.455326 |
| 413 | MultinomialNB | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.635615 | 0.455126 |
| 414 | MultinomialNB | 2-2 | TfidfVectorizer | Lemmatization | 0.635255 | 0.454744 |
| 415 | MultinomialNB | 2-4 | TfidfVectorizer | Stemming | 0.632762 | 0.454451 |
| 416 | SVC | 2-3 | CountVectorizer | Stemming | 0.624198 | 0.453995 |
| 417 | MultinomialNB | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.632405 | 0.453771 |
| 418 | SVC | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.624198 | 0.453332 |
| 419 | MultinomialNB | 2-4 | TfidfVectorizer | Lemmatization | 0.632046 | 0.453317 |
| 420 | MultinomialNB | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.632048 | 0.453310 |
| 421 | MultinomialNB | 3-4 | TfidfVectorizer | Stemming | 0.630621 | 0.452960 |
| 422 | MultinomialNB | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.630621 | 0.452960 |
| 423 | MultinomialNB | 3-4 | TfidfVectorizer | Lemmatization | 0.630978 | 0.452665 |
| 424 | MultinomialNB | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.629907 | 0.452025 |
| 425 | MLPClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.484301 | 0.451134 |
| 426 | LogisticRegression | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.487511 | 0.449918 |
| 427 | MLPClassifier | 4-4 | TfidfVectorizer | Lemmatization | 0.485729 | 0.449685 |
| 428 | LogisticRegression | 4-4 | TfidfVectorizer | Lemmatization | 0.486084 | 0.448915 |
| 429 | KNeighborsClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.493930 | 0.448847 |
| 430 | MLPClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.485013 | 0.448626 |
| 431 | LogisticRegression | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.485727 | 0.448436 |
| 432 | LogisticRegression | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.486084 | 0.447660 |
| 433 | LogisticRegression | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.484298 | 0.447649 |
| 434 | LogisticRegression | 4-4 | CountVectorizer | Stemming | 0.486084 | 0.447250 |
| 435 | MLPClassifier | 4-4 | CountVectorizer | Lemmatization | 0.482874 | 0.447145 |
| 436 | LogisticRegression | 4-4 | CountVectorizer | Lemmatization | 0.485727 | 0.447023 |
| 437 | SVC | 2-4 | CountVectorizer | Lemmatization | 0.622769 | 0.446558 |
| 438 | SVC | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.622412 | 0.446373 |
| 439 | SVC | 2-4 | CountVectorizer | Stemming | 0.622412 | 0.445719 |
| 440 | SVC | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.622055 | 0.445538 |
| 441 | LogisticRegression | 4-4 | TfidfVectorizer | Stemming | 0.484656 | 0.445116 |
| 442 | MLPClassifier | 4-4 | TfidfVectorizer | Stemming | 0.483232 | 0.444820 |
| 443 | MLPClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.482871 | 0.443717 |
| 444 | MultinomialNB | 1-2 | TfidfVectorizer | Lemmatization | 0.638471 | 0.443276 |
| 445 | MLPClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.480018 | 0.443256 |
| 446 | MultinomialNB | 1-3 | TfidfVectorizer | Lemmatization | 0.634901 | 0.442748 |
| 447 | MLPClassifier | 4-4 | CountVectorizer | Stemming | 0.476806 | 0.440919 |
| 448 | MultinomialNB | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.635615 | 0.440810 |
| 449 | MultinomialNB | 4-4 | TfidfVectorizer | Lemmatization | 0.626336 | 0.440807 |
| 450 | MultinomialNB | 4-4 | TfidfVectorizer | Stemming | 0.625623 | 0.440661 |
| 451 | MultinomialNB | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.625623 | 0.440661 |
| 452 | MultinomialNB | 1-2 | TfidfVectorizer | Stemming | 0.634188 | 0.440567 |
| 453 | MultinomialNB | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.624910 | 0.439681 |
| 454 | MultinomialNB | 1-3 | TfidfVectorizer | Stemming | 0.633830 | 0.439187 |
| 455 | MultinomialNB | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.633831 | 0.438890 |
| 456 | SVC | 4-4 | TfidfVectorizer | Stemming | 0.623485 | 0.438032 |
| 457 | MultinomialNB | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.632757 | 0.435744 |
| 458 | MultinomialNB | 1-4 | TfidfVectorizer | Lemmatization | 0.630977 | 0.435380 |
| 459 | KNeighborsClassifier | 1-1 | CountVectorizer | Lemmatization | 0.479657 | 0.434142 |
| 460 | MultinomialNB | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.632758 | 0.433909 |
| 461 | MultinomialNB | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.630616 | 0.433402 |
| 462 | MultinomialNB | 1-4 | TfidfVectorizer | Stemming | 0.630260 | 0.433189 |
| 463 | SVC | 3-3 | CountVectorizer | Stemming | 0.620273 | 0.429994 |
| 464 | SVC | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.620631 | 0.429867 |
| 465 | SVC | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.620274 | 0.429681 |
| 466 | SVC | 3-3 | CountVectorizer | Lemmatization | 0.620986 | 0.429077 |
| 467 | SVC | 3-4 | CountVectorizer | Lemmatization | 0.616346 | 0.418614 |
| 468 | SVC | 3-4 | CountVectorizer | Stemming | 0.616704 | 0.416978 |
| 469 | RandomForestClassifier | 3-3 | TfidfVectorizer | Lemmatization | 0.603143 | 0.409607 |
| 470 | RandomForestClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.601359 | 0.409366 |
| 471 | RandomForestClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.599577 | 0.408072 |
| 472 | RandomForestClassifier | 3-4 | TfidfVectorizer | Stemming | 0.601718 | 0.406473 |
| 473 | RandomForestClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.601362 | 0.406353 |
| 474 | RandomForestClassifier | 3-3 | TfidfVectorizer | Stemming | 0.600647 | 0.406166 |
| 475 | RandomForestClassifier | 3-4 | TfidfVectorizer | Lemmatization | 0.601003 | 0.406105 |
| 476 | SVC | 4-4 | CountVectorizer | Stemming | 0.612421 | 0.405613 |
| 477 | RandomForestClassifier | 4-4 | TfidfVectorizer | Lemmatization | 0.608492 | 0.403235 |
| 478 | RandomForestClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.597790 | 0.402400 |
| 479 | RandomForestClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.606706 | 0.401756 |
| 480 | RandomForestClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.609562 | 0.400929 |
| 481 | RandomForestClassifier | 4-4 | TfidfVectorizer | Stemming | 0.607066 | 0.400738 |
| 482 | RandomForestClassifier | 4-4 | CountVectorizer | Stemming | 0.606708 | 0.397476 |
| 483 | RandomForestClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.605280 | 0.397007 |
| 484 | RandomForestClassifier | 4-4 | CountVectorizer | Lemmatization | 0.607064 | 0.396534 |
| 485 | RandomForestClassifier | 3-3 | CountVectorizer | Stemming | 0.604211 | 0.395313 |
| 486 | RandomForestClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.605281 | 0.394859 |
| 487 | RandomForestClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.603141 | 0.393831 |
| 488 | RandomForestClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.605637 | 0.393531 |
| 489 | RandomForestClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.604570 | 0.392668 |
| 490 | RandomForestClassifier | 3-4 | CountVectorizer | Lemmatization | 0.603496 | 0.392638 |
| 491 | RandomForestClassifier | 3-4 | CountVectorizer | Stemming | 0.603854 | 0.391898 |
| 492 | RandomForestClassifier | 3-3 | CountVectorizer | Lemmatization | 0.603142 | 0.391592 |
| 493 | RandomForestClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.602429 | 0.390782 |
| 494 | KNeighborsClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.435047 | 0.380939 |
| 495 | KNeighborsClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.437899 | 0.377221 |
| 496 | KNeighborsClassifier | 1-2 | CountVectorizer | Stemming | 0.434691 | 0.376448 |
| 497 | BernoulliNB | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.617418 | 0.371455 |
| 498 | BernoulliNB | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.617418 | 0.371455 |
| 499 | BernoulliNB | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.617061 | 0.370630 |
| 500 | BernoulliNB | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.617061 | 0.370630 |
| 501 | KNeighborsClassifier | 1-2 | CountVectorizer | Lemmatization | 0.427548 | 0.370313 |
| 502 | BernoulliNB | 1-2 | TfidfVectorizer | Stemming | 0.616705 | 0.370075 |
| 503 | BernoulliNB | 1-2 | CountVectorizer | Stemming | 0.616705 | 0.370075 |
| 504 | BernoulliNB | 1-2 | TfidfVectorizer | Lemmatization | 0.614563 | 0.367165 |
| 505 | BernoulliNB | 1-2 | CountVectorizer | Lemmatization | 0.614563 | 0.367165 |
| 506 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Lemmatization | 0.400411 | 0.348013 |
| 507 | KNeighborsClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.399733 | 0.343532 |
| 508 | KNeighborsClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.391525 | 0.339806 |
| 509 | KNeighborsClassifier | 1-3 | CountVectorizer | Stemming | 0.397228 | 0.337036 |
| 510 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Stemming | 0.388310 | 0.333029 |
| 511 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Stemming | 0.364059 | 0.332911 |
| 512 | KNeighborsClassifier | 1-3 | CountVectorizer | Lemmatization | 0.396858 | 0.325050 |
| 513 | BernoulliNB | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.597430 | 0.323384 |
| 514 | BernoulliNB | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.597430 | 0.323384 |
| 515 | BernoulliNB | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.597073 | 0.322818 |
| 516 | BernoulliNB | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.597073 | 0.322818 |
| 517 | KNeighborsClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.395087 | 0.322547 |
| 518 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.368666 | 0.322532 |
| 519 | BernoulliNB | 1-3 | TfidfVectorizer | Lemmatization | 0.596716 | 0.322284 |
| 520 | BernoulliNB | 1-3 | CountVectorizer | Lemmatization | 0.596716 | 0.322284 |
| 521 | BernoulliNB | 1-3 | TfidfVectorizer | Stemming | 0.596716 | 0.322192 |
| 522 | BernoulliNB | 1-3 | CountVectorizer | Stemming | 0.596716 | 0.322192 |
| 523 | KNeighborsClassifier | 1-4 | CountVectorizer | Stemming | 0.372612 | 0.317708 |
| 524 | KNeighborsClassifier | 3-3 | CountVectorizer | Stemming | 0.368358 | 0.317581 |
| 525 | BernoulliNB | 2-2 | TfidfVectorizer | Stemming | 0.593506 | 0.316175 |
| 526 | BernoulliNB | 2-2 | CountVectorizer | Stemming | 0.593506 | 0.316175 |
| 527 | BernoulliNB | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.593149 | 0.315586 |
| 528 | BernoulliNB | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.593149 | 0.315586 |
| 529 | BernoulliNB | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.592793 | 0.315414 |
| 530 | BernoulliNB | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.592793 | 0.315414 |
| 531 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.345851 | 0.315278 |
| 532 | KNeighborsClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.372615 | 0.313925 |
| 533 | KNeighborsClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.369409 | 0.313805 |
| 534 | BernoulliNB | 2-2 | TfidfVectorizer | Lemmatization | 0.591365 | 0.313547 |
| 535 | BernoulliNB | 2-2 | CountVectorizer | Lemmatization | 0.591365 | 0.313547 |
| 536 | BernoulliNB | 1-4 | TfidfVectorizer | Lemmatization | 0.593147 | 0.312968 |
| 537 | BernoulliNB | 1-4 | CountVectorizer | Lemmatization | 0.593147 | 0.312968 |
| 538 | KNeighborsClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.368289 | 0.312317 |
| 539 | BernoulliNB | 1-4 | TfidfVectorizer | Stemming | 0.592077 | 0.312071 |
| 540 | BernoulliNB | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.592077 | 0.312071 |
| 541 | BernoulliNB | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.592077 | 0.312071 |
| 542 | BernoulliNB | 1-4 | CountVectorizer | Stemming | 0.592077 | 0.312071 |
| 543 | BernoulliNB | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.592077 | 0.312071 |
| 544 | BernoulliNB | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.592077 | 0.312071 |
| 545 | KNeighborsClassifier | 1-4 | CountVectorizer | Lemmatization | 0.386511 | 0.310586 |
| 546 | KNeighborsClassifier | 3-3 | CountVectorizer | Lemmatization | 0.371186 | 0.310292 |
| 547 | KNeighborsClassifier | 3-4 | CountVectorizer | Lemmatization | 0.400092 | 0.309598 |
| 548 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Lemmatization | 0.384370 | 0.308285 |
| 549 | KNeighborsClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.355476 | 0.308012 |
| 550 | BernoulliNB | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.590647 | 0.307572 |
| 551 | BernoulliNB | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.590647 | 0.307572 |
| 552 | BernoulliNB | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.590647 | 0.307572 |
| 553 | BernoulliNB | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.590647 | 0.307572 |
| 554 | BernoulliNB | 2-4 | TfidfVectorizer | Stemming | 0.590290 | 0.307409 |
| 555 | BernoulliNB | 2-4 | CountVectorizer | Stemming | 0.590290 | 0.307409 |
| 556 | BernoulliNB | 2-4 | TfidfVectorizer | Lemmatization | 0.590291 | 0.307404 |
| 557 | BernoulliNB | 2-4 | CountVectorizer | Lemmatization | 0.590291 | 0.307404 |
| 558 | BernoulliNB | 2-3 | TfidfVectorizer | Stemming | 0.588152 | 0.307353 |
| 559 | BernoulliNB | 2-3 | CountVectorizer | Stemming | 0.588152 | 0.307353 |
| 560 | BernoulliNB | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.588151 | 0.306884 |
| 561 | BernoulliNB | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.588151 | 0.306884 |
| 562 | BernoulliNB | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.587795 | 0.306718 |
| 563 | BernoulliNB | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.587795 | 0.306718 |
| 564 | BernoulliNB | 2-3 | TfidfVectorizer | Lemmatization | 0.588507 | 0.306548 |
| 565 | BernoulliNB | 2-3 | CountVectorizer | Lemmatization | 0.588507 | 0.306548 |
| 566 | BernoulliNB | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.590646 | 0.305795 |
| 567 | BernoulliNB | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.590646 | 0.305795 |
| 568 | BernoulliNB | 3-3 | TfidfVectorizer | Lemmatization | 0.590290 | 0.305628 |
| 569 | BernoulliNB | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.590290 | 0.305628 |
| 570 | BernoulliNB | 3-3 | CountVectorizer | Lemmatization | 0.590290 | 0.305628 |
| 571 | BernoulliNB | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.590290 | 0.305628 |
| 572 | BernoulliNB | 3-3 | TfidfVectorizer | Stemming | 0.589933 | 0.305003 |
| 573 | BernoulliNB | 3-3 | CountVectorizer | Stemming | 0.589933 | 0.305003 |
| 574 | KNeighborsClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.359403 | 0.303422 |
| 575 | BernoulliNB | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.589220 | 0.303294 |
| 576 | BernoulliNB | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.589220 | 0.303294 |
| 577 | BernoulliNB | 3-4 | TfidfVectorizer | Lemmatization | 0.588863 | 0.303128 |
| 578 | BernoulliNB | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.588863 | 0.303128 |
| 579 | BernoulliNB | 3-4 | CountVectorizer | Lemmatization | 0.588863 | 0.303128 |
| 580 | BernoulliNB | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.588863 | 0.303128 |
| 581 | BernoulliNB | 3-4 | TfidfVectorizer | Stemming | 0.588149 | 0.301893 |
| 582 | BernoulliNB | 3-4 | CountVectorizer | Stemming | 0.588149 | 0.301893 |
| 583 | KNeighborsClassifier | 4-4 | TfidfVectorizer | Stemming | 0.391501 | 0.297600 |
| 584 | KNeighborsClassifier | 2-2 | CountVectorizer | Lemmatization | 0.364748 | 0.296899 |
| 585 | BernoulliNB | 4-4 | TfidfVectorizer | Lemmatization | 0.584582 | 0.294685 |
| 586 | BernoulliNB | 4-4 | CountVectorizer | Lemmatization | 0.584582 | 0.294685 |
| 587 | BernoulliNB | 4-4 | TfidfVectorizer | Stemming | 0.584582 | 0.294224 |
| 588 | BernoulliNB | 4-4 | CountVectorizer | Stemming | 0.584582 | 0.294224 |
| 589 | BernoulliNB | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.584225 | 0.294077 |
| 590 | BernoulliNB | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.584225 | 0.294077 |
| 591 | BernoulliNB | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.584225 | 0.294077 |
| 592 | BernoulliNB | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.584225 | 0.294077 |
| 593 | KNeighborsClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.344397 | 0.291694 |
| 594 | KNeighborsClassifier | 2-2 | CountVectorizer | Stemming | 0.349050 | 0.291563 |
| 595 | KNeighborsClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.338704 | 0.291391 |
| 596 | KNeighborsClassifier | 4-4 | CountVectorizer | Stemming | 0.383293 | 0.284235 |
| 597 | KNeighborsClassifier | 3-4 | CountVectorizer | Stemming | 0.329434 | 0.283690 |
| 598 | KNeighborsClassifier | 2-3 | CountVectorizer | Lemmatization | 0.354394 | 0.282475 |
| 599 | KNeighborsClassifier | 2-4 | CountVectorizer | Lemmatization | 0.335832 | 0.280718 |
| 600 | KNeighborsClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.317993 | 0.279978 |
| 601 | KNeighborsClassifier | 2-4 | CountVectorizer | Stemming | 0.326934 | 0.276642 |
| 602 | KNeighborsClassifier | 2-3 | CountVectorizer | Stemming | 0.329430 | 0.273077 |
| 603 | KNeighborsClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.316930 | 0.270581 |
# Stratifying
'''
The following line of code is used to stratify the dataset.
It keeps the same proportion of each class in the dataset. To achieve this it uses the minimum count value of the
classes in the dataset.
'''
df_balanced = df.groupby('label').apply(
lambda x: x.sample(n=df['label'].value_counts().min()))
# Doing Multi threading because it will take alot of time
MAX_THREADS = 10
highest_f1_score_model_BalancedDataSet = {
"model": None, "score": 0, "lock": threading.Lock()}
highest_accuracy_model_BalancedDataSet = {
"model": None, "score": 0, "lock": threading.Lock()}
# Do the training and testing
# Creating the list to store the result of each model
result_balanced = {"list": [], "lock": threading.Lock()}
def trainingAndTesting(model, df, highest_f1_score_model_BalancedDataSet, highest_accuracy_model_BalancedDataSet, result_balanced, numberOFThreadsCreated, kfold):
totalFScore = 0
totalAccuracy = 0
totalConfusion_matrix = None
local_highest_accuracy_score = 0
best_model = None
for train_index, test_index in kfold.split(df[['body']], df['label']):
X_train, X_test = df.iloc[train_index][[
'body']], df.iloc[test_index][['body']]
y_train, y_test = df.iloc[train_index]['label'], df.iloc[test_index]['label']
model['pipeline'].fit(X_train, y_train)
y_pred = model['pipeline'].predict(X_test)
totalAccuracy += accuracy_score(y_test, y_pred)
totalFScore += f1_score(y_test, y_pred, average='macro')
totalConfusion_matrix = totalConfusion_matrix + confusion_matrix(
y_test, y_pred) if totalConfusion_matrix is not None else confusion_matrix(y_test, y_pred)
if local_highest_accuracy_score < accuracy_score(y_test, y_pred):
local_highest_accuracy_score = accuracy_score(y_test, y_pred)
best_model = model
fscore = totalFScore/kfold.get_n_splits()
acc_score = totalAccuracy/kfold.get_n_splits()
confusion_matrix_result = totalConfusion_matrix/kfold.get_n_splits()
highest_f1_score_model_BalancedDataSet["lock"].acquire()
if fscore > highest_f1_score_model_BalancedDataSet.get("score"):
highest_f1_score_model_BalancedDataSet["score"] = fscore
highest_f1_score_model_BalancedDataSet["model"] = best_model
highest_f1_score_model_BalancedDataSet["lock"].release()
highest_accuracy_model_BalancedDataSet["lock"].acquire()
if acc_score > highest_accuracy_model_BalancedDataSet.get("score"):
highest_accuracy_model_BalancedDataSet["score"] = acc_score
highest_accuracy_model_BalancedDataSet["model"] = best_model
highest_accuracy_model_BalancedDataSet["lock"].release()
result_balanced["lock"].acquire()
result_balanced["list"].append({"model": best_model, "accuracy": acc_score,
"f1_score": fscore, "confusion_matrix": confusion_matrix_result})
result_balanced["lock"].release()
numberOFThreadsCreated["lock"].acquire()
numberOFThreadsCreated["num"] -= 1
numberOFThreadsCreated["lock"].release()
# 10 fold cross validation for each model
numberOfFolds = 5
kfold = StratifiedKFold(n_splits=numberOfFolds, shuffle=True, random_state=7)
numberOFThreadsCreated = {"num": 0, "lock": threading.Lock()}
threads = []
models = 0
for algo, arguments in (modelAlgo):
for m in nGramsList:
for n in range(m, 5):
for option, option_description in options:
for vectorizer in [CountVectorizer, TfidfVectorizer]:
pipeline = Pipeline([
("normalizer", Normalizer(options=option)),
("vectorizer", vectorizer(ngram_range=(m, n))),
("classifier", algo(**arguments))
])
model = {"pipeline": pipeline, "minNrange": m, "maxNrange": n,
"machineLearingAlgo": algo.__name__, "vectorizer": vectorizer.__name__, "options": option_description}
models += 1
while(True):
numberOFThreadsCreated["lock"].acquire()
if(numberOFThreadsCreated["num"] < MAX_THREADS):
numberOFThreadsCreated["lock"].release()
break
numberOFThreadsCreated["lock"].release()
time.sleep(10)
thread = threading.Thread(target=trainingAndTesting, args=(
model, df_balanced, highest_f1_score_model_BalancedDataSet, highest_accuracy_model_BalancedDataSet, result_balanced, numberOFThreadsCreated, kfold))
numberOFThreadsCreated["lock"].acquire()
numberOFThreadsCreated["num"] += 1
thread.start()
numberOFThreadsCreated["lock"].release()
threads.append(thread)
# Wait for each model to finish to start printing
for thread in threads:
thread.join()
printmd(
f'We had {models} models which were trained and tested in parallel with {MAX_THREADS} threads.')
# Now will do printing
def prettyPrintModels(model):
modelAlgoName = model["model"]["machineLearingAlgo"]
vectorizerName = model["model"]["vectorizer"]
optionsName = model["model"]["options"]
minNrange = model["model"]["minNrange"]
maxNrange = model["model"]["maxNrange"]
if minNrange == maxNrange:
nGramString = f'{minNrange} {"word" if minNrange==1 else "words as a feature for vectorization"}'
else:
nGramString = f'{minNrange}-{maxNrange} words as a feature for vectorization'
printmd("## Trained and Tested Model: " + modelAlgoName +
"\n\t - using " + optionsName + " for tokenization" +
"\n\t - with " + vectorizerName + " as a vectorizer taking " + nGramString +
"\n\t - without stratification on an unbalanced dataset")
printmd("--"*10+"Results" + "--"*10)
printmd(
f"- Average Accuracy of {modelAlgoName} across {numberOfFolds}-folds = {model['accuracy']}")
printmd(
f"- Average F1-Score of {modelAlgoName} across {numberOfFolds}-folds = {model['f1_score']}")
printmd(
f"- Average Confustion Matrix of {modelAlgoName} across {numberOfFolds}-folds:")
sns.heatmap(model["confusion_matrix"], annot=True)
plt.show()
# Fist will sort the models based on the model's minimum ngram range and maximum ngram range
result_balanced["lock"].acquire()
result_balanced["list"].sort(key=lambda x: (
x["model"]["minNrange"], x["model"]["maxNrange"]))
for model in result_balanced["list"]:
prettyPrintModels(model)
# Print the best model
printmd('---'*10)
result_balanced["lock"].release()
# Load all the json files in the directory
MAX_THREADS = 10
highest_accuracy_model_BalancedDataSet = {"model":None, "score":0,"lock":threading.Lock()}
highest_f1_score_model_BalancedDataSet = {"model":None, "score":0,"lock":threading.Lock()}
# Do the training and testing
# Creating the list to store the result of each model
result_balanced = {"list": [], "lock": threading.Lock()}
numberOfFolds =5
def prettyPrintModels(model):
modelAlgoName = model["model"]["machineLearingAlgo"]
vectorizerName = model["model"]["vectorizer"]
optionsName = model["model"]["options"]
minNrange = model["model"]["minNrange"]
maxNrange = model["model"]["maxNrange"]
if minNrange == maxNrange:
nGramString = f'{minNrange} {"word" if minNrange==1 else "words as a feature for vectorization"}'
else:
nGramString = f'{minNrange}-{maxNrange} words as a feature for vectorization'
printmd("## Trained and Tested Model: " + modelAlgoName +
"\n\t - using " + optionsName + " for tokenization" +
"\n\t - with " + vectorizerName + " as a vectorizer taking " + nGramString +
"\n\t - without stratification on an unbalanced dataset")
printmd("--"*10+"Results" + "--"*10)
printmd(
f"- Average Accuracy of {modelAlgoName} across {numberOfFolds}-folds = {model['accuracy']}")
printmd(
f"- Average F1-Score of {modelAlgoName} across {numberOfFolds}-folds = {model['f1_score']}")
printmd(
f"- Average Confustion Matrix of {modelAlgoName} across {numberOfFolds}-folds:")
sns.heatmap(model["confusion_matrix"], annot=True)
plt.show()
outputs = []
for file in os.listdir("./OutputsBalanced"):
if file.endswith(".json"):
# Load the json file
with open(os.path.join("./OutputsBalanced", file), "r") as f:
model = json.load(f)
with open(os.path.join("./OutputsBalanced", f"{file[:-5]}_confusion_matrix.npy"), "rb") as fc:
#Load the confusion matrix
model["confusion_matrix"] = np.load(fc)
highest_accuracy_model_BalancedDataSet["lock"].acquire()
if model["accuracy"] > highest_accuracy_model_BalancedDataSet.get("score"):
highest_accuracy_model_BalancedDataSet["score"] = model["accuracy"]
highest_accuracy_model_BalancedDataSet["model"] = model['model']
highest_accuracy_model_BalancedDataSet["lock"].release()
highest_f1_score_model_BalancedDataSet["lock"].acquire()
if model["f1_score"] > highest_f1_score_model_BalancedDataSet.get("score"):
highest_f1_score_model_BalancedDataSet["score"] = model["f1_score"]
highest_f1_score_model_BalancedDataSet["model"] = model['model']
highest_f1_score_model_BalancedDataSet["lock"].release()
outputs.append(model)
outputs.sort(key=lambda x: (x["model"]["minNrange"],x["model"]["maxNrange"]))
result_balanced["lock"].acquire()
result_balanced["list"] = outputs
result_balanced["lock"].release()
for model in outputs:
prettyPrintModels(model)
printmd('---'*10)
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1 word
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 2-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 3-4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with CountVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
- using Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 4 words as a feature for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
result_balanced["lock"].acquire()
# result_balanced["list"].sort(key=lambda x: (
# x["model"]["machineLearingAlgo"], x["model"]["minNrange"], x["model"]["maxNrange"]))
result_balanced["list"].sort(key=lambda x: (
x["accuracy"]))
resultsDataFrameBalanced = pd.DataFrame(
columns=['Algorithim', 'Ngram Range', 'Vectorizer', 'Normalizing Technique', 'Accuracy', 'F1-Score'])
for model in reversed(result_balanced["list"]):
resultsDataFrameBalanced.loc[len(resultsDataFrameBalanced)] = [model["model"]["machineLearingAlgo"],
f'{model["model"]["minNrange"]}-{model["model"]["maxNrange"]}',
model["model"]["vectorizer"],
model["model"]["options"],
model["accuracy"],
model["f1_score"]]
result_balanced["lock"].release()
pd.set_option("display.max_rows", None, "display.max_columns", None)
display(resultsDataFrameBalanced)
| Algorithim | Ngram Range | Vectorizer | Normalizing Technique | Accuracy | F1-Score | |
|---|---|---|---|---|---|---|
| 0 | LogisticRegression | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.715905 | 0.715025 |
| 1 | LogisticRegression | 1-2 | TfidfVectorizer | Stemming | 0.713497 | 0.713342 |
| 2 | LogisticRegression | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.709771 | 0.708579 |
| 3 | MultinomialNB | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.709687 | 0.709306 |
| 4 | LogisticRegression | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.708551 | 0.708326 |
| 5 | MultinomialNB | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.708483 | 0.707662 |
| 6 | MultinomialNB | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.708460 | 0.708110 |
| 7 | LogisticRegression | 1-1 | TfidfVectorizer | Stemming | 0.707324 | 0.707171 |
| 8 | LogisticRegression | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.706105 | 0.706594 |
| 9 | LogisticRegression | 1-1 | TfidfVectorizer | Lemmatization | 0.706074 | 0.703953 |
| 10 | MultinomialNB | 1-4 | TfidfVectorizer | Stemming | 0.706029 | 0.705845 |
| 11 | MultinomialNB | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.706014 | 0.705440 |
| 12 | MultinomialNB | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.706006 | 0.705401 |
| 13 | LogisticRegression | 1-1 | CountVectorizer | Stemming | 0.704885 | 0.704977 |
| 14 | LogisticRegression | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.704847 | 0.704106 |
| 15 | MultinomialNB | 1-2 | TfidfVectorizer | Stemming | 0.704779 | 0.704945 |
| 16 | MultinomialNB | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.704772 | 0.704381 |
| 17 | LogisticRegression | 1-4 | TfidfVectorizer | Stemming | 0.703643 | 0.702780 |
| 18 | LogisticRegression | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.703620 | 0.702103 |
| 19 | LogisticRegression | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.702424 | 0.702781 |
| 20 | MultinomialNB | 1-1 | TfidfVectorizer | Stemming | 0.702356 | 0.701155 |
| 21 | MultinomialNB | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.702333 | 0.700599 |
| 22 | MultinomialNB | 1-2 | TfidfVectorizer | Lemmatization | 0.701106 | 0.700408 |
| 23 | MultinomialNB | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.701106 | 0.699475 |
| 24 | MultinomialNB | 1-3 | TfidfVectorizer | Stemming | 0.701098 | 0.700970 |
| 25 | LogisticRegression | 1-3 | TfidfVectorizer | Stemming | 0.699962 | 0.699277 |
| 26 | LogisticRegression | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.699947 | 0.699451 |
| 27 | LogisticRegression | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.699939 | 0.699380 |
| 28 | LogisticRegression | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.699932 | 0.698535 |
| 29 | LogisticRegression | 1-2 | CountVectorizer | Stemming | 0.698720 | 0.698747 |
| 30 | LogisticRegression | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.697501 | 0.696582 |
| 31 | LogisticRegression | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.697493 | 0.696995 |
| 32 | LogisticRegression | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.697493 | 0.696645 |
| 33 | LogisticRegression | 1-3 | CountVectorizer | Lemmatization | 0.697485 | 0.698161 |
| 34 | LogisticRegression | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.697485 | 0.695861 |
| 35 | MultinomialNB | 1-1 | TfidfVectorizer | Lemmatization | 0.697440 | 0.696055 |
| 36 | LogisticRegression | 1-4 | CountVectorizer | Stemming | 0.696251 | 0.695184 |
| 37 | LogisticRegression | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.696243 | 0.696220 |
| 38 | LogisticRegression | 1-3 | TfidfVectorizer | Lemmatization | 0.696236 | 0.696888 |
| 39 | BernoulliNB | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.696198 | 0.688902 |
| 40 | BernoulliNB | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.696198 | 0.688902 |
| 41 | LogisticRegression | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.695031 | 0.693549 |
| 42 | LogisticRegression | 1-3 | CountVectorizer | Stemming | 0.695031 | 0.694539 |
| 43 | MultinomialNB | 1-4 | TfidfVectorizer | Lemmatization | 0.694986 | 0.693768 |
| 44 | MultinomialNB | 1-2 | CountVectorizer | Lemmatization | 0.694978 | 0.694565 |
| 45 | BernoulliNB | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.694948 | 0.691402 |
| 46 | BernoulliNB | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.694948 | 0.691402 |
| 47 | BernoulliNB | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.693744 | 0.685854 |
| 48 | BernoulliNB | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.693744 | 0.685854 |
| 49 | LogisticRegression | 1-2 | CountVectorizer | Lemmatization | 0.692555 | 0.692309 |
| 50 | MultinomialNB | 1-3 | TfidfVectorizer | Lemmatization | 0.692502 | 0.691213 |
| 51 | BernoulliNB | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.691244 | 0.687588 |
| 52 | BernoulliNB | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.691244 | 0.687588 |
| 53 | LogisticRegression | 1-2 | TfidfVectorizer | Lemmatization | 0.690123 | 0.690726 |
| 54 | MultinomialNB | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.690033 | 0.689663 |
| 55 | MultinomialNB | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.690033 | 0.689153 |
| 56 | MultinomialNB | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.690025 | 0.689508 |
| 57 | LogisticRegression | 1-4 | CountVectorizer | Lemmatization | 0.688874 | 0.687200 |
| 58 | LogisticRegression | 1-1 | CountVectorizer | Lemmatization | 0.688874 | 0.688535 |
| 59 | SVC | 1-1 | TfidfVectorizer | Stemming | 0.688843 | 0.688842 |
| 60 | BernoulliNB | 1-1 | TfidfVectorizer | Lemmatization | 0.688836 | 0.684197 |
| 61 | BernoulliNB | 1-1 | CountVectorizer | Lemmatization | 0.688836 | 0.684197 |
| 62 | BernoulliNB | 1-2 | TfidfVectorizer | Stemming | 0.687601 | 0.679126 |
| 63 | BernoulliNB | 1-2 | CountVectorizer | Stemming | 0.687601 | 0.679126 |
| 64 | MultinomialNB | 1-1 | CountVectorizer | Stemming | 0.687601 | 0.686945 |
| 65 | SVC | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.687601 | 0.687399 |
| 66 | LogisticRegression | 1-4 | TfidfVectorizer | Lemmatization | 0.686405 | 0.688171 |
| 67 | SGDClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.686397 | 0.685892 |
| 68 | MultinomialNB | 1-3 | CountVectorizer | Lemmatization | 0.686374 | 0.686095 |
| 69 | SGDClassifier | 1-3 | CountVectorizer | Stemming | 0.686352 | 0.684874 |
| 70 | MultinomialNB | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.686344 | 0.685438 |
| 71 | MultinomialNB | 1-3 | CountVectorizer | Stemming | 0.686336 | 0.686420 |
| 72 | MultinomialNB | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.686329 | 0.686348 |
| 73 | MultinomialNB | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.686321 | 0.686361 |
| 74 | SGDClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.685178 | 0.685062 |
| 75 | MultinomialNB | 1-4 | CountVectorizer | Lemmatization | 0.685147 | 0.684912 |
| 76 | SGDClassifier | 1-2 | TfidfVectorizer | Stemming | 0.685147 | 0.685637 |
| 77 | SGDClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.685147 | 0.683860 |
| 78 | MultinomialNB | 1-1 | CountVectorizer | Lemmatization | 0.685147 | 0.683782 |
| 79 | MultinomialNB | 1-4 | CountVectorizer | Stemming | 0.685117 | 0.685249 |
| 80 | MultinomialNB | 1-2 | CountVectorizer | Stemming | 0.685117 | 0.684680 |
| 81 | MultinomialNB | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.685102 | 0.685140 |
| 82 | SGDClassifier | 1-4 | TfidfVectorizer | Lemmatization | 0.683920 | 0.682996 |
| 83 | MultinomialNB | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.683882 | 0.683948 |
| 84 | BernoulliNB | 1-1 | TfidfVectorizer | Stemming | 0.683875 | 0.679331 |
| 85 | BernoulliNB | 1-1 | CountVectorizer | Stemming | 0.683875 | 0.679331 |
| 86 | MLPClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.682618 | 0.672335 |
| 87 | MLPClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.681451 | 0.672908 |
| 88 | SGDClassifier | 1-2 | CountVectorizer | Stemming | 0.681413 | 0.680928 |
| 89 | SGDClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.680201 | 0.678323 |
| 90 | SGDClassifier | 1-3 | TfidfVectorizer | Lemmatization | 0.679050 | 0.678983 |
| 91 | SVC | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.679043 | 0.680490 |
| 92 | SGDClassifier | 1-3 | TfidfVectorizer | Stemming | 0.679005 | 0.678622 |
| 93 | SVC | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.678990 | 0.678947 |
| 94 | MLPClassifier | 1-2 | TfidfVectorizer | Stemming | 0.678974 | 0.672544 |
| 95 | SGDClassifier | 1-1 | CountVectorizer | Lemmatization | 0.678952 | 0.679910 |
| 96 | SVC | 1-2 | TfidfVectorizer | Stemming | 0.677831 | 0.679246 |
| 97 | SVC | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.677785 | 0.679182 |
| 98 | BernoulliNB | 1-2 | TfidfVectorizer | Lemmatization | 0.677785 | 0.665494 |
| 99 | BernoulliNB | 1-2 | CountVectorizer | Lemmatization | 0.677785 | 0.665494 |
| 100 | SGDClassifier | 1-2 | CountVectorizer | Lemmatization | 0.677755 | 0.677939 |
| 101 | SGDClassifier | 1-4 | TfidfVectorizer | Stemming | 0.677710 | 0.677934 |
| 102 | SVC | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.676574 | 0.678654 |
| 103 | SGDClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.676551 | 0.674837 |
| 104 | MLPClassifier | 1-4 | TfidfVectorizer | Lemmatization | 0.676528 | 0.666911 |
| 105 | SVC | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.675347 | 0.678088 |
| 106 | SVC | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.675331 | 0.673594 |
| 107 | SGDClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.675301 | 0.675834 |
| 108 | SGDClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.674120 | 0.674453 |
| 109 | SGDClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.674104 | 0.673841 |
| 110 | MLPClassifier | 1-3 | CountVectorizer | Lemmatization | 0.674036 | 0.660553 |
| 111 | MLPClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.674036 | 0.670796 |
| 112 | SVC | 1-3 | TfidfVectorizer | Stemming | 0.672923 | 0.675394 |
| 113 | SVC | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.672893 | 0.675342 |
| 114 | SVC | 1-2 | TfidfVectorizer | Lemmatization | 0.672862 | 0.674710 |
| 115 | SGDClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.672855 | 0.672979 |
| 116 | SGDClassifier | 1-3 | CountVectorizer | Lemmatization | 0.672840 | 0.671644 |
| 117 | MLPClassifier | 1-1 | CountVectorizer | Stemming | 0.671590 | 0.667057 |
| 118 | MLPClassifier | 1-3 | TfidfVectorizer | Lemmatization | 0.671582 | 0.663461 |
| 119 | SVC | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.670408 | 0.668763 |
| 120 | MLPClassifier | 1-4 | CountVectorizer | Stemming | 0.670393 | 0.659951 |
| 121 | MLPClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.670370 | 0.654267 |
| 122 | SVC | 1-4 | TfidfVectorizer | Stemming | 0.669219 | 0.672407 |
| 123 | SVC | 1-1 | TfidfVectorizer | Lemmatization | 0.669136 | 0.669227 |
| 124 | SGDClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.669121 | 0.668407 |
| 125 | SGDClassifier | 1-4 | CountVectorizer | Lemmatization | 0.669121 | 0.666736 |
| 126 | BernoulliNB | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.669106 | 0.651658 |
| 127 | BernoulliNB | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.669106 | 0.651658 |
| 128 | MLPClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.669090 | 0.662975 |
| 129 | SGDClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.667932 | 0.667876 |
| 130 | MLPClassifier | 1-2 | TfidfVectorizer | Lemmatization | 0.667901 | 0.667197 |
| 131 | SGDClassifier | 1-1 | CountVectorizer | Stemming | 0.667894 | 0.668166 |
| 132 | MLPClassifier | 1-4 | CountVectorizer | Lemmatization | 0.667886 | 0.657389 |
| 133 | BernoulliNB | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.667879 | 0.650373 |
| 134 | BernoulliNB | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.667879 | 0.650373 |
| 135 | SVC | 1-4 | TfidfVectorizer | Lemmatization | 0.666750 | 0.670018 |
| 136 | SGDClassifier | 1-1 | TfidfVectorizer | Stemming | 0.666674 | 0.665346 |
| 137 | MLPClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.666629 | 0.656941 |
| 138 | SVC | 1-3 | TfidfVectorizer | Lemmatization | 0.665523 | 0.668476 |
| 139 | SVC | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.665515 | 0.668652 |
| 140 | SVC | 1-2 | CountVectorizer | Stemming | 0.665493 | 0.663927 |
| 141 | SVC | 1-1 | CountVectorizer | Stemming | 0.665470 | 0.663715 |
| 142 | SVC | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.665447 | 0.663128 |
| 143 | SGDClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.665432 | 0.665978 |
| 144 | MLPClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.663016 | 0.649433 |
| 145 | MLPClassifier | 1-1 | TfidfVectorizer | Stemming | 0.663001 | 0.662548 |
| 146 | SGDClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.662993 | 0.663307 |
| 147 | BernoulliNB | 1-3 | TfidfVectorizer | Stemming | 0.662978 | 0.645411 |
| 148 | BernoulliNB | 1-3 | CountVectorizer | Stemming | 0.662978 | 0.645411 |
| 149 | MLPClassifier | 1-1 | CountVectorizer | Lemmatization | 0.662963 | 0.659125 |
| 150 | SGDClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.661789 | 0.661214 |
| 151 | MLPClassifier | 1-3 | TfidfVectorizer | Stemming | 0.661774 | 0.648419 |
| 152 | SVC | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.660562 | 0.658171 |
| 153 | MLPClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.660524 | 0.650278 |
| 154 | MLPClassifier | 1-2 | CountVectorizer | Stemming | 0.660524 | 0.648922 |
| 155 | SVC | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.660517 | 0.657608 |
| 156 | MLPClassifier | 1-2 | CountVectorizer | Lemmatization | 0.660509 | 0.651751 |
| 157 | SGDClassifier | 1-4 | CountVectorizer | Stemming | 0.659305 | 0.658471 |
| 158 | MLPClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.659259 | 0.656435 |
| 159 | SVC | 1-2 | CountVectorizer | Lemmatization | 0.658108 | 0.653910 |
| 160 | SGDClassifier | 1-2 | TfidfVectorizer | Lemmatization | 0.658100 | 0.657653 |
| 161 | BernoulliNB | 1-3 | TfidfVectorizer | Lemmatization | 0.658040 | 0.633872 |
| 162 | BernoulliNB | 1-3 | CountVectorizer | Lemmatization | 0.658040 | 0.633872 |
| 163 | MLPClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.656889 | 0.656835 |
| 164 | SVC | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.656873 | 0.654334 |
| 165 | SVC | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.656858 | 0.653856 |
| 166 | SGDClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.655624 | 0.655167 |
| 167 | MLPClassifier | 1-1 | TfidfVectorizer | Lemmatization | 0.654404 | 0.651453 |
| 168 | SGDClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.653147 | 0.653173 |
| 169 | MLPClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.651875 | 0.638700 |
| 170 | SVC | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.650723 | 0.647923 |
| 171 | SGDClassifier | 1-1 | TfidfVectorizer | Lemmatization | 0.650685 | 0.650192 |
| 172 | SVC | 1-1 | CountVectorizer | Lemmatization | 0.650670 | 0.647515 |
| 173 | MLPClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.650663 | 0.639066 |
| 174 | SVC | 1-3 | CountVectorizer | Stemming | 0.649496 | 0.646933 |
| 175 | MLPClassifier | 1-3 | CountVectorizer | Stemming | 0.649466 | 0.632150 |
| 176 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Stemming | 0.649443 | 0.645833 |
| 177 | SVC | 1-4 | CountVectorizer | Stemming | 0.648269 | 0.644714 |
| 178 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Stemming | 0.646967 | 0.643691 |
| 179 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.645777 | 0.641101 |
| 180 | MLPClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.645724 | 0.632180 |
| 181 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.643301 | 0.639378 |
| 182 | BernoulliNB | 1-4 | TfidfVectorizer | Lemmatization | 0.643286 | 0.610534 |
| 183 | BernoulliNB | 1-4 | CountVectorizer | Lemmatization | 0.643286 | 0.610534 |
| 184 | MLPClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.642081 | 0.622382 |
| 185 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.642059 | 0.637364 |
| 186 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.642051 | 0.638261 |
| 187 | KNeighborsClassifier | 1-4 | TfidfVectorizer | Lemmatization | 0.640854 | 0.635013 |
| 188 | BernoulliNB | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.640824 | 0.609184 |
| 189 | BernoulliNB | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.640824 | 0.609184 |
| 190 | MLPClassifier | 1-4 | TfidfVectorizer | Stemming | 0.639650 | 0.625863 |
| 191 | SVC | 1-3 | CountVectorizer | Lemmatization | 0.639643 | 0.634321 |
| 192 | BernoulliNB | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.639589 | 0.607328 |
| 193 | BernoulliNB | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.639589 | 0.607328 |
| 194 | RandomForestClassifier | 1-1 | CountVectorizer | Stemming | 0.639506 | 0.638426 |
| 195 | KNeighborsClassifier | 1-3 | TfidfVectorizer | Lemmatization | 0.638378 | 0.633003 |
| 196 | MLPClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.638370 | 0.640010 |
| 197 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Stemming | 0.638362 | 0.635770 |
| 198 | SVC | 1-4 | CountVectorizer | Lemmatization | 0.637189 | 0.632608 |
| 199 | RandomForestClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.637029 | 0.634713 |
| 200 | RandomForestClassifier | 1-4 | CountVectorizer | Stemming | 0.635787 | 0.634054 |
| 201 | MLPClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.634659 | 0.630069 |
| 202 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.633455 | 0.630463 |
| 203 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Lemmatization | 0.632250 | 0.628699 |
| 204 | KNeighborsClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.632205 | 0.629319 |
| 205 | RandomForestClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.632068 | 0.629595 |
| 206 | BernoulliNB | 1-4 | TfidfVectorizer | Stemming | 0.629766 | 0.596999 |
| 207 | BernoulliNB | 1-4 | CountVectorizer | Stemming | 0.629766 | 0.596999 |
| 208 | RandomForestClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.625949 | 0.624258 |
| 209 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Stemming | 0.624881 | 0.621494 |
| 210 | RandomForestClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.624729 | 0.622259 |
| 211 | RandomForestClassifier | 1-3 | CountVectorizer | Stemming | 0.624722 | 0.623276 |
| 212 | RandomForestClassifier | 1-1 | TfidfVectorizer | Stemming | 0.624707 | 0.623256 |
| 213 | RandomForestClassifier | 1-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.624691 | 0.623147 |
| 214 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Lemmatization followed by Stemming | 0.623654 | 0.617704 |
| 215 | RandomForestClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.623517 | 0.620837 |
| 216 | RandomForestClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.623502 | 0.621659 |
| 217 | RandomForestClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.621041 | 0.618886 |
| 218 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Stemming followed by Lemmatization | 0.619942 | 0.614267 |
| 219 | MultinomialNB | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.619920 | 0.615122 |
| 220 | RandomForestClassifier | 1-2 | CountVectorizer | Stemming | 0.619836 | 0.618366 |
| 221 | RandomForestClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.619814 | 0.618166 |
| 222 | RandomForestClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.619791 | 0.619491 |
| 223 | RandomForestClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.619761 | 0.616655 |
| 224 | SGDClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.618723 | 0.611613 |
| 225 | MultinomialNB | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.618685 | 0.614028 |
| 226 | SGDClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.617511 | 0.610679 |
| 227 | KNeighborsClassifier | 1-1 | TfidfVectorizer | Lemmatization | 0.617511 | 0.613523 |
| 228 | MultinomialNB | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.617458 | 0.612168 |
| 229 | MultinomialNB | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.617458 | 0.613154 |
| 230 | MultinomialNB | 2-3 | CountVectorizer | Stemming | 0.617451 | 0.612244 |
| 231 | MultinomialNB | 2-2 | TfidfVectorizer | Stemming | 0.617451 | 0.613065 |
| 232 | MultinomialNB | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.616224 | 0.611080 |
| 233 | MultinomialNB | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.616224 | 0.611655 |
| 234 | MultinomialNB | 2-4 | CountVectorizer | Stemming | 0.616216 | 0.611163 |
| 235 | MultinomialNB | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.616208 | 0.611115 |
| 236 | MultinomialNB | 2-2 | CountVectorizer | Stemming | 0.614974 | 0.609626 |
| 237 | MultinomialNB | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.614974 | 0.609600 |
| 238 | SGDClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.613823 | 0.607946 |
| 239 | MultinomialNB | 2-2 | CountVectorizer | Lemmatization | 0.612520 | 0.606357 |
| 240 | RandomForestClassifier | 1-2 | TfidfVectorizer | Stemming | 0.612421 | 0.611583 |
| 241 | MultinomialNB | 2-3 | CountVectorizer | Lemmatization | 0.611300 | 0.605243 |
| 242 | RandomForestClassifier | 1-3 | CountVectorizer | Lemmatization | 0.611217 | 0.608854 |
| 243 | MultinomialNB | 2-4 | CountVectorizer | Lemmatization | 0.610073 | 0.603956 |
| 244 | MultinomialNB | 2-2 | TfidfVectorizer | Lemmatization | 0.608846 | 0.603536 |
| 245 | SGDClassifier | 2-4 | CountVectorizer | Lemmatization | 0.606438 | 0.598725 |
| 246 | SGDClassifier | 2-4 | TfidfVectorizer | Stemming | 0.606423 | 0.599116 |
| 247 | MultinomialNB | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.606370 | 0.602087 |
| 248 | RandomForestClassifier | 1-4 | CountVectorizer | Lemmatization | 0.606286 | 0.605444 |
| 249 | LogisticRegression | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.605249 | 0.589279 |
| 250 | SGDClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.605241 | 0.599578 |
| 251 | SGDClassifier | 2-3 | TfidfVectorizer | Stemming | 0.605196 | 0.597116 |
| 252 | MultinomialNB | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.605158 | 0.599854 |
| 253 | SGDClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.605150 | 0.597768 |
| 254 | MultinomialNB | 2-3 | TfidfVectorizer | Stemming | 0.605135 | 0.600710 |
| 255 | RandomForestClassifier | 1-1 | TfidfVectorizer | Lemmatization | 0.605044 | 0.603765 |
| 256 | SGDClassifier | 2-3 | TfidfVectorizer | Lemmatization | 0.603976 | 0.593243 |
| 257 | MultinomialNB | 2-4 | TfidfVectorizer | Stemming | 0.603923 | 0.598421 |
| 258 | MultinomialNB | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.603908 | 0.599139 |
| 259 | MultinomialNB | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.602696 | 0.596829 |
| 260 | BernoulliNB | 2-2 | TfidfVectorizer | Lemmatization | 0.602674 | 0.572022 |
| 261 | BernoulliNB | 2-2 | CountVectorizer | Lemmatization | 0.602674 | 0.572022 |
| 262 | RandomForestClassifier | 1-3 | TfidfVectorizer | Stemming | 0.602605 | 0.598919 |
| 263 | SGDClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.601500 | 0.593802 |
| 264 | RandomForestClassifier | 1-2 | CountVectorizer | Lemmatization | 0.601348 | 0.601623 |
| 265 | SVC | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.600303 | 0.604803 |
| 266 | SVC | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.600303 | 0.604667 |
| 267 | SGDClassifier | 2-2 | TfidfVectorizer | Lemmatization | 0.600295 | 0.591821 |
| 268 | SGDClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.600265 | 0.594241 |
| 269 | RandomForestClassifier | 1-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.600174 | 0.598961 |
| 270 | RandomForestClassifier | 1-1 | CountVectorizer | Lemmatization | 0.600129 | 0.597647 |
| 271 | RandomForestClassifier | 1-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.600114 | 0.599811 |
| 272 | SVC | 2-2 | TfidfVectorizer | Stemming | 0.599068 | 0.603528 |
| 273 | LogisticRegression | 2-2 | TfidfVectorizer | Stemming | 0.599046 | 0.579365 |
| 274 | SGDClassifier | 2-3 | CountVectorizer | Lemmatization | 0.599023 | 0.590891 |
| 275 | RandomForestClassifier | 1-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.598909 | 0.596621 |
| 276 | RandomForestClassifier | 1-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.598879 | 0.597320 |
| 277 | LogisticRegression | 2-2 | TfidfVectorizer | Lemmatization | 0.597864 | 0.583955 |
| 278 | SGDClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.597834 | 0.588862 |
| 279 | MultinomialNB | 2-3 | TfidfVectorizer | Lemmatization | 0.597773 | 0.591422 |
| 280 | SGDClassifier | 2-4 | TfidfVectorizer | Lemmatization | 0.597773 | 0.588424 |
| 281 | SVC | 2-2 | TfidfVectorizer | Lemmatization | 0.596622 | 0.600384 |
| 282 | SGDClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.596592 | 0.587659 |
| 283 | MultinomialNB | 2-4 | TfidfVectorizer | Lemmatization | 0.596554 | 0.589543 |
| 284 | SGDClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.596516 | 0.588510 |
| 285 | RandomForestClassifier | 1-2 | TfidfVectorizer | Lemmatization | 0.596440 | 0.596737 |
| 286 | LogisticRegression | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.595380 | 0.576311 |
| 287 | RandomForestClassifier | 1-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.594017 | 0.591818 |
| 288 | SGDClassifier | 2-3 | CountVectorizer | Stemming | 0.592835 | 0.585185 |
| 289 | SGDClassifier | 2-2 | CountVectorizer | Lemmatization | 0.591676 | 0.585968 |
| 290 | SVC | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.590502 | 0.582662 |
| 291 | SVC | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.589275 | 0.581702 |
| 292 | SGDClassifier | 2-2 | TfidfVectorizer | Stemming | 0.589207 | 0.579727 |
| 293 | BernoulliNB | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.589177 | 0.557409 |
| 294 | BernoulliNB | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.589177 | 0.557409 |
| 295 | BernoulliNB | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.589169 | 0.557706 |
| 296 | BernoulliNB | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.589169 | 0.557706 |
| 297 | SGDClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.589131 | 0.581782 |
| 298 | SVC | 2-4 | CountVectorizer | Lemmatization | 0.588063 | 0.579826 |
| 299 | SVC | 2-4 | CountVectorizer | Stemming | 0.588056 | 0.580344 |
| 300 | LogisticRegression | 2-3 | TfidfVectorizer | Lemmatization | 0.588025 | 0.571285 |
| 301 | SGDClassifier | 2-4 | CountVectorizer | Stemming | 0.588003 | 0.579554 |
| 302 | BernoulliNB | 2-2 | TfidfVectorizer | Stemming | 0.587957 | 0.554861 |
| 303 | BernoulliNB | 2-2 | CountVectorizer | Stemming | 0.587957 | 0.554861 |
| 304 | SVC | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.586791 | 0.591953 |
| 305 | SVC | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.586791 | 0.591953 |
| 306 | SVC | 2-3 | TfidfVectorizer | Stemming | 0.586783 | 0.591943 |
| 307 | RandomForestClassifier | 1-4 | TfidfVectorizer | Stemming | 0.586602 | 0.583651 |
| 308 | LogisticRegression | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.585579 | 0.567813 |
| 309 | SGDClassifier | 2-2 | CountVectorizer | Stemming | 0.584299 | 0.578213 |
| 310 | LogisticRegression | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.583102 | 0.562379 |
| 311 | LogisticRegression | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.583095 | 0.564144 |
| 312 | MLPClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.582974 | 0.566679 |
| 313 | SVC | 2-3 | TfidfVectorizer | Lemmatization | 0.581860 | 0.586226 |
| 314 | SVC | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.580686 | 0.565540 |
| 315 | SVC | 2-3 | CountVectorizer | Stemming | 0.580679 | 0.567801 |
| 316 | SVC | 2-2 | CountVectorizer | Lemmatization | 0.580663 | 0.564020 |
| 317 | SVC | 2-3 | CountVectorizer | Lemmatization | 0.580663 | 0.565681 |
| 318 | LogisticRegression | 2-3 | TfidfVectorizer | Stemming | 0.580648 | 0.561172 |
| 319 | MLPClassifier | 2-2 | TfidfVectorizer | Stemming | 0.580580 | 0.562446 |
| 320 | SVC | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.579452 | 0.564104 |
| 321 | MLPClassifier | 2-2 | TfidfVectorizer | Lemmatization | 0.579346 | 0.556551 |
| 322 | RandomForestClassifier | 1-3 | TfidfVectorizer | Lemmatization | 0.579217 | 0.575956 |
| 323 | SVC | 2-2 | CountVectorizer | Stemming | 0.578225 | 0.562801 |
| 324 | LogisticRegression | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.578156 | 0.556945 |
| 325 | SVC | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.576990 | 0.563619 |
| 326 | SVC | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.576990 | 0.563641 |
| 327 | MLPClassifier | 2-3 | TfidfVectorizer | Lemmatization | 0.576922 | 0.554728 |
| 328 | LogisticRegression | 2-4 | TfidfVectorizer | Lemmatization | 0.575740 | 0.552999 |
| 329 | MLPClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.575672 | 0.555219 |
| 330 | SGDClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.575672 | 0.567314 |
| 331 | SVC | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.574468 | 0.580733 |
| 332 | BernoulliNB | 2-3 | TfidfVectorizer | Lemmatization | 0.574392 | 0.530573 |
| 333 | BernoulliNB | 2-3 | CountVectorizer | Lemmatization | 0.574392 | 0.530573 |
| 334 | SVC | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.573249 | 0.579724 |
| 335 | SVC | 2-4 | TfidfVectorizer | Stemming | 0.570779 | 0.577135 |
| 336 | BernoulliNB | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.569477 | 0.529332 |
| 337 | BernoulliNB | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.569477 | 0.529332 |
| 338 | BernoulliNB | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.569469 | 0.529227 |
| 339 | BernoulliNB | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.569469 | 0.529227 |
| 340 | SVC | 2-4 | TfidfVectorizer | Lemmatization | 0.568310 | 0.575167 |
| 341 | BernoulliNB | 2-3 | TfidfVectorizer | Stemming | 0.567023 | 0.526840 |
| 342 | BernoulliNB | 2-3 | CountVectorizer | Stemming | 0.567023 | 0.526840 |
| 343 | LogisticRegression | 2-4 | TfidfVectorizer | Stemming | 0.564637 | 0.537955 |
| 344 | MLPClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.564569 | 0.534318 |
| 345 | LogisticRegression | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.562183 | 0.536654 |
| 346 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Lemmatization | 0.562054 | 0.538572 |
| 347 | RandomForestClassifier | 1-4 | TfidfVectorizer | Lemmatization | 0.562039 | 0.559942 |
| 348 | LogisticRegression | 2-2 | CountVectorizer | Lemmatization | 0.560941 | 0.535625 |
| 349 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Lemmatization | 0.560857 | 0.542266 |
| 350 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Lemmatization | 0.560797 | 0.540111 |
| 351 | MLPClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.559653 | 0.524059 |
| 352 | MLPClassifier | 2-3 | TfidfVectorizer | Stemming | 0.559630 | 0.530694 |
| 353 | LogisticRegression | 2-2 | CountVectorizer | Stemming | 0.558494 | 0.532152 |
| 354 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.558381 | 0.538572 |
| 355 | LogisticRegression | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.556048 | 0.529016 |
| 356 | MLPClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.555957 | 0.526607 |
| 357 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.555927 | 0.535501 |
| 358 | MLPClassifier | 2-2 | CountVectorizer | Lemmatization | 0.554685 | 0.520166 |
| 359 | KNeighborsClassifier | 2-2 | TfidfVectorizer | Stemming | 0.553450 | 0.531729 |
| 360 | MLPClassifier | 2-4 | TfidfVectorizer | Lemmatization | 0.549845 | 0.517195 |
| 361 | MLPClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.549784 | 0.515174 |
| 362 | BernoulliNB | 2-4 | TfidfVectorizer | Lemmatization | 0.547353 | 0.490930 |
| 363 | BernoulliNB | 2-4 | CountVectorizer | Lemmatization | 0.547353 | 0.490930 |
| 364 | MLPClassifier | 2-4 | TfidfVectorizer | Stemming | 0.543619 | 0.508250 |
| 365 | MLPClassifier | 2-2 | CountVectorizer | Stemming | 0.542415 | 0.505190 |
| 366 | MLPClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.541165 | 0.503113 |
| 367 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Stemming | 0.538749 | 0.524171 |
| 368 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.538703 | 0.513230 |
| 369 | MLPClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.537469 | 0.490608 |
| 370 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.536264 | 0.523269 |
| 371 | KNeighborsClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.535037 | 0.520095 |
| 372 | MLPClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.534954 | 0.496925 |
| 373 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Stemming | 0.533788 | 0.505408 |
| 374 | KNeighborsClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.532561 | 0.505728 |
| 375 | MultinomialNB | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.528948 | 0.501625 |
| 376 | BernoulliNB | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.528918 | 0.476974 |
| 377 | BernoulliNB | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.528918 | 0.477786 |
| 378 | BernoulliNB | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.528918 | 0.476974 |
| 379 | BernoulliNB | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.528918 | 0.477786 |
| 380 | MLPClassifier | 2-3 | CountVectorizer | Stemming | 0.527645 | 0.485288 |
| 381 | SGDClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.526494 | 0.489160 |
| 382 | MultinomialNB | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.526486 | 0.498542 |
| 383 | MultinomialNB | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.525252 | 0.496672 |
| 384 | MLPClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.525153 | 0.483638 |
| 385 | SGDClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.524040 | 0.486195 |
| 386 | MultinomialNB | 3-3 | TfidfVectorizer | Stemming | 0.524017 | 0.494698 |
| 387 | MLPClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.523987 | 0.479163 |
| 388 | MultinomialNB | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.522790 | 0.493600 |
| 389 | BernoulliNB | 2-4 | TfidfVectorizer | Stemming | 0.522790 | 0.468960 |
| 390 | BernoulliNB | 2-4 | CountVectorizer | Stemming | 0.522790 | 0.468960 |
| 391 | MLPClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.522737 | 0.479689 |
| 392 | MLPClassifier | 2-4 | CountVectorizer | Stemming | 0.522722 | 0.477932 |
| 393 | MultinomialNB | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.521586 | 0.491804 |
| 394 | SGDClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.521563 | 0.483325 |
| 395 | MultinomialNB | 3-4 | TfidfVectorizer | Stemming | 0.521556 | 0.491626 |
| 396 | MultinomialNB | 3-3 | TfidfVectorizer | Lemmatization | 0.521556 | 0.494594 |
| 397 | SGDClassifier | 3-3 | TfidfVectorizer | Stemming | 0.521541 | 0.483682 |
| 398 | MultinomialNB | 3-4 | TfidfVectorizer | Lemmatization | 0.520321 | 0.493194 |
| 399 | MultinomialNB | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.519124 | 0.488507 |
| 400 | SGDClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.517897 | 0.477978 |
| 401 | MultinomialNB | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.517890 | 0.486738 |
| 402 | MultinomialNB | 3-3 | CountVectorizer | Stemming | 0.517882 | 0.486740 |
| 403 | MultinomialNB | 3-3 | CountVectorizer | Lemmatization | 0.517882 | 0.487405 |
| 404 | SGDClassifier | 3-4 | CountVectorizer | Stemming | 0.517844 | 0.479048 |
| 405 | MultinomialNB | 3-4 | CountVectorizer | Lemmatization | 0.516648 | 0.485826 |
| 406 | MLPClassifier | 2-3 | CountVectorizer | Lemmatization | 0.516580 | 0.472006 |
| 407 | LogisticRegression | 2-3 | CountVectorizer | Lemmatization | 0.515466 | 0.470361 |
| 408 | MultinomialNB | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.515428 | 0.483448 |
| 409 | LogisticRegression | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.515428 | 0.471807 |
| 410 | MultinomialNB | 3-4 | CountVectorizer | Stemming | 0.515421 | 0.483433 |
| 411 | SGDClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.515413 | 0.490225 |
| 412 | SGDClassifier | 3-4 | TfidfVectorizer | Stemming | 0.514209 | 0.483533 |
| 413 | LogisticRegression | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.513012 | 0.466500 |
| 414 | LogisticRegression | 2-3 | CountVectorizer | Stemming | 0.511762 | 0.465469 |
| 415 | SGDClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.510475 | 0.468235 |
| 416 | RandomForestClassifier | 2-4 | CountVectorizer | Lemmatization | 0.510399 | 0.486803 |
| 417 | MLPClassifier | 2-4 | CountVectorizer | Lemmatization | 0.509202 | 0.462466 |
| 418 | LogisticRegression | 2-4 | CountVectorizer | Stemming | 0.508089 | 0.456486 |
| 419 | SGDClassifier | 3-4 | TfidfVectorizer | Lemmatization | 0.508028 | 0.478644 |
| 420 | RandomForestClassifier | 2-3 | CountVectorizer | Lemmatization | 0.507953 | 0.483021 |
| 421 | LogisticRegression | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.505620 | 0.451998 |
| 422 | LogisticRegression | 2-4 | CountVectorizer | Lemmatization | 0.505574 | 0.449686 |
| 423 | SGDClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.504385 | 0.467970 |
| 424 | SGDClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.504340 | 0.461290 |
| 425 | LogisticRegression | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.503151 | 0.448798 |
| 426 | SGDClassifier | 3-3 | CountVectorizer | Stemming | 0.501901 | 0.464877 |
| 427 | LogisticRegression | 3-3 | TfidfVectorizer | Stemming | 0.500674 | 0.459258 |
| 428 | SGDClassifier | 3-3 | TfidfVectorizer | Lemmatization | 0.499447 | 0.465094 |
| 429 | MLPClassifier | 3-3 | TfidfVectorizer | Lemmatization | 0.498182 | 0.459053 |
| 430 | RandomForestClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.496887 | 0.477366 |
| 431 | LogisticRegression | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.495759 | 0.448354 |
| 432 | RandomForestClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.495653 | 0.479714 |
| 433 | LogisticRegression | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.494539 | 0.444397 |
| 434 | LogisticRegression | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.493305 | 0.443897 |
| 435 | MLPClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.493244 | 0.447583 |
| 436 | RandomForestClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.493229 | 0.474012 |
| 437 | LogisticRegression | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.492070 | 0.443689 |
| 438 | MLPClassifier | 3-4 | TfidfVectorizer | Lemmatization | 0.492040 | 0.448634 |
| 439 | MLPClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.492017 | 0.448383 |
| 440 | RandomForestClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.491949 | 0.472761 |
| 441 | LogisticRegression | 3-4 | TfidfVectorizer | Stemming | 0.490835 | 0.442283 |
| 442 | SGDClassifier | 3-4 | CountVectorizer | Lemmatization | 0.490820 | 0.465343 |
| 443 | RandomForestClassifier | 2-2 | CountVectorizer | Lemmatization | 0.490767 | 0.471712 |
| 444 | SGDClassifier | 3-3 | CountVectorizer | Lemmatization | 0.489616 | 0.468039 |
| 445 | BernoulliNB | 3-3 | TfidfVectorizer | Lemmatization | 0.488260 | 0.431982 |
| 446 | BernoulliNB | 3-3 | CountVectorizer | Lemmatization | 0.488260 | 0.431982 |
| 447 | RandomForestClassifier | 2-4 | CountVectorizer | Stemming | 0.488253 | 0.470171 |
| 448 | MLPClassifier | 3-4 | TfidfVectorizer | Stemming | 0.487101 | 0.437546 |
| 449 | RandomForestClassifier | 2-3 | CountVectorizer | Stemming | 0.487071 | 0.466809 |
| 450 | SVC | 3-3 | TfidfVectorizer | Stemming | 0.485905 | 0.468795 |
| 451 | SVC | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.485905 | 0.468633 |
| 452 | SVC | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.485905 | 0.468633 |
| 453 | SVC | 3-3 | TfidfVectorizer | Lemmatization | 0.484685 | 0.467865 |
| 454 | MLPClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.484640 | 0.432360 |
| 455 | RandomForestClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.484579 | 0.467164 |
| 456 | SVC | 3-4 | TfidfVectorizer | Stemming | 0.483436 | 0.460182 |
| 457 | SVC | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.483436 | 0.460271 |
| 458 | MLPClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.483413 | 0.429362 |
| 459 | MLPClassifier | 3-4 | CountVectorizer | Lemmatization | 0.483413 | 0.420797 |
| 460 | BernoulliNB | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.483367 | 0.426811 |
| 461 | BernoulliNB | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.483367 | 0.426811 |
| 462 | SVC | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.482209 | 0.458665 |
| 463 | LogisticRegression | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.482209 | 0.423927 |
| 464 | MLPClassifier | 3-3 | TfidfVectorizer | Stemming | 0.480974 | 0.435495 |
| 465 | LogisticRegression | 3-3 | CountVectorizer | Stemming | 0.480974 | 0.423187 |
| 466 | BernoulliNB | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.480898 | 0.425394 |
| 467 | BernoulliNB | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.480898 | 0.425394 |
| 468 | BernoulliNB | 3-3 | TfidfVectorizer | Stemming | 0.479671 | 0.421545 |
| 469 | BernoulliNB | 3-3 | CountVectorizer | Stemming | 0.479671 | 0.421545 |
| 470 | RandomForestClassifier | 2-2 | CountVectorizer | Stemming | 0.479671 | 0.462733 |
| 471 | RandomForestClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.479649 | 0.461521 |
| 472 | SVC | 3-4 | TfidfVectorizer | Lemmatization | 0.478528 | 0.456669 |
| 473 | RandomForestClassifier | 2-2 | TfidfVectorizer | Lemmatization | 0.478528 | 0.460646 |
| 474 | RandomForestClassifier | 2-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.478482 | 0.462577 |
| 475 | LogisticRegression | 3-3 | TfidfVectorizer | Lemmatization | 0.477278 | 0.433750 |
| 476 | RandomForestClassifier | 2-3 | TfidfVectorizer | Lemmatization | 0.476089 | 0.456456 |
| 477 | RandomForestClassifier | 2-4 | TfidfVectorizer | Lemmatization | 0.476074 | 0.456343 |
| 478 | LogisticRegression | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.476043 | 0.415298 |
| 479 | RandomForestClassifier | 2-2 | TfidfVectorizer | Stemming followed by Lemmatization | 0.474816 | 0.458309 |
| 480 | MLPClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.473597 | 0.415794 |
| 481 | SVC | 3-3 | CountVectorizer | Stemming | 0.473589 | 0.440410 |
| 482 | SVC | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.473589 | 0.440410 |
| 483 | SVC | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.473589 | 0.440410 |
| 484 | SVC | 3-3 | CountVectorizer | Lemmatization | 0.472377 | 0.442538 |
| 485 | LogisticRegression | 3-4 | CountVectorizer | Stemming | 0.472347 | 0.406458 |
| 486 | LogisticRegression | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.472347 | 0.407205 |
| 487 | LogisticRegression | 3-4 | CountVectorizer | Lemmatization | 0.472332 | 0.407431 |
| 488 | LogisticRegression | 3-3 | CountVectorizer | Lemmatization | 0.472309 | 0.414033 |
| 489 | RandomForestClassifier | 2-2 | TfidfVectorizer | Lemmatization followed by Stemming | 0.471143 | 0.451864 |
| 490 | RandomForestClassifier | 2-3 | TfidfVectorizer | Stemming | 0.471120 | 0.455190 |
| 491 | RandomForestClassifier | 2-4 | TfidfVectorizer | Stemming | 0.471082 | 0.456540 |
| 492 | MLPClassifier | 3-3 | CountVectorizer | Lemmatization | 0.469870 | 0.416409 |
| 493 | RandomForestClassifier | 2-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.468674 | 0.449838 |
| 494 | LogisticRegression | 3-4 | TfidfVectorizer | Lemmatization | 0.468666 | 0.418748 |
| 495 | LogisticRegression | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.468651 | 0.400329 |
| 496 | MLPClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.468651 | 0.402845 |
| 497 | SVC | 4-4 | TfidfVectorizer | Lemmatization | 0.468621 | 0.423581 |
| 498 | RandomForestClassifier | 2-2 | TfidfVectorizer | Stemming | 0.467432 | 0.455175 |
| 499 | SVC | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.467409 | 0.427025 |
| 500 | SVC | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.467394 | 0.420755 |
| 501 | BernoulliNB | 3-4 | TfidfVectorizer | Lemmatization | 0.467371 | 0.397998 |
| 502 | BernoulliNB | 3-4 | CountVectorizer | Lemmatization | 0.467371 | 0.397998 |
| 503 | MLPClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.466205 | 0.400126 |
| 504 | MLPClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.466197 | 0.403595 |
| 505 | RandomForestClassifier | 2-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.466182 | 0.453970 |
| 506 | SVC | 3-4 | CountVectorizer | Stemming | 0.466174 | 0.426050 |
| 507 | SVC | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.466174 | 0.426050 |
| 508 | SVC | 4-4 | TfidfVectorizer | Stemming | 0.466159 | 0.419844 |
| 509 | SVC | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.466159 | 0.419844 |
| 510 | SVC | 3-4 | CountVectorizer | Lemmatization | 0.463743 | 0.427894 |
| 511 | MLPClassifier | 3-3 | CountVectorizer | Stemming | 0.463720 | 0.397860 |
| 512 | MLPClassifier | 3-4 | CountVectorizer | Stemming | 0.461282 | 0.394335 |
| 513 | RandomForestClassifier | 2-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.460085 | 0.438978 |
| 514 | SVC | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.456328 | 0.404777 |
| 515 | SVC | 4-4 | CountVectorizer | Lemmatization | 0.456328 | 0.405836 |
| 516 | SVC | 4-4 | CountVectorizer | Stemming | 0.455094 | 0.403871 |
| 517 | SVC | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.455094 | 0.403871 |
| 518 | KNeighborsClassifier | 1-1 | CountVectorizer | Stemming | 0.452587 | 0.396169 |
| 519 | BernoulliNB | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.450193 | 0.379335 |
| 520 | BernoulliNB | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.450193 | 0.379335 |
| 521 | BernoulliNB | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.450193 | 0.379335 |
| 522 | BernoulliNB | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.450193 | 0.379335 |
| 523 | KNeighborsClassifier | 1-1 | CountVectorizer | Stemming followed by Lemmatization | 0.448936 | 0.387809 |
| 524 | KNeighborsClassifier | 1-1 | CountVectorizer | Lemmatization followed by Stemming | 0.448913 | 0.388704 |
| 525 | SGDClassifier | 4-4 | TfidfVectorizer | Lemmatization | 0.442861 | 0.386239 |
| 526 | KNeighborsClassifier | 1-1 | CountVectorizer | Lemmatization | 0.442748 | 0.381006 |
| 527 | MultinomialNB | 4-4 | CountVectorizer | Stemming | 0.440377 | 0.368884 |
| 528 | MultinomialNB | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.440377 | 0.368884 |
| 529 | MultinomialNB | 4-4 | CountVectorizer | Lemmatization | 0.440377 | 0.369094 |
| 530 | MultinomialNB | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.440377 | 0.368884 |
| 531 | RandomForestClassifier | 3-3 | CountVectorizer | Stemming | 0.440309 | 0.386217 |
| 532 | MultinomialNB | 4-4 | TfidfVectorizer | Stemming | 0.439150 | 0.367580 |
| 533 | MultinomialNB | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.439150 | 0.367580 |
| 534 | MultinomialNB | 4-4 | TfidfVectorizer | Lemmatization | 0.439150 | 0.367902 |
| 535 | MultinomialNB | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.439150 | 0.367580 |
| 536 | BernoulliNB | 3-4 | TfidfVectorizer | Stemming | 0.439150 | 0.364536 |
| 537 | BernoulliNB | 3-4 | CountVectorizer | Stemming | 0.439150 | 0.364536 |
| 538 | SGDClassifier | 4-4 | TfidfVectorizer | Stemming | 0.439135 | 0.379574 |
| 539 | RandomForestClassifier | 3-4 | CountVectorizer | Stemming | 0.439090 | 0.385746 |
| 540 | RandomForestClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.439082 | 0.385441 |
| 541 | RandomForestClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.437855 | 0.383294 |
| 542 | RandomForestClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.437855 | 0.384492 |
| 543 | MLPClassifier | 4-4 | TfidfVectorizer | Lemmatization | 0.436658 | 0.368389 |
| 544 | RandomForestClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.436628 | 0.383207 |
| 545 | SGDClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.435462 | 0.378277 |
| 546 | SGDClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.435454 | 0.378149 |
| 547 | SGDClassifier | 4-4 | CountVectorizer | Stemming | 0.434235 | 0.378413 |
| 548 | SGDClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.434235 | 0.377017 |
| 549 | RandomForestClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.432909 | 0.361679 |
| 550 | RandomForestClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.432909 | 0.361679 |
| 551 | SGDClassifier | 4-4 | CountVectorizer | Lemmatization | 0.431750 | 0.376277 |
| 552 | RandomForestClassifier | 4-4 | CountVectorizer | Stemming | 0.431682 | 0.359886 |
| 553 | MLPClassifier | 4-4 | TfidfVectorizer | Stemming | 0.430501 | 0.357968 |
| 554 | MLPClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.430493 | 0.358253 |
| 555 | RandomForestClassifier | 3-3 | CountVectorizer | Lemmatization | 0.430463 | 0.375810 |
| 556 | RandomForestClassifier | 4-4 | CountVectorizer | Lemmatization | 0.430455 | 0.359038 |
| 557 | SGDClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.429312 | 0.370714 |
| 558 | MLPClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.429304 | 0.362644 |
| 559 | MLPClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.429289 | 0.360715 |
| 560 | MLPClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.429266 | 0.355022 |
| 561 | RandomForestClassifier | 3-4 | CountVectorizer | Lemmatization | 0.429251 | 0.373963 |
| 562 | RandomForestClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.429236 | 0.376430 |
| 563 | RandomForestClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.427978 | 0.353890 |
| 564 | RandomForestClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.427978 | 0.353890 |
| 565 | LogisticRegression | 4-4 | CountVectorizer | Stemming | 0.426865 | 0.356421 |
| 566 | LogisticRegression | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.426865 | 0.355901 |
| 567 | LogisticRegression | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.426865 | 0.357747 |
| 568 | MLPClassifier | 4-4 | CountVectorizer | Lemmatization | 0.426805 | 0.356064 |
| 569 | RandomForestClassifier | 3-4 | TfidfVectorizer | Stemming | 0.426782 | 0.371655 |
| 570 | RandomForestClassifier | 4-4 | TfidfVectorizer | Stemming | 0.426751 | 0.352051 |
| 571 | LogisticRegression | 4-4 | TfidfVectorizer | Stemming | 0.425653 | 0.362501 |
| 572 | LogisticRegression | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.425653 | 0.362501 |
| 573 | RandomForestClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.425562 | 0.369391 |
| 574 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.424388 | 0.316641 |
| 575 | BernoulliNB | 4-4 | TfidfVectorizer | Lemmatization | 0.424343 | 0.339872 |
| 576 | BernoulliNB | 4-4 | CountVectorizer | Lemmatization | 0.424343 | 0.339872 |
| 577 | RandomForestClassifier | 3-3 | TfidfVectorizer | Stemming | 0.424328 | 0.367774 |
| 578 | RandomForestClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.424320 | 0.368291 |
| 579 | RandomForestClassifier | 3-3 | TfidfVectorizer | Lemmatization followed by Stemming | 0.424320 | 0.369708 |
| 580 | RandomForestClassifier | 4-4 | TfidfVectorizer | Lemmatization | 0.424298 | 0.348935 |
| 581 | RandomForestClassifier | 3-4 | TfidfVectorizer | Lemmatization | 0.423116 | 0.367608 |
| 582 | LogisticRegression | 4-4 | TfidfVectorizer | Lemmatization | 0.421950 | 0.356471 |
| 583 | LogisticRegression | 4-4 | CountVectorizer | Lemmatization | 0.421942 | 0.351133 |
| 584 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Stemming followed by Lemmatization | 0.421927 | 0.314762 |
| 585 | KNeighborsClassifier | 1-2 | CountVectorizer | Lemmatization | 0.421881 | 0.337400 |
| 586 | LogisticRegression | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.420715 | 0.355624 |
| 587 | MLPClassifier | 4-4 | CountVectorizer | Stemming | 0.420670 | 0.348131 |
| 588 | KNeighborsClassifier | 1-2 | CountVectorizer | Stemming | 0.420624 | 0.346825 |
| 589 | KNeighborsClassifier | 2-2 | CountVectorizer | Lemmatization followed by Stemming | 0.420526 | 0.322145 |
| 590 | KNeighborsClassifier | 2-2 | CountVectorizer | Stemming followed by Lemmatization | 0.419291 | 0.320931 |
| 591 | RandomForestClassifier | 3-3 | TfidfVectorizer | Lemmatization | 0.418193 | 0.363923 |
| 592 | BernoulliNB | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.414527 | 0.327367 |
| 593 | BernoulliNB | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.414527 | 0.327367 |
| 594 | KNeighborsClassifier | 2-2 | CountVectorizer | Stemming | 0.414398 | 0.316298 |
| 595 | BernoulliNB | 4-4 | TfidfVectorizer | Stemming | 0.413300 | 0.324380 |
| 596 | BernoulliNB | 4-4 | CountVectorizer | Stemming | 0.413300 | 0.324380 |
| 597 | BernoulliNB | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.413292 | 0.324266 |
| 598 | BernoulliNB | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.413292 | 0.324266 |
| 599 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Stemming | 0.412103 | 0.295376 |
| 600 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Stemming | 0.410899 | 0.297958 |
| 601 | KNeighborsClassifier | 1-2 | CountVectorizer | Lemmatization followed by Stemming | 0.410778 | 0.331563 |
| 602 | KNeighborsClassifier | 1-3 | CountVectorizer | Stemming | 0.408286 | 0.310533 |
| 603 | KNeighborsClassifier | 1-3 | CountVectorizer | Stemming followed by Lemmatization | 0.405809 | 0.309056 |
| 604 | KNeighborsClassifier | 1-4 | CountVectorizer | Lemmatization | 0.404628 | 0.315769 |
| 605 | KNeighborsClassifier | 1-4 | CountVectorizer | Stemming | 0.399674 | 0.292591 |
| 606 | KNeighborsClassifier | 1-3 | CountVectorizer | Lemmatization followed by Stemming | 0.399674 | 0.303437 |
| 607 | KNeighborsClassifier | 1-2 | CountVectorizer | Stemming followed by Lemmatization | 0.398485 | 0.320384 |
| 608 | KNeighborsClassifier | 1-3 | CountVectorizer | Lemmatization | 0.394812 | 0.306714 |
| 609 | KNeighborsClassifier | 3-3 | TfidfVectorizer | Lemmatization | 0.392290 | 0.287102 |
| 610 | KNeighborsClassifier | 1-4 | CountVectorizer | Lemmatization followed by Stemming | 0.391108 | 0.288735 |
| 611 | KNeighborsClassifier | 1-4 | CountVectorizer | Stemming followed by Lemmatization | 0.391101 | 0.288466 |
| 612 | KNeighborsClassifier | 2-2 | CountVectorizer | Lemmatization | 0.389866 | 0.301007 |
| 613 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.388662 | 0.271840 |
| 614 | KNeighborsClassifier | 2-3 | CountVectorizer | Stemming followed by Lemmatization | 0.388624 | 0.269710 |
| 615 | KNeighborsClassifier | 2-3 | CountVectorizer | Lemmatization | 0.388601 | 0.287018 |
| 616 | KNeighborsClassifier | 4-4 | CountVectorizer | Stemming | 0.387427 | 0.269826 |
| 617 | KNeighborsClassifier | 2-4 | CountVectorizer | Stemming | 0.387404 | 0.272352 |
| 618 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.384966 | 0.261216 |
| 619 | KNeighborsClassifier | 3-4 | TfidfVectorizer | Lemmatization | 0.384935 | 0.282876 |
| 620 | KNeighborsClassifier | 4-4 | TfidfVectorizer | Stemming | 0.383746 | 0.269135 |
| 621 | KNeighborsClassifier | 4-4 | TfidfVectorizer | Lemmatization followed by Stemming | 0.383739 | 0.268922 |
| 622 | KNeighborsClassifier | 2-4 | CountVectorizer | Stemming followed by Lemmatization | 0.382481 | 0.261903 |
| 623 | KNeighborsClassifier | 3-4 | CountVectorizer | Lemmatization | 0.381239 | 0.259277 |
| 624 | KNeighborsClassifier | 2-4 | CountVectorizer | Lemmatization | 0.378853 | 0.289551 |
| 625 | KNeighborsClassifier | 2-3 | CountVectorizer | Lemmatization followed by Stemming | 0.378815 | 0.261691 |
| 626 | KNeighborsClassifier | 2-3 | CountVectorizer | Stemming | 0.378808 | 0.259352 |
| 627 | KNeighborsClassifier | 3-3 | CountVectorizer | Lemmatization | 0.378800 | 0.267017 |
| 628 | KNeighborsClassifier | 4-4 | CountVectorizer | Lemmatization followed by Stemming | 0.375142 | 0.249435 |
| 629 | KNeighborsClassifier | 4-4 | CountVectorizer | Stemming followed by Lemmatization | 0.373907 | 0.249540 |
| 630 | KNeighborsClassifier | 4-4 | TfidfVectorizer | Stemming followed by Lemmatization | 0.372673 | 0.260511 |
| 631 | KNeighborsClassifier | 2-4 | CountVectorizer | Lemmatization followed by Stemming | 0.372665 | 0.246645 |
| 632 | KNeighborsClassifier | 4-4 | TfidfVectorizer | Lemmatization | 0.371469 | 0.253461 |
| 633 | KNeighborsClassifier | 4-4 | CountVectorizer | Lemmatization | 0.369030 | 0.243327 |
| 634 | KNeighborsClassifier | 3-3 | CountVectorizer | Stemming | 0.366538 | 0.232923 |
| 635 | KNeighborsClassifier | 3-4 | CountVectorizer | Stemming | 0.361615 | 0.226739 |
| 636 | KNeighborsClassifier | 3-3 | CountVectorizer | Stemming followed by Lemmatization | 0.361607 | 0.226102 |
| 637 | KNeighborsClassifier | 3-4 | CountVectorizer | Lemmatization followed by Stemming | 0.360380 | 0.221765 |
| 638 | KNeighborsClassifier | 3-3 | CountVectorizer | Lemmatization followed by Stemming | 0.360380 | 0.225445 |
| 639 | KNeighborsClassifier | 3-4 | CountVectorizer | Stemming followed by Lemmatization | 0.360373 | 0.220281 |
df_balanced_results = pd.read_json('resultsDataFrameBalanced.json')
df_unbalanced_results = pd.read_json('resultsDataFrameUnbalanced.json')
# plot the results
def plot_accuracy(df, title):
plt.figure(figsize=(20, 10))
# make a bar chart using plt
sns.barplot(x="Algorithim", y="Accuracy", data=df)
plt.title(title)
plt.show()
plot_accuracy(df_balanced_results,
"Accuracy of the best model on balanced dataset")
plot_accuracy(df_unbalanced_results,
"Accuracy of the best model on unbalanced dataset")
def plot_f1_score(df, title):
plt.figure(figsize=(20, 10))
sns.barplot(x="Algorithim", y="F1-Score", data=df)
plt.title(title)
plt.show()
plot_f1_score(df_balanced_results,
"F1-Score of the best model on balanced dataset")
plot_f1_score(df_unbalanced_results,
"F1-Score of the best model on unbalanced dataset")
plt.Figure(figsize=(20, 10))
sns.catplot(x="Algorithim", y="F1-Score",
data=df_balanced_results, kind="point", label='Balanced', size=5, aspect=4)
plt.title("Accuracy of the best model on balanced dataset")
plt.show()
sns.catplot(x="Algorithim", y="F1-Score",
data=df_unbalanced_results, kind="point", label='Unbalanced', size=5, aspect=4)
plt.title("Accuracy of the best model on unbalanced dataset")
plt.show()
r = sns.kdeplot(df_balanced_results["Accuracy"], shade=True, label='Balanced', color='r')
b = sns.kdeplot(df_unbalanced_results["Accuracy"], shade=True, label='Unbalanced', color='b')
r.figure.set_size_inches(20, 10)
plt.title("Accuracy of the best model on both the datasets")
plt.legend()
plt.show()
r = sns.kdeplot(df_balanced_results["F1-Score"],
shade=True, label='Balanced', color='r')
b = sns.kdeplot(df_unbalanced_results["F1-Score"],
shade=True, label='Unbalanced', color='b')
r.figure.set_size_inches(20, 10)
plt.title("F1-Score of the best model on both the datasets")
plt.legend()
plt.show()
g = sns.violinplot(x="Algorithim", y="Accuracy", data=df_balanced_results)
g.set_xticklabels(g.get_xticklabels(), rotation=45)
g.figure.set_size_inches(20, 10)
plt.title("Violin plot for the balanced dataset")
plt.show()
g = sns.violinplot(x="Algorithim", y="F1-Score", data=df_unbalanced_results)
g.set_xticklabels(g.get_xticklabels(), rotation=45)
g.figure.set_size_inches(20, 10)
plt.title("Violin plot for the unbalanced dataset")
plt.show()
s = sns.displot(x="Algorithim", y="Accuracy", data=df_balanced_results)
s.figure.set_size_inches(15, 15)
plt.title("Displot for the balanced dataset (Accuracy)")
plt.show()
s = sns.displot(x="Algorithim", y="F1-Score", data=df_balanced_results)
s.figure.set_size_inches(15, 15)
plt.title("Displot for the balanced dataset (F1-Score)")
plt.show()
s = sns.displot(x="Algorithim", y="Accuracy", data=df_unbalanced_results)
s.figure.set_size_inches(15, 15)
plt.title("Displot for the unbalanced dataset (Accuracy)")
s = sns.displot(x="Algorithim", y="F1-Score", data=df_unbalanced_results)
s.figure.set_size_inches(15, 15)
plt.title("Displot for the unbalanced dataset")
plt.show()
For model evaluation, we would be generating a confusion matrix to find out the number of True Positives, True Negatives, False Positives and False Negatives. From this we will calculate Recall score, Precision score and F1 score which is the most important evaluation metric in an unbalanced data set. The F1 for the stratified version of training we will be using F1 score with macro average due to the skewed nature of our corpus and each sample being equally important while for the variation with equal number of samples per class we will use micro average as our corpus is no longer unbalanced. Accuracy is also an important metric for our second variation since the corpus is now balanced and there will be no inherrent biases while training the model.
The best performing model will be the model with the overall best accuracy and F1 score, and the preprocessing steps and hyperparameters for that model would verify or nullify our hypotheses regarding representation and normalisation. These steps and hyperparameter optimisation will gaurantee the most optimal model for our corpus given its heavily positively skewed nature.
printmd("---"*10+ "Evaluation for Un-balanced Dataset" + "---"*10)
printmd("## Model with the best accuracy on the unbalanced data set is: " + highest_accuracy_model["model"]["machineLearingAlgo"] +
f'\n\t - with Accuracy = {highest_accuracy_model_BalancedDataSet["score"]}'+
"\n\t - using" + highest_accuracy_model["model"]["options"] + " for tokenization" +
"\n\t - with " + highest_accuracy_model["model"]["vectorizer"] + " as a vectorizer taking " +
f'{highest_accuracy_model["model"]["minNrange"]}-{highest_accuracy_model["model"]["maxNrange"]} words as a feature for vectorization' +
"\n\t - without stratification on an unbalanced dataset")
printmd("## Model with the best f1-score on the unbalanced data set is: " + highest_f1_score_model["model"]["machineLearingAlgo"] +
f'\n\t - with F1 score = {highest_accuracy_model_BalancedDataSet["score"]}'+
"\n\t - using" + highest_f1_score_model["model"]["options"] + " for tokenization" +
"\n\t - with " + highest_f1_score_model["model"]["vectorizer"] + " as a vectorizer taking " +
f'{highest_f1_score_model["model"]["minNrange"]}-{highest_f1_score_model["model"]["maxNrange"]} words as a feature for vectorization' +
"\n\t - without stratification on an unbalanced dataset")
printmd("---"*10+ "Evaluation for Balanced Dataset" + "---"*10)
printmd("## Model with the best accuracy on the startified balanced data set is: " + highest_accuracy_model_BalancedDataSet["model"]["machineLearingAlgo"] +
f'\n\t - with Accuracy = {highest_accuracy_model_BalancedDataSet["score"]}'+
"\n\t - using " + highest_accuracy_model_BalancedDataSet["model"]["options"] + " for tokenization" +
"\n\t - with " + highest_accuracy_model_BalancedDataSet["model"]["vectorizer"] + " as a vectorizer taking " +
f'{highest_accuracy_model_BalancedDataSet["model"]["minNrange"]}-{highest_accuracy_model_BalancedDataSet["model"]["maxNrange"]} words as a feature for vectorization' +
"\n\t - with stratification on an balanced dataset")
printmd("## Model with the best f1-score on the startified balanced data set is: " + highest_f1_score_model_BalancedDataSet["model"]["machineLearingAlgo"] +
f'\n\t - with F1 score = {highest_accuracy_model_BalancedDataSet["score"]}'+
"\n\t - using " + highest_f1_score_model_BalancedDataSet["model"]["options"] + " for tokenization" +
"\n\t - with " + highest_f1_score_model_BalancedDataSet["model"]["vectorizer"] + " as a vectorizer taking " +
f'{highest_f1_score_model_BalancedDataSet["model"]["minNrange"]}-{highest_f1_score_model_BalancedDataSet["model"]["maxNrange"]} words as a feature for vectorization' +
"\n\t - with stratification on an balanced dataset")
------------------------------Evaluation for Un-balanced Dataset------------------------------
- with Accuracy = 0.7159054760281753
- usingStemming followed by Lemmatization for tokenization
- with TfidfVectorizer as a vectorizer taking 1-3 words as a feature for vectorization
- without stratification on an unbalanced dataset
- with F1 score = 0.7159054760281753
- usingLemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-1 words as a feature for vectorization
- without stratification on an unbalanced dataset
------------------------------Evaluation for Balanced Dataset------------------------------
- with Accuracy = 0.7159054760281753
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-1 words as a feature for vectorization
- with stratification on an balanced dataset
- with F1 score = 0.7159054760281753
- using Lemmatization followed by Stemming for tokenization
- with TfidfVectorizer as a vectorizer taking 1-1 words as a feature for vectorization
- with stratification on an balanced dataset
For our Deep Learning pipeline, we will be using a Recurrent Neural Network (RNN) known as Long Short-Term Memory (LSTM). The biggest factor in using LSTM is that it does not use a bag of word representation or TF-IDF, instead it remembers the order of words in a tweet during vectorisation. The first step in the pipeline is the same as our previous models where we first Normalise our tweets and Lemmatise them. Then we pass the normalised tweets to our LSTM model where it first tokenises the tweet using keras.preprocessing and then in the vectorisation stage, we use a pretrained model called Glove trained with 60 billion parameters with 50 dimensions (between 1 to 50 character words). We use Glove to assign a value to each token and represent each sentence as a vector. We kept a maximum limit of 50 words as twitter has a limit of 140 characters per tweet hence it is impossible for a tweet to have more words, if a tweet has less words then we use padding to assign the remaining length of the vector to 0 so each vector has the same length. The benefit of using this representation is that Glove assigns the value to a token in its corresponding position with reference to its context, preserving the order of words and the value assigned is the value represented in Glove's vocabulary. Hence, the vector containing the tokens also preserve their order. This representation is then fed into our LSTM model which has 2 hidden layers and the output layer using softmax activation function to give us the probability of a tweet belonging to each class and the class with the highest probability is the class assigned to the tweet. We stop training of our LSTM when our validation accuracy decreases and loss increases in our graph, signalling overfitting, LSTM is tested through 5 fold cross validation.
class BiLSTM(nn.Module):
def __init__(self, le, embedding_matrix):
super(BiLSTM, self).__init__()
self.hidden_size = 50
drp = 0.1
n_classes = len(le.classes_)
self.embedding = nn.Embedding(max_features, embed_size)
self.embedding.weight = nn.Parameter(
torch.tensor(embedding_matrix, dtype=torch.float32))
self.embedding.weight.requires_grad = False
self.lstm = nn.LSTM(embed_size, self.hidden_size,
bidirectional=True, batch_first=True)
self.linear = nn.Linear(self.hidden_size*4, 80)
self.relu = nn.ReLU()
self.dropout = nn.Dropout(drp)
self.out = nn.Linear(80, n_classes)
def forward(self, x):
# rint(x.size())
h_embedding = self.embedding(x)
#_embedding = torch.squeeze(torch.unsqueeze(h_embedding, 0))
h_lstm, _ = self.lstm(h_embedding)
avg_pool = torch.mean(h_lstm, 1)
max_pool, _ = torch.max(h_lstm, 1)
conc = torch.cat((avg_pool, max_pool), 1)
conc = self.relu(self.linear(conc))
conc = self.dropout(conc)
out = self.out(conc)
return out
class LstmModelPytorch(BaseEstimator, TransformerMixin):
def __init__(self, max_features, n_epochs, batch_size, maxlen, embed_size, kFolds, debug):
# Reproducing same results
self.max_features = max_features
self.le = LabelEncoder()
self.n_epochs = n_epochs
self.loss_fn = nn.CrossEntropyLoss(reduction='mean')
self.batch_size = batch_size
self.maxlen = maxlen
self.embed_size = embed_size
self.kFolds = kFolds
self.debug = debug
def load_glove(self, word_index, embed_size):
EMBEDDING_FILE = 'glove.6B/glove.6B.50d.txt'
def get_coefs(word, *arr): return word, np.asarray(arr,
dtype='float32')[:300]
embeddings_index = dict(get_coefs(*o.split(" "))
for o in open(EMBEDDING_FILE, encoding="utf8"))
all_embs = np.stack(embeddings_index.values())
emb_mean, emb_std = -0.005838499, 0.48782197
embed_size = all_embs.shape[1]
nb_words = min(max_features, len(word_index)+1)
embedding_matrix = np.random.normal(
emb_mean, emb_std, (nb_words, embed_size))
for word, i in word_index.items():
if i >= max_features:
continue
embedding_vector = embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
else:
embedding_vector = embeddings_index.get(word.capitalize())
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
return embedding_matrix
def plot_graph(self, epochs, train_loss, val_loss):
fig = plt.figure(figsize=(12, 12))
plt.title("Train/Validation Loss")
plt.plot(list(np.arange(epochs) + 1), train_loss, label='train')
plt.plot(list(np.arange(epochs) + 1), val_loss, label='validation')
plt.xlabel('num_epochs', fontsize=12)
plt.ylabel('loss', fontsize=12)
plt.legend(loc='best')
plt.show()
def fit(self, X, y=None):
xDf = pd.DataFrame(X, columns=['body'])
xDf['label'] = y.to_list()
average_trainingLoss = []
average_validationLoss = []
totalFScore = 0
totalAccuracy = 0
totalConfusion_matrix = None
kfold = StratifiedKFold(n_splits=self.kFolds,
shuffle=True, random_state=7)
foldCounter = 0
bestModel = None
bestValidationF1 = 0
for train_index, test_index in kfold.split(df[['body']], df['label']):
foldCounter += 1
train_X, test_X = df.iloc[train_index][[
'body']], df.iloc[test_index][['body']]
train_y, test_y = df.iloc[train_index]['label'], df.iloc[test_index]['label']
self.tokenizer = Tokenizer(num_words=self.max_features)
self.tokenizer.fit_on_texts(list(train_X['body']))
train_X = self.tokenizer.texts_to_sequences(train_X['body'])
test_X = self.tokenizer.texts_to_sequences(test_X['body'])
if self.debug:
self.embedding_matrix = np.random.randn(120000, 300)
else:
self.embedding_matrix = self.load_glove(
self.tokenizer.word_index, self.embed_size)
# Pad the sentences
train_X = pad_sequences(train_X, maxlen=self.maxlen)
test_X = pad_sequences(test_X, maxlen=self.maxlen)
train_y = self.le.fit_transform(train_y.values)
test_y = self.le.transform(test_y.values)
# Load train and test in CUDA Memory
x_train = torch.tensor(train_X, dtype=torch.long).cuda()
y_train = torch.tensor(train_y, dtype=torch.long).cuda()
x_cv = torch.tensor(test_X, dtype=torch.long).cuda()
y_cv = torch.tensor(test_y, dtype=torch.long).cuda()
# Create Torch datasets
train = torch.utils.data.TensorDataset(x_train, y_train)
valid = torch.utils.data.TensorDataset(x_cv, y_cv)
self.model = BiLSTM(self.le, self.embedding_matrix)
self.optimizer = torch.optim.Adam(
filter(lambda p: p.requires_grad, self.model.parameters()), lr=0.001)
self.model.cuda()
# Create Data Loaders
train_loader = torch.utils.data.DataLoader(
train, batch_size=batch_size, shuffle=True)
valid_loader = torch.utils.data.DataLoader(
valid, batch_size=batch_size, shuffle=False)
train_loss = []
valid_loss = []
for epoch in range(self.n_epochs):
start_time = time.time()
# Set model to train configuration
self.model.train()
avg_loss = 0.
for i, (x_batch, y_batch) in enumerate(train_loader):
# Predict/Forward Pass
y_pred = self.model(x_batch)
# Compute loss
self.loss = self.loss_fn(y_pred, y_batch)
self.optimizer.zero_grad()
self.loss.backward()
self.optimizer.step()
avg_loss += self.loss.item() / len(train_loader)
# Set model to validation configuration -Doesn't get trained here
self.model.eval()
avg_val_loss = 0.
val_preds = np.zeros((len(x_cv), len(self.le.classes_)))
for i, (x_batch, y_batch) in enumerate(valid_loader):
y_pred = self.model(x_batch).detach()
avg_val_loss += self.loss_fn(y_pred,
y_batch).item() / len(valid_loader)
# keep/store predictions
val_preds[i * batch_size:(i+1) *
batch_size] = F.softmax(y_pred).cpu().numpy()
# Check Accuracy
val_accuracy = sum(val_preds.argmax(
axis=1) == test_y)/len(test_y)
train_loss.append(avg_loss)
valid_loss.append(avg_val_loss)
elapsed_time = time.time() - start_time
print('Epoch {}/{} at {} fold: \t loss={:.4f} \t val_loss={:.4f} \t val_acc={:.4f} \t time={:.2f}s'.format(
epoch + 1, self.n_epochs, foldCounter, avg_loss, avg_val_loss, val_accuracy, elapsed_time))
average_trainingLoss.append(train_loss)
average_validationLoss.append(valid_loss)
y_true = [self.le.classes_[x] for x in test_y]
y_pred = [self.le.classes_[x] for x in val_preds.argmax(axis=1)]
fSc = f1_score(y_true, y_pred, average='weighted')
if fSc > bestValidationF1:
bestValidationF1 = fSc
bestModel = self.model
totalAccuracy += accuracy_score(y_true, y_pred)
totalFScore += fSc
totalConfusion_matrix = totalConfusion_matrix + confusion_matrix(
y_true, y_pred) if totalConfusion_matrix is not None else confusion_matrix(y_true, y_pred)
torch.save(bestModel, 'bilstm_model')
# Element wise sum the average training and validation loss
average_trainingLoss = np.array(average_trainingLoss).sum(axis=0)
average_validationLoss = np.array(average_validationLoss).sum(axis=0)
self.plot_graph(self.n_epochs, average_trainingLoss,
average_validationLoss)
printmd("## Trained and Tested Model: BiLSTM" +
"\n\t - using lemmitization for tokenization" +
"\n\t - with Glove Embeddings for vectorization" +
f"\n\t - {'without stratification on an unbalanced dataset'if len(X)>2000 else 'on a statified balanced dataset'}")
printmd("--"*10+"Results" + "--"*10)
printmd(
f"- Average Accuracy of BiLSTM across {self.kFolds}-folds = {totalAccuracy/self.kFolds}")
printmd(
f"- Average F1-Score of BiLSTM across {self.kFolds}-folds = {totalFScore/self.kFolds}")
printmd(
f"- Average Confustion Matrix of BiLSTM across {self.kFolds}-folds:")
sns.heatmap(totalConfusion_matrix/self.kFolds, annot=True)
plt.show()
def predict(self, X):
self.model = torch.load('bilstm_model')
x = X[0]
# tokenize
x = self.tokenizer.texts_to_sequences([x])
# pad
x = pad_sequences(x, maxlen=maxlen)
# create dataset
x = torch.tensor(x, dtype=torch.long).cuda()
pred = self.model(x).detach()
pred = F.softmax(pred).cpu().numpy()
pred = pred.argmax(axis=1)
pred = self.le.classes_[pred]
return pred[0]
embed_size = 50 # how big is each word vector
# how many unique words to use (i.e num rows in embedding vector)
max_features = 120000
maxlen = 50 # max number of words in a tweet to use
batch_size = 512 # how many samples to process at once
n_epochs = 30 # how many times to iterate over all samples
n_splits = 5 # Number of K-fold Splits
debug = 0
lstmPipelineUnBalanced = Pipeline([
('normalizer', Normalizer('l')),
('estimator', LstmModelPytorch(max_features=max_features,
n_epochs=n_epochs, batch_size=batch_size, maxlen=maxlen, embed_size=embed_size, kFolds=n_splits, debug=debug))
])
_ = lstmPipelineUnBalanced.fit(df[['body']], df['label'])
Epoch 1/30 at 1 fold: loss=1.0576 val_loss=0.9809 val_acc=0.5597 time=1.11s Epoch 2/30 at 1 fold: loss=0.9702 val_loss=0.8880 val_acc=0.5597 time=0.07s Epoch 3/30 at 1 fold: loss=0.9160 val_loss=0.8581 val_acc=0.5597 time=0.07s Epoch 4/30 at 1 fold: loss=0.9234 val_loss=0.8639 val_acc=0.5597 time=0.06s Epoch 5/30 at 1 fold: loss=0.9126 val_loss=0.8652 val_acc=0.5936 time=0.07s Epoch 6/30 at 1 fold: loss=0.8976 val_loss=0.8459 val_acc=0.5686 time=0.06s Epoch 7/30 at 1 fold: loss=0.8803 val_loss=0.8321 val_acc=0.5668 time=0.06s Epoch 8/30 at 1 fold: loss=0.8741 val_loss=0.8188 val_acc=0.5829 time=0.06s Epoch 9/30 at 1 fold: loss=0.8656 val_loss=0.8115 val_acc=0.6025 time=0.07s Epoch 10/30 at 1 fold: loss=0.8441 val_loss=0.7711 val_acc=0.6275 time=0.06s Epoch 11/30 at 1 fold: loss=0.8070 val_loss=0.7576 val_acc=0.6364 time=0.07s Epoch 12/30 at 1 fold: loss=0.7866 val_loss=0.7508 val_acc=0.6613 time=0.06s Epoch 13/30 at 1 fold: loss=0.7428 val_loss=0.6956 val_acc=0.6649 time=0.07s Epoch 14/30 at 1 fold: loss=0.7384 val_loss=0.7248 val_acc=0.6631 time=0.06s Epoch 15/30 at 1 fold: loss=0.7293 val_loss=0.6779 val_acc=0.6934 time=0.07s Epoch 16/30 at 1 fold: loss=0.6881 val_loss=0.6671 val_acc=0.6916 time=0.06s Epoch 17/30 at 1 fold: loss=0.6831 val_loss=0.6973 val_acc=0.6560 time=0.07s Epoch 18/30 at 1 fold: loss=0.6862 val_loss=0.6459 val_acc=0.6988 time=0.07s Epoch 19/30 at 1 fold: loss=0.6585 val_loss=0.6700 val_acc=0.6952 time=0.07s Epoch 20/30 at 1 fold: loss=0.6435 val_loss=0.6359 val_acc=0.7023 time=0.06s Epoch 21/30 at 1 fold: loss=0.6210 val_loss=0.6403 val_acc=0.7077 time=0.07s Epoch 22/30 at 1 fold: loss=0.6176 val_loss=0.6191 val_acc=0.6952 time=0.07s Epoch 23/30 at 1 fold: loss=0.6110 val_loss=0.6148 val_acc=0.7166 time=0.07s Epoch 24/30 at 1 fold: loss=0.5853 val_loss=0.6060 val_acc=0.6988 time=0.08s Epoch 25/30 at 1 fold: loss=0.5799 val_loss=0.6276 val_acc=0.6952 time=0.08s Epoch 26/30 at 1 fold: loss=0.5908 val_loss=0.5864 val_acc=0.7184 time=0.07s Epoch 27/30 at 1 fold: loss=0.5601 val_loss=0.5858 val_acc=0.7148 time=0.08s Epoch 28/30 at 1 fold: loss=0.5477 val_loss=0.5880 val_acc=0.7237 time=0.07s Epoch 29/30 at 1 fold: loss=0.5519 val_loss=0.5865 val_acc=0.7291 time=0.07s Epoch 30/30 at 1 fold: loss=0.5291 val_loss=0.5719 val_acc=0.7255 time=0.19s Epoch 1/30 at 2 fold: loss=1.1179 val_loss=1.0494 val_acc=0.5597 time=0.28s Epoch 2/30 at 2 fold: loss=1.0237 val_loss=0.9472 val_acc=0.5597 time=0.11s Epoch 3/30 at 2 fold: loss=0.9434 val_loss=0.8754 val_acc=0.5597 time=0.07s Epoch 4/30 at 2 fold: loss=0.9100 val_loss=0.8596 val_acc=0.5597 time=0.06s Epoch 5/30 at 2 fold: loss=0.9208 val_loss=0.8589 val_acc=0.5651 time=0.07s Epoch 6/30 at 2 fold: loss=0.9056 val_loss=0.8543 val_acc=0.5722 time=0.07s Epoch 7/30 at 2 fold: loss=0.8961 val_loss=0.8468 val_acc=0.5651 time=0.06s Epoch 8/30 at 2 fold: loss=0.8920 val_loss=0.8417 val_acc=0.5651 time=0.07s Epoch 9/30 at 2 fold: loss=0.8785 val_loss=0.8311 val_acc=0.5775 time=0.07s Epoch 10/30 at 2 fold: loss=0.8618 val_loss=0.8150 val_acc=0.5918 time=0.07s Epoch 11/30 at 2 fold: loss=0.8577 val_loss=0.7890 val_acc=0.6114 time=0.07s Epoch 12/30 at 2 fold: loss=0.8294 val_loss=0.7649 val_acc=0.6310 time=0.07s Epoch 13/30 at 2 fold: loss=0.8066 val_loss=0.7310 val_acc=0.6702 time=0.07s Epoch 14/30 at 2 fold: loss=0.7825 val_loss=0.7056 val_acc=0.6756 time=0.08s Epoch 15/30 at 2 fold: loss=0.7624 val_loss=0.6913 val_acc=0.6970 time=0.08s Epoch 16/30 at 2 fold: loss=0.7438 val_loss=0.6921 val_acc=0.6684 time=0.08s Epoch 17/30 at 2 fold: loss=0.7232 val_loss=0.6588 val_acc=0.6898 time=0.08s Epoch 18/30 at 2 fold: loss=0.7018 val_loss=0.6519 val_acc=0.6881 time=0.07s Epoch 19/30 at 2 fold: loss=0.6791 val_loss=0.6420 val_acc=0.7059 time=0.07s Epoch 20/30 at 2 fold: loss=0.6786 val_loss=0.6409 val_acc=0.7184 time=0.07s Epoch 21/30 at 2 fold: loss=0.6667 val_loss=0.6349 val_acc=0.7041 time=0.07s Epoch 22/30 at 2 fold: loss=0.6428 val_loss=0.6274 val_acc=0.7201 time=0.06s Epoch 23/30 at 2 fold: loss=0.6461 val_loss=0.6302 val_acc=0.7255 time=0.07s Epoch 24/30 at 2 fold: loss=0.6260 val_loss=0.6337 val_acc=0.7148 time=0.07s Epoch 25/30 at 2 fold: loss=0.6223 val_loss=0.6243 val_acc=0.7237 time=0.07s Epoch 26/30 at 2 fold: loss=0.6171 val_loss=0.6186 val_acc=0.7433 time=0.07s Epoch 27/30 at 2 fold: loss=0.6142 val_loss=0.6085 val_acc=0.7451 time=0.07s Epoch 28/30 at 2 fold: loss=0.5736 val_loss=0.5897 val_acc=0.7469 time=0.07s Epoch 29/30 at 2 fold: loss=0.5692 val_loss=0.5861 val_acc=0.7504 time=0.07s Epoch 30/30 at 2 fold: loss=0.5637 val_loss=0.5877 val_acc=0.7344 time=0.06s Epoch 1/30 at 3 fold: loss=1.0393 val_loss=0.9484 val_acc=0.5607 time=0.29s Epoch 2/30 at 3 fold: loss=0.9430 val_loss=0.8743 val_acc=0.5607 time=0.09s Epoch 3/30 at 3 fold: loss=0.9126 val_loss=0.8637 val_acc=0.5607 time=0.06s Epoch 4/30 at 3 fold: loss=0.9034 val_loss=0.8767 val_acc=0.5714 time=0.06s Epoch 5/30 at 3 fold: loss=0.8995 val_loss=0.8679 val_acc=0.5696 time=0.07s Epoch 6/30 at 3 fold: loss=0.8844 val_loss=0.8577 val_acc=0.5750 time=0.06s Epoch 7/30 at 3 fold: loss=0.8785 val_loss=0.8495 val_acc=0.5643 time=0.06s Epoch 8/30 at 3 fold: loss=0.8572 val_loss=0.8400 val_acc=0.5893 time=0.06s Epoch 9/30 at 3 fold: loss=0.8341 val_loss=0.8167 val_acc=0.5893 time=0.07s Epoch 10/30 at 3 fold: loss=0.8144 val_loss=0.7985 val_acc=0.6232 time=0.07s Epoch 11/30 at 3 fold: loss=0.7829 val_loss=0.7672 val_acc=0.6304 time=0.06s Epoch 12/30 at 3 fold: loss=0.7633 val_loss=0.7538 val_acc=0.6464 time=0.06s Epoch 13/30 at 3 fold: loss=0.7225 val_loss=0.7231 val_acc=0.6411 time=0.06s Epoch 14/30 at 3 fold: loss=0.6924 val_loss=0.7139 val_acc=0.6536 time=0.07s Epoch 15/30 at 3 fold: loss=0.6766 val_loss=0.6944 val_acc=0.6446 time=0.07s Epoch 16/30 at 3 fold: loss=0.6636 val_loss=0.6765 val_acc=0.6821 time=0.07s Epoch 17/30 at 3 fold: loss=0.6208 val_loss=0.6810 val_acc=0.6839 time=0.07s Epoch 18/30 at 3 fold: loss=0.6204 val_loss=0.6940 val_acc=0.6893 time=0.07s Epoch 19/30 at 3 fold: loss=0.6011 val_loss=0.7018 val_acc=0.6732 time=0.07s Epoch 20/30 at 3 fold: loss=0.5825 val_loss=0.6797 val_acc=0.6982 time=0.06s Epoch 21/30 at 3 fold: loss=0.5858 val_loss=0.6921 val_acc=0.6911 time=0.07s Epoch 22/30 at 3 fold: loss=0.5588 val_loss=0.7093 val_acc=0.6893 time=0.07s Epoch 23/30 at 3 fold: loss=0.5654 val_loss=0.7118 val_acc=0.7107 time=0.06s Epoch 24/30 at 3 fold: loss=0.5474 val_loss=0.6757 val_acc=0.6964 time=0.06s Epoch 25/30 at 3 fold: loss=0.5339 val_loss=0.6918 val_acc=0.7107 time=0.06s Epoch 26/30 at 3 fold: loss=0.5141 val_loss=0.7025 val_acc=0.7071 time=0.06s Epoch 27/30 at 3 fold: loss=0.5109 val_loss=0.7319 val_acc=0.6982 time=0.06s Epoch 28/30 at 3 fold: loss=0.5166 val_loss=0.7044 val_acc=0.7054 time=0.06s Epoch 29/30 at 3 fold: loss=0.5007 val_loss=0.7018 val_acc=0.7089 time=0.07s Epoch 30/30 at 3 fold: loss=0.4887 val_loss=0.7144 val_acc=0.7036 time=0.07s Epoch 1/30 at 4 fold: loss=1.0415 val_loss=0.9567 val_acc=0.5589 time=0.23s Epoch 2/30 at 4 fold: loss=0.9530 val_loss=0.8578 val_acc=0.5589 time=0.07s Epoch 3/30 at 4 fold: loss=0.9220 val_loss=0.8143 val_acc=0.5589 time=0.07s Epoch 4/30 at 4 fold: loss=0.9098 val_loss=0.8145 val_acc=0.5589 time=0.07s Epoch 5/30 at 4 fold: loss=0.9024 val_loss=0.8143 val_acc=0.5607 time=0.07s Epoch 6/30 at 4 fold: loss=0.8953 val_loss=0.8101 val_acc=0.5625 time=0.08s Epoch 7/30 at 4 fold: loss=0.8857 val_loss=0.8042 val_acc=0.5714 time=0.08s Epoch 8/30 at 4 fold: loss=0.8748 val_loss=0.7933 val_acc=0.5821 time=0.07s Epoch 9/30 at 4 fold: loss=0.8554 val_loss=0.7727 val_acc=0.6018 time=0.06s Epoch 10/30 at 4 fold: loss=0.8470 val_loss=0.7471 val_acc=0.6250 time=0.07s Epoch 11/30 at 4 fold: loss=0.8173 val_loss=0.7332 val_acc=0.6393 time=0.07s Epoch 12/30 at 4 fold: loss=0.7751 val_loss=0.6989 val_acc=0.6446 time=0.08s Epoch 13/30 at 4 fold: loss=0.7467 val_loss=0.6937 val_acc=0.6536 time=0.07s Epoch 14/30 at 4 fold: loss=0.7402 val_loss=0.6831 val_acc=0.6607 time=0.07s Epoch 15/30 at 4 fold: loss=0.7117 val_loss=0.6687 val_acc=0.6804 time=0.07s Epoch 16/30 at 4 fold: loss=0.6918 val_loss=0.6682 val_acc=0.6714 time=0.07s Epoch 17/30 at 4 fold: loss=0.6675 val_loss=0.6320 val_acc=0.6929 time=0.08s Epoch 18/30 at 4 fold: loss=0.6493 val_loss=0.6786 val_acc=0.6696 time=0.07s Epoch 19/30 at 4 fold: loss=0.6270 val_loss=0.6266 val_acc=0.7000 time=0.07s Epoch 20/30 at 4 fold: loss=0.6144 val_loss=0.6310 val_acc=0.7018 time=0.08s Epoch 21/30 at 4 fold: loss=0.6039 val_loss=0.6080 val_acc=0.6964 time=0.08s Epoch 22/30 at 4 fold: loss=0.5962 val_loss=0.6096 val_acc=0.7000 time=0.07s Epoch 23/30 at 4 fold: loss=0.5859 val_loss=0.6217 val_acc=0.6946 time=0.08s Epoch 24/30 at 4 fold: loss=0.5677 val_loss=0.5909 val_acc=0.7054 time=0.08s Epoch 25/30 at 4 fold: loss=0.5548 val_loss=0.6501 val_acc=0.6946 time=0.07s Epoch 26/30 at 4 fold: loss=0.5579 val_loss=0.5996 val_acc=0.7000 time=0.07s Epoch 27/30 at 4 fold: loss=0.5422 val_loss=0.6056 val_acc=0.7071 time=0.08s Epoch 28/30 at 4 fold: loss=0.5353 val_loss=0.6036 val_acc=0.7089 time=0.07s Epoch 29/30 at 4 fold: loss=0.5291 val_loss=0.5953 val_acc=0.7018 time=0.06s Epoch 30/30 at 4 fold: loss=0.5161 val_loss=0.5877 val_acc=0.7000 time=0.07s Epoch 1/30 at 5 fold: loss=1.0277 val_loss=0.9944 val_acc=0.5589 time=0.22s Epoch 2/30 at 5 fold: loss=0.9526 val_loss=0.9546 val_acc=0.5589 time=0.07s Epoch 3/30 at 5 fold: loss=0.9222 val_loss=0.9542 val_acc=0.5589 time=0.07s Epoch 4/30 at 5 fold: loss=0.9181 val_loss=0.9412 val_acc=0.5589 time=0.06s Epoch 5/30 at 5 fold: loss=0.9080 val_loss=0.9274 val_acc=0.5589 time=0.08s Epoch 6/30 at 5 fold: loss=0.8947 val_loss=0.9173 val_acc=0.5589 time=0.07s Epoch 7/30 at 5 fold: loss=0.8795 val_loss=0.9103 val_acc=0.5589 time=0.06s Epoch 8/30 at 5 fold: loss=0.8697 val_loss=0.8953 val_acc=0.5732 time=0.07s Epoch 9/30 at 5 fold: loss=0.8532 val_loss=0.8722 val_acc=0.6411 time=0.07s Epoch 10/30 at 5 fold: loss=0.8448 val_loss=0.8524 val_acc=0.6464 time=0.07s Epoch 11/30 at 5 fold: loss=0.8038 val_loss=0.8316 val_acc=0.6768 time=0.06s Epoch 12/30 at 5 fold: loss=0.7789 val_loss=0.8059 val_acc=0.6661 time=0.06s Epoch 13/30 at 5 fold: loss=0.7403 val_loss=0.7734 val_acc=0.6571 time=0.07s Epoch 14/30 at 5 fold: loss=0.7313 val_loss=0.7457 val_acc=0.6768 time=0.06s Epoch 15/30 at 5 fold: loss=0.6982 val_loss=0.7639 val_acc=0.6804 time=0.07s Epoch 16/30 at 5 fold: loss=0.6849 val_loss=0.7167 val_acc=0.6643 time=0.07s Epoch 17/30 at 5 fold: loss=0.6771 val_loss=0.7039 val_acc=0.7036 time=0.07s Epoch 18/30 at 5 fold: loss=0.6436 val_loss=0.7036 val_acc=0.7268 time=0.07s Epoch 19/30 at 5 fold: loss=0.6291 val_loss=0.6964 val_acc=0.7089 time=0.06s Epoch 20/30 at 5 fold: loss=0.6151 val_loss=0.6988 val_acc=0.7071 time=0.07s Epoch 21/30 at 5 fold: loss=0.6011 val_loss=0.6997 val_acc=0.7036 time=0.07s Epoch 22/30 at 5 fold: loss=0.5953 val_loss=0.6987 val_acc=0.7161 time=0.07s Epoch 23/30 at 5 fold: loss=0.5880 val_loss=0.6828 val_acc=0.7143 time=0.07s Epoch 24/30 at 5 fold: loss=0.6027 val_loss=0.6573 val_acc=0.7232 time=0.06s Epoch 25/30 at 5 fold: loss=0.5907 val_loss=0.6688 val_acc=0.7232 time=0.08s Epoch 26/30 at 5 fold: loss=0.5816 val_loss=0.6720 val_acc=0.7286 time=0.07s Epoch 27/30 at 5 fold: loss=0.5662 val_loss=0.6579 val_acc=0.7268 time=0.06s Epoch 28/30 at 5 fold: loss=0.5482 val_loss=0.6461 val_acc=0.7089 time=0.17s Epoch 29/30 at 5 fold: loss=0.5319 val_loss=0.6426 val_acc=0.7250 time=0.07s Epoch 30/30 at 5 fold: loss=0.5292 val_loss=0.6377 val_acc=0.7232 time=0.06s
- using lemmitization for tokenization
- with Glove Embeddings for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
lstmPipelineBalanced = Pipeline([
('normalizer', Normalizer('l')),
('estimator', LstmModelPytorch(max_features=max_features,
n_epochs=n_epochs, batch_size=batch_size, maxlen=maxlen, embed_size=embed_size, kFolds=n_splits, debug=debug))
])
# Make the dataset balanced with stratification
df_balanced = df.groupby('label').apply(
lambda x: x.sample(n=df['label'].value_counts().min()))
df_balanced = df_balanced.reset_index(drop=True)
lstmPipelineBalanced.fit(df[['body']], df['label'])
Epoch 1/30 at 1 fold: loss=1.0942 val_loss=1.0307 val_acc=0.5597 time=0.29s Epoch 2/30 at 1 fold: loss=1.0097 val_loss=0.9425 val_acc=0.5597 time=0.06s Epoch 3/30 at 1 fold: loss=0.9398 val_loss=0.8697 val_acc=0.5597 time=0.07s Epoch 4/30 at 1 fold: loss=0.9094 val_loss=0.8551 val_acc=0.5597 time=0.06s Epoch 5/30 at 1 fold: loss=0.9119 val_loss=0.8577 val_acc=0.5597 time=0.07s Epoch 6/30 at 1 fold: loss=0.8915 val_loss=0.8474 val_acc=0.5775 time=0.07s Epoch 7/30 at 1 fold: loss=0.8905 val_loss=0.8321 val_acc=0.5704 time=0.07s Epoch 8/30 at 1 fold: loss=0.8692 val_loss=0.8274 val_acc=0.5882 time=0.07s Epoch 9/30 at 1 fold: loss=0.8571 val_loss=0.8080 val_acc=0.5989 time=0.07s Epoch 10/30 at 1 fold: loss=0.8308 val_loss=0.7824 val_acc=0.6221 time=0.07s Epoch 11/30 at 1 fold: loss=0.8018 val_loss=0.7604 val_acc=0.6613 time=0.07s Epoch 12/30 at 1 fold: loss=0.7847 val_loss=0.7415 val_acc=0.6471 time=0.07s Epoch 13/30 at 1 fold: loss=0.7634 val_loss=0.7370 val_acc=0.6524 time=0.07s Epoch 14/30 at 1 fold: loss=0.7313 val_loss=0.7543 val_acc=0.6453 time=0.07s Epoch 15/30 at 1 fold: loss=0.7172 val_loss=0.7138 val_acc=0.6613 time=0.07s Epoch 16/30 at 1 fold: loss=0.6923 val_loss=0.6903 val_acc=0.6774 time=0.07s Epoch 17/30 at 1 fold: loss=0.6833 val_loss=0.6911 val_acc=0.6756 time=0.07s Epoch 18/30 at 1 fold: loss=0.6541 val_loss=0.6865 val_acc=0.6649 time=0.07s Epoch 19/30 at 1 fold: loss=0.6506 val_loss=0.7002 val_acc=0.6560 time=0.07s Epoch 20/30 at 1 fold: loss=0.6371 val_loss=0.6883 val_acc=0.6791 time=0.07s Epoch 21/30 at 1 fold: loss=0.6374 val_loss=0.6348 val_acc=0.7023 time=0.07s Epoch 22/30 at 1 fold: loss=0.6174 val_loss=0.6836 val_acc=0.6667 time=0.07s Epoch 23/30 at 1 fold: loss=0.6152 val_loss=0.6025 val_acc=0.7148 time=0.08s Epoch 24/30 at 1 fold: loss=0.5895 val_loss=0.6092 val_acc=0.7166 time=0.08s Epoch 25/30 at 1 fold: loss=0.5787 val_loss=0.6028 val_acc=0.7184 time=0.07s Epoch 26/30 at 1 fold: loss=0.5694 val_loss=0.6153 val_acc=0.7148 time=0.07s Epoch 27/30 at 1 fold: loss=0.5541 val_loss=0.5908 val_acc=0.7326 time=0.07s Epoch 28/30 at 1 fold: loss=0.5304 val_loss=0.6037 val_acc=0.7077 time=0.08s Epoch 29/30 at 1 fold: loss=0.5316 val_loss=0.5875 val_acc=0.7255 time=0.08s Epoch 30/30 at 1 fold: loss=0.5208 val_loss=0.5678 val_acc=0.7344 time=0.07s Epoch 1/30 at 2 fold: loss=1.0995 val_loss=1.0248 val_acc=0.5597 time=0.14s Epoch 2/30 at 2 fold: loss=1.0013 val_loss=0.9300 val_acc=0.5597 time=0.12s Epoch 3/30 at 2 fold: loss=0.9335 val_loss=0.8716 val_acc=0.5597 time=0.08s Epoch 4/30 at 2 fold: loss=0.9218 val_loss=0.8548 val_acc=0.5597 time=0.07s Epoch 5/30 at 2 fold: loss=0.9075 val_loss=0.8549 val_acc=0.5597 time=0.07s Epoch 6/30 at 2 fold: loss=0.8919 val_loss=0.8430 val_acc=0.5633 time=0.06s Epoch 7/30 at 2 fold: loss=0.8933 val_loss=0.8319 val_acc=0.5615 time=0.06s Epoch 8/30 at 2 fold: loss=0.8780 val_loss=0.8217 val_acc=0.5740 time=0.06s Epoch 9/30 at 2 fold: loss=0.8599 val_loss=0.8073 val_acc=0.6078 time=0.06s Epoch 10/30 at 2 fold: loss=0.8379 val_loss=0.7755 val_acc=0.6203 time=0.06s Epoch 11/30 at 2 fold: loss=0.8227 val_loss=0.7450 val_acc=0.6613 time=0.07s Epoch 12/30 at 2 fold: loss=0.7852 val_loss=0.7055 val_acc=0.6774 time=0.07s Epoch 13/30 at 2 fold: loss=0.7618 val_loss=0.6807 val_acc=0.6916 time=0.07s Epoch 14/30 at 2 fold: loss=0.7398 val_loss=0.6745 val_acc=0.6738 time=0.07s Epoch 15/30 at 2 fold: loss=0.7223 val_loss=0.6672 val_acc=0.6774 time=0.07s Epoch 16/30 at 2 fold: loss=0.7045 val_loss=0.6771 val_acc=0.6809 time=0.07s Epoch 17/30 at 2 fold: loss=0.6967 val_loss=0.6531 val_acc=0.6952 time=0.06s Epoch 18/30 at 2 fold: loss=0.6646 val_loss=0.6581 val_acc=0.7041 time=0.07s Epoch 19/30 at 2 fold: loss=0.6470 val_loss=0.6410 val_acc=0.7023 time=0.06s Epoch 20/30 at 2 fold: loss=0.6459 val_loss=0.6330 val_acc=0.7059 time=0.07s Epoch 21/30 at 2 fold: loss=0.6343 val_loss=0.6369 val_acc=0.7005 time=0.07s Epoch 22/30 at 2 fold: loss=0.6149 val_loss=0.6333 val_acc=0.7094 time=0.07s Epoch 23/30 at 2 fold: loss=0.6289 val_loss=0.6265 val_acc=0.7184 time=0.07s Epoch 24/30 at 2 fold: loss=0.6160 val_loss=0.6349 val_acc=0.7166 time=0.07s Epoch 25/30 at 2 fold: loss=0.5970 val_loss=0.6396 val_acc=0.7148 time=0.07s Epoch 26/30 at 2 fold: loss=0.5906 val_loss=0.6348 val_acc=0.7201 time=0.07s Epoch 27/30 at 2 fold: loss=0.5875 val_loss=0.6225 val_acc=0.7255 time=0.08s Epoch 28/30 at 2 fold: loss=0.6018 val_loss=0.6247 val_acc=0.7130 time=0.06s Epoch 29/30 at 2 fold: loss=0.5698 val_loss=0.6140 val_acc=0.7415 time=0.06s Epoch 30/30 at 2 fold: loss=0.5712 val_loss=0.6261 val_acc=0.7130 time=0.07s Epoch 1/30 at 3 fold: loss=1.0692 val_loss=1.0260 val_acc=0.4554 time=0.21s Epoch 2/30 at 3 fold: loss=1.0009 val_loss=0.9472 val_acc=0.5768 time=0.07s Epoch 3/30 at 3 fold: loss=0.9404 val_loss=0.8764 val_acc=0.5607 time=0.06s Epoch 4/30 at 3 fold: loss=0.9104 val_loss=0.8639 val_acc=0.5607 time=0.07s Epoch 5/30 at 3 fold: loss=0.9052 val_loss=0.8724 val_acc=0.5714 time=0.07s Epoch 6/30 at 3 fold: loss=0.8991 val_loss=0.8710 val_acc=0.5696 time=0.07s Epoch 7/30 at 3 fold: loss=0.8974 val_loss=0.8565 val_acc=0.5804 time=0.06s Epoch 8/30 at 3 fold: loss=0.8822 val_loss=0.8527 val_acc=0.5750 time=0.07s Epoch 9/30 at 3 fold: loss=0.8794 val_loss=0.8437 val_acc=0.5875 time=0.07s Epoch 10/30 at 3 fold: loss=0.8455 val_loss=0.8257 val_acc=0.5982 time=0.06s Epoch 11/30 at 3 fold: loss=0.8292 val_loss=0.8017 val_acc=0.6214 time=0.07s Epoch 12/30 at 3 fold: loss=0.8016 val_loss=0.7776 val_acc=0.6446 time=0.07s Epoch 13/30 at 3 fold: loss=0.7756 val_loss=0.7630 val_acc=0.6643 time=0.07s Epoch 14/30 at 3 fold: loss=0.7608 val_loss=0.7420 val_acc=0.6571 time=0.07s Epoch 15/30 at 3 fold: loss=0.7224 val_loss=0.7271 val_acc=0.6589 time=0.06s Epoch 16/30 at 3 fold: loss=0.7000 val_loss=0.7382 val_acc=0.6625 time=0.07s Epoch 17/30 at 3 fold: loss=0.6781 val_loss=0.7313 val_acc=0.6696 time=0.07s Epoch 18/30 at 3 fold: loss=0.6655 val_loss=0.7258 val_acc=0.6696 time=0.18s Epoch 19/30 at 3 fold: loss=0.6527 val_loss=0.7434 val_acc=0.6768 time=0.07s Epoch 20/30 at 3 fold: loss=0.6427 val_loss=0.7143 val_acc=0.7036 time=0.07s Epoch 21/30 at 3 fold: loss=0.6208 val_loss=0.7326 val_acc=0.6964 time=0.06s Epoch 22/30 at 3 fold: loss=0.6074 val_loss=0.7308 val_acc=0.6911 time=0.07s Epoch 23/30 at 3 fold: loss=0.5905 val_loss=0.7319 val_acc=0.7089 time=0.08s Epoch 24/30 at 3 fold: loss=0.5874 val_loss=0.7467 val_acc=0.6929 time=0.07s Epoch 25/30 at 3 fold: loss=0.5683 val_loss=0.7097 val_acc=0.7089 time=0.07s Epoch 26/30 at 3 fold: loss=0.5573 val_loss=0.7223 val_acc=0.7000 time=0.06s Epoch 27/30 at 3 fold: loss=0.5354 val_loss=0.7272 val_acc=0.7089 time=0.07s Epoch 28/30 at 3 fold: loss=0.5324 val_loss=0.7247 val_acc=0.7071 time=0.07s Epoch 29/30 at 3 fold: loss=0.5295 val_loss=0.7371 val_acc=0.7018 time=0.07s Epoch 30/30 at 3 fold: loss=0.5172 val_loss=0.7279 val_acc=0.7125 time=0.07s Epoch 1/30 at 4 fold: loss=1.0287 val_loss=0.9609 val_acc=0.5589 time=0.29s Epoch 2/30 at 4 fold: loss=0.9581 val_loss=0.8665 val_acc=0.5589 time=0.11s Epoch 3/30 at 4 fold: loss=0.9100 val_loss=0.8145 val_acc=0.5589 time=0.07s Epoch 4/30 at 4 fold: loss=0.9243 val_loss=0.8126 val_acc=0.5589 time=0.06s Epoch 5/30 at 4 fold: loss=0.9064 val_loss=0.8205 val_acc=0.5589 time=0.06s Epoch 6/30 at 4 fold: loss=0.8967 val_loss=0.8077 val_acc=0.5589 time=0.06s Epoch 7/30 at 4 fold: loss=0.8887 val_loss=0.7986 val_acc=0.5589 time=0.06s Epoch 8/30 at 4 fold: loss=0.8800 val_loss=0.7895 val_acc=0.5571 time=0.07s Epoch 9/30 at 4 fold: loss=0.8621 val_loss=0.7779 val_acc=0.5857 time=0.06s Epoch 10/30 at 4 fold: loss=0.8433 val_loss=0.7429 val_acc=0.6054 time=0.07s Epoch 11/30 at 4 fold: loss=0.8137 val_loss=0.7196 val_acc=0.6464 time=0.07s Epoch 12/30 at 4 fold: loss=0.7951 val_loss=0.6810 val_acc=0.6589 time=0.06s Epoch 13/30 at 4 fold: loss=0.7696 val_loss=0.6670 val_acc=0.6661 time=0.07s Epoch 14/30 at 4 fold: loss=0.7442 val_loss=0.6625 val_acc=0.6714 time=0.07s Epoch 15/30 at 4 fold: loss=0.7275 val_loss=0.6772 val_acc=0.6643 time=0.07s Epoch 16/30 at 4 fold: loss=0.6974 val_loss=0.6391 val_acc=0.6696 time=0.06s Epoch 17/30 at 4 fold: loss=0.6749 val_loss=0.6237 val_acc=0.6714 time=0.07s Epoch 18/30 at 4 fold: loss=0.6671 val_loss=0.6286 val_acc=0.6714 time=0.07s Epoch 19/30 at 4 fold: loss=0.6479 val_loss=0.6781 val_acc=0.6804 time=0.06s Epoch 20/30 at 4 fold: loss=0.6416 val_loss=0.6122 val_acc=0.6982 time=0.06s Epoch 21/30 at 4 fold: loss=0.6267 val_loss=0.6365 val_acc=0.6982 time=0.07s Epoch 22/30 at 4 fold: loss=0.6022 val_loss=0.6045 val_acc=0.7143 time=0.07s Epoch 23/30 at 4 fold: loss=0.6043 val_loss=0.6326 val_acc=0.7036 time=0.06s Epoch 24/30 at 4 fold: loss=0.5854 val_loss=0.6222 val_acc=0.7196 time=0.06s Epoch 25/30 at 4 fold: loss=0.5614 val_loss=0.6130 val_acc=0.7214 time=0.06s Epoch 26/30 at 4 fold: loss=0.5519 val_loss=0.6026 val_acc=0.7179 time=0.07s Epoch 27/30 at 4 fold: loss=0.5488 val_loss=0.6124 val_acc=0.7196 time=0.06s Epoch 28/30 at 4 fold: loss=0.5345 val_loss=0.5871 val_acc=0.7286 time=0.06s Epoch 29/30 at 4 fold: loss=0.5320 val_loss=0.6126 val_acc=0.7179 time=0.06s Epoch 30/30 at 4 fold: loss=0.5201 val_loss=0.5777 val_acc=0.7232 time=0.07s Epoch 1/30 at 5 fold: loss=1.0816 val_loss=1.0231 val_acc=0.5589 time=0.28s Epoch 2/30 at 5 fold: loss=0.9796 val_loss=0.9612 val_acc=0.5589 time=0.08s Epoch 3/30 at 5 fold: loss=0.9155 val_loss=0.9556 val_acc=0.5589 time=0.06s Epoch 4/30 at 5 fold: loss=0.9265 val_loss=0.9465 val_acc=0.5625 time=0.06s Epoch 5/30 at 5 fold: loss=0.9158 val_loss=0.9312 val_acc=0.5804 time=0.07s Epoch 6/30 at 5 fold: loss=0.9030 val_loss=0.9270 val_acc=0.5643 time=0.07s Epoch 7/30 at 5 fold: loss=0.8868 val_loss=0.9235 val_acc=0.5661 time=0.06s Epoch 8/30 at 5 fold: loss=0.8818 val_loss=0.9064 val_acc=0.5964 time=0.06s Epoch 9/30 at 5 fold: loss=0.8701 val_loss=0.8954 val_acc=0.6071 time=0.07s Epoch 10/30 at 5 fold: loss=0.8536 val_loss=0.8778 val_acc=0.6268 time=0.07s Epoch 11/30 at 5 fold: loss=0.8229 val_loss=0.8545 val_acc=0.6643 time=0.06s Epoch 12/30 at 5 fold: loss=0.7909 val_loss=0.8380 val_acc=0.6714 time=0.06s Epoch 13/30 at 5 fold: loss=0.7703 val_loss=0.8172 val_acc=0.6571 time=0.07s Epoch 14/30 at 5 fold: loss=0.7346 val_loss=0.8085 val_acc=0.6893 time=0.07s Epoch 15/30 at 5 fold: loss=0.7469 val_loss=0.7997 val_acc=0.6911 time=0.06s Epoch 16/30 at 5 fold: loss=0.7119 val_loss=0.7927 val_acc=0.6857 time=0.06s Epoch 17/30 at 5 fold: loss=0.6947 val_loss=0.7758 val_acc=0.6929 time=0.07s Epoch 18/30 at 5 fold: loss=0.6734 val_loss=0.7754 val_acc=0.6821 time=0.06s Epoch 19/30 at 5 fold: loss=0.6571 val_loss=0.7501 val_acc=0.7000 time=0.06s Epoch 20/30 at 5 fold: loss=0.6377 val_loss=0.7423 val_acc=0.7036 time=0.07s Epoch 21/30 at 5 fold: loss=0.6345 val_loss=0.7206 val_acc=0.7179 time=0.06s Epoch 22/30 at 5 fold: loss=0.6021 val_loss=0.7005 val_acc=0.7143 time=0.06s Epoch 23/30 at 5 fold: loss=0.5979 val_loss=0.7306 val_acc=0.7339 time=0.07s Epoch 24/30 at 5 fold: loss=0.5711 val_loss=0.7305 val_acc=0.7411 time=0.07s Epoch 25/30 at 5 fold: loss=0.5674 val_loss=0.7186 val_acc=0.7411 time=0.07s Epoch 26/30 at 5 fold: loss=0.5571 val_loss=0.7175 val_acc=0.7429 time=0.07s Epoch 27/30 at 5 fold: loss=0.5491 val_loss=0.7110 val_acc=0.7321 time=0.06s Epoch 28/30 at 5 fold: loss=0.5390 val_loss=0.7521 val_acc=0.7321 time=0.07s Epoch 29/30 at 5 fold: loss=0.5414 val_loss=0.6999 val_acc=0.7446 time=0.07s Epoch 30/30 at 5 fold: loss=0.5206 val_loss=0.7110 val_acc=0.7500 time=0.06s
- using lemmitization for tokenization
- with Glove Embeddings for vectorization
- without stratification on an unbalanced dataset
--------------------Results--------------------
Pipeline(steps=[('normalizer', Normalizer(options='l')),
('estimator',
LstmModelPytorch(batch_size=512, debug=0, embed_size=50,
kFolds=5, max_features=120000, maxlen=50,
n_epochs=30))])
For both versions of our LSTM model (trained on balanced data set and unbalanced data set), we made a predict function where we enter a tweet and the model predicts whether it is Positive (1), Neutral (0) or Negative (-1).
lstmPipelineBalanced.predict(pd.DataFrame(['Expo 2020 was not fun'], columns=['body']))
1
tfidf_vectorizer = TfidfVectorizer()
normalized_df = Normalizer('l').transform(df)
df_tfidf = tfidf_vectorizer.fit_transform(normalized_df)
lda_tfidf = LatentDirichletAllocation(n_components=11, random_state=0)
lda_tfidf.fit(df_tfidf)
pyLDAvis.sklearn.prepare(lda_tfidf, df_tfidf, tfidf_vectorizer)
lda_tfidf = LatentDirichletAllocation(n_components=20, random_state=0)
lda_tfidf.fit(df_tfidf)
pyLDAvis.sklearn.prepare(lda_tfidf, df_tfidf, tfidf_vectorizer)
lda_tfidf = LatentDirichletAllocation(n_components=35, random_state=0)
lda_tfidf.fit(df_tfidf)
pyLDAvis.sklearn.prepare(lda_tfidf, df_tfidf, tfidf_vectorizer)
We observed the topic modelling with 11, 20 and 35 number of topics as parameters and with 0.42 as the relevance metric. In all the parameters we find that, most topics are overlapping each other in terms of the intertopic distance. There are few outliers for all the cases. For all the 3 observation, the general rule given below are followed:
Below we are describing the common observation found from 11, 20 and 35 number of topics as parameters.
The key take aways from our model is that it does not fully grasp the nuances of a tweet, such as sarcasm or any implicit meanings, this is mainly due to the limited corpus size we are using, as research papers such as [1] use more than 10k tweets while our corpus was limited to only 2084. The quality of tweets also limited the use of negation such as using "Not good", as our corpus did not contain such tweets. This is verfied as each tweet was manually labelled, more so other papers such as [1] would remove negation, hence their model was not trained for negation tweets. Some aspects such as removing URLs strengthened our arguments for our pre-processing methodology by these research papers, especially emojis [2]. However, new research paper was found with the same corpus or the same topic for which we conducted opinion mining hence a proper comparison cannot be made with research papers.
More so, since our ML models have relativey miniscule data, they are under trained and have not seen the majority of possible ways to convey similar sentiments, unlike as previously discussed other ML models which are trained such as GPT-3, which uses 175 billion parameters. Other key takeaways include the heavily skewed corpus in the real world as compared to a closed environment where all the data is perfectly balanced, in our case, the heavily skewed dataset meant our ML models would mostly learn only positive sentiments and even a simple tweet such as 'Pavillion #EXPO2020' would return a positive sentiment. Another example in our case is the tweets regarding "South Africa Pavillion" as almost 90% of the tweets related to that specific pavillion were negative, hence our model associates it with negative sentiments. Due to the lack of neutral and negative tweets, our model has mainly learnt negative sentiments.
The issues in retrieving or creating a well balanced and a densely populated data set is due to non-linearity of retrieving tweets involving subjective opinions of people which makes opinion mining a complex problem to solve. The real world like our data set gave a heavily skewed dataset which is almost always the case and due to the nature of tweets and the way they are written, multiple stages are involved in the normalisation of each tweet. Also due to a lot of twitter bots active and spamming #, a lot of tweets are irrelevant/spam tweets which is why our initial corpus of 95k is down to 2082 tweets.
[1] Z. Jianqiang and G. Xiaolin, "Comparison Research on Text Pre-processing Methods on Twitter Sentiment Analysis," in IEEE Access, vol. 5, pp. 2870-2879, 2017, doi: 10.1109/ACCESS.2017.2672677.
[2] A. Sarlan, C. Nadam and S. Basri, "Twitter sentiment analysis," Proceedings of the 6th International Conference on Information Technology and Multimedia, 2014, pp. 212-216, doi: 10.1109/ICIMU.2014.7066632.