%pip install -q transformers accelerate pandasThis notebook belongs to the DGPs 2026 workshop Text Classification with Open Source Models.
You’ll run two different encoder-based classifiers on real, open-ended survey text from the Real World Worry Waves Dataset (RW3D) — focused on three emotions, anger, fear, and sadness.
How to use this notebook: run each cell from top to bottom with Shift+Enter or by clicking the run button. Most cells are given and fully explained; a few are marked Your turn — those are where you edit or write something yourself. Every exercise cell has a safe default, so nothing breaks if you leave it as-is, but you’ll get more out of the session if you actually change it.
Important note for Colab users: If you are running this notebook in Google Colab, please follow these steps: 1. Make sure you have a Google account and are logged in. 2. To create a copy of this notebook in your own Google Drive (advised), select “Copy to Drive” at the top of the Colab page. 3. Once the notebook copy opens in Colab, click on “Runtime” in the menu bar, then select “Change runtime type” and choose “T4 GPU” as the hardware accelerator. 4. Click “Save” to apply the changes. 5. Now you can run the notebook cells as instructed.
Setup
First, we install the Python packages we need. This will take some time to complete.
In [3]:
Next, we can change the logging level of the transformers library to avoid cluttering the notebook with warnings and info messages.
You do not have to run this cell, but it will make the output easier to read.
In [1]:
from transformers import logging
logging.set_verbosity_error()Code-Along
We’ll build Steps 1–3 below together.
There are a couple of small “your turn” fill-ins along the way that you can work on after the code-along.
Step 1: Load the data
We’ll use a curated sample of survey responses from RW3D:
Participants of this study wrote about how the COVID-19 situation made them feel, and also self-reported a number of emotions regarding their current situation. They also reported which emotion best fit their current situation.
To keep this workshop focused, we’ll only look at three of those emotions: anger, fear, and sadness.
First, let’s load the data and take a look at the dataset.
In [2]:
import pandas as pd
DATA_URL = "https://raw.githubusercontent.com/felixdidi/llm-content-analysis/main/sections/workshop/data/rw3d_workshop_sample.csv"
df = pd.read_csv(DATA_URL)
df.head()| id | text | main_emotion | anger | fear | sadness | |
|---|---|---|---|---|---|---|
| 0 | 1 | Stressed and uninformed. Don't feel enough is ... | anger | 9 | 1 | 6 |
| 1 | 2 | I feel worried about the virus, burnout about ... | fear | 8 | 9 | 7 |
| 2 | 3 | Disgusted how unprotected NHS staff are and ho... | sadness | 2 | 6 | 7 |
| 3 | 4 | I am not too worried about the situation as I ... | sadness | 1 | 3 | 6 |
| 4 | 5 | I'm finding the Corona situation quite dauntin... | sadness | 5 | 2 | 7 |
Your turn
Before we classify anything, get a feel for the data yourself. Use the code below to output a random text. Then guess how the writer would score their anger, fear, and sadness in that situation (on a scale from 1-9). Run the next cell to reveal their self-reported scores. Change random_state (any whole number) and re-run both cells to look at a different sample.
In [3]:
random_state = 42 # TODO: try a different number
sample = df.sample(1, random_state=random_state)
for i, (_, row) in enumerate(sample.iterrows()):
print(f"{row['text']}\n")I think lockdown should of been earlier.I also feel very angry because you still see people doing there own thing walking together in large groups, going to the corner shop about 4 times a day, it’s like people haven’t got common sense. I think it should be more strict about the lockdown. We should of took more precautions from the start. Greedy people at the supermarkets going crazy and not thinking about others. Starting arguments with the staff Who are putting themselves at risk so everyone can eat.
Now reveal the self-reported scores for the same texts. Do any surprise you?
In [4]:
for i, (_, row) in enumerate(sample.iterrows()):
print(f"anger={row['anger']} fear={row['fear']} sadness={row['sadness']}")anger=9 fear=7 sadness=7
Step 2: A category-specific encoder model
We’ll use SamLowe/roberta-base-go_emotions, a RoBERTa model fine-tuned on the GoEmotions dataset (58k Reddit comments, 27 emotions + neutral) — the most-used GoEmotions classifier on Hugging Face. This is a category-specific model: it was trained once, on one fixed set of labels, and can’t be repurposed for a different category set.
Loading and running the model on all texts may take some time.
In [5]:
from transformers import pipeline
emotion_classifier = pipeline("text-classification",
model="SamLowe/roberta-base-go_emotions",
top_k=None,
truncation=True)
roberta_result = emotion_classifier(df['text'].tolist())
print(roberta_result)[[{'label': 'neutral', 'score': 0.2796855866909027}, {'label': 'annoyance', 'score': 0.19895429909229279}, {'label': 'disappointment', 'score': 0.16908793151378632}, {'label': 'disapproval', 'score': 0.13395455479621887}, {'label': 'caring', 'score': 0.05736778303980827}, {'label': 'nervousness', 'score': 0.046767707914114}, {'label': 'confusion', 'score': 0.04633067175745964}, {'label': 'sadness', 'score': 0.032466281205415726}, {'label': 'fear', 'score': 0.03179943189024925}, {'label': 'curiosity', 'score': 0.027865799143910408}, {'label': 'anger', 'score': 0.0199977308511734}, {'label': 'realization', 'score': 0.019621165469288826}, {'label': 'optimism', 'score': 0.016570573672652245}, {'label': 'approval', 'score': 0.01574031636118889}, {'label': 'embarrassment', 'score': 0.005637451075017452}, {'label': 'disgust', 'score': 0.0042048608884215355}, {'label': 'desire', 'score': 0.0032476100604981184}, {'label': 'remorse', 'score': 0.0027027681935578585}, {'label': 'surprise', 'score': 0.0024243537336587906}, {'label': 'grief', 'score': 0.0020634247921407223}, {'label': 'relief', 'score': 0.0017792932922020555}, {'label': 'admiration', 'score': 0.0012004622258245945}, {'label': 'joy', 'score': 0.0009229936986230314}, {'label': 'excitement', 'score': 0.0009052972891367972}, {'label': 'love', 'score': 0.0008158560376614332}, {'label': 'amusement', 'score': 0.0005410216399468482}, {'label': 'pride', 'score': 0.0004316858248785138}, {'label': 'gratitude', 'score': 0.0003724792622961104}], [{'label': 'nervousness', 'score': 0.4937116503715515}, {'label': 'sadness', 'score': 0.20112736523151398}, {'label': 'caring', 'score': 0.19980834424495697}, {'label': 'fear', 'score': 0.16357408463954926}, {'label': 'neutral', 'score': 0.04459688812494278}, {'label': 'disappointment', 'score': 0.03540550172328949}, {'label': 'approval', 'score': 0.029472321271896362}, {'label': 'realization', 'score': 0.025270095095038414}, {'label': 'confusion', 'score': 0.020281516015529633}, {'label': 'joy', 'score': 0.016239380463957787}, {'label': 'relief', 'score': 0.014677489176392555}, {'label': 'admiration', 'score': 0.011941565200686455}, {'label': 'optimism', 'score': 0.01154688373208046}, {'label': 'curiosity', 'score': 0.01101028360426426}, {'label': 'annoyance', 'score': 0.010351080447435379}, {'label': 'love', 'score': 0.010052790865302086}, {'label': 'grief', 'score': 0.010006038472056389}, {'label': 'remorse', 'score': 0.00884858425706625}, {'label': 'excitement', 'score': 0.008750991895794868}, {'label': 'disapproval', 'score': 0.008383945561945438}, {'label': 'desire', 'score': 0.00740642799064517}, {'label': 'amusement', 'score': 0.003777801524847746}, {'label': 'anger', 'score': 0.003129851073026657}, {'label': 'surprise', 'score': 0.0030784679111093283}, {'label': 'embarrassment', 'score': 0.00306686875410378}, {'label': 'gratitude', 'score': 0.0025617601349949837}, {'label': 'disgust', 'score': 0.0020788873080164194}, {'label': 'pride', 'score': 0.0019343080930411816}], [{'label': 'sadness', 'score': 0.6997042894363403}, {'label': 'disappointment', 'score': 0.4073759913444519}, {'label': 'annoyance', 'score': 0.03802889958024025}, {'label': 'anger', 'score': 0.019548915326595306}, {'label': 'disapproval', 'score': 0.018639566376805305}, {'label': 'neutral', 'score': 0.0170254185795784}, {'label': 'grief', 'score': 0.011795377358794212}, {'label': 'disgust', 'score': 0.011640534736216068}, {'label': 'remorse', 'score': 0.009363269433379173}, {'label': 'realization', 'score': 0.008503781631588936}, {'label': 'admiration', 'score': 0.007704821415245533}, {'label': 'curiosity', 'score': 0.007420648820698261}, {'label': 'embarrassment', 'score': 0.006713522598147392}, {'label': 'approval', 'score': 0.006357395555824041}, {'label': 'confusion', 'score': 0.0058402069844305515}, {'label': 'love', 'score': 0.005263633094727993}, {'label': 'nervousness', 'score': 0.005262719001621008}, {'label': 'surprise', 'score': 0.0048915548250079155}, {'label': 'fear', 'score': 0.004591744393110275}, {'label': 'caring', 'score': 0.002989542670547962}, {'label': 'optimism', 'score': 0.0022532918956130743}, {'label': 'desire', 'score': 0.0019629315938800573}, {'label': 'joy', 'score': 0.0018600932089611888}, {'label': 'excitement', 'score': 0.001423523062840104}, {'label': 'amusement', 'score': 0.0012960408348590136}, {'label': 'gratitude', 'score': 0.0011226594215258956}, {'label': 'relief', 'score': 0.0009414957603439689}, {'label': 'pride', 'score': 0.00039383943658322096}], [{'label': 'sadness', 'score': 0.3861309885978699}, {'label': 'nervousness', 'score': 0.15343503654003143}, {'label': 'caring', 'score': 0.11924678832292557}, {'label': 'disappointment', 'score': 0.07302751392126083}, {'label': 'joy', 'score': 0.06627411395311356}, {'label': 'approval', 'score': 0.04611239582300186}, {'label': 'relief', 'score': 0.03507017344236374}, {'label': 'annoyance', 'score': 0.029960643500089645}, {'label': 'realization', 'score': 0.02774573490023613}, {'label': 'neutral', 'score': 0.02702505700290203}, {'label': 'admiration', 'score': 0.014915315434336662}, {'label': 'fear', 'score': 0.014743373729288578}, {'label': 'grief', 'score': 0.012078994885087013}, {'label': 'disapproval', 'score': 0.009945706464350224}, {'label': 'remorse', 'score': 0.009394360706210136}, {'label': 'optimism', 'score': 0.007673960644751787}, {'label': 'excitement', 'score': 0.006573749240487814}, {'label': 'confusion', 'score': 0.00615197466686368}, {'label': 'gratitude', 'score': 0.005115721374750137}, {'label': 'curiosity', 'score': 0.004628377966582775}, {'label': 'desire', 'score': 0.0045069013722240925}, {'label': 'anger', 'score': 0.004323310684412718}, {'label': 'love', 'score': 0.003989129792898893}, {'label': 'amusement', 'score': 0.0038233939558267593}, {'label': 'pride', 'score': 0.0036727096885442734}, {'label': 'embarrassment', 'score': 0.0032651720102876425}, {'label': 'disgust', 'score': 0.001783123705536127}, {'label': 'surprise', 'score': 0.0017026745481416583}], [{'label': 'sadness', 'score': 0.6898024678230286}, {'label': 'caring', 'score': 0.2943911552429199}, {'label': 'optimism', 'score': 0.18207576870918274}, {'label': 'disappointment', 'score': 0.094024159014225}, {'label': 'desire', 'score': 0.05942098796367645}, {'label': 'admiration', 'score': 0.058560192584991455}, {'label': 'grief', 'score': 0.04419439658522606}, {'label': 'nervousness', 'score': 0.03526446968317032}, {'label': 'fear', 'score': 0.03260251134634018}, {'label': 'remorse', 'score': 0.029308756813406944}, {'label': 'approval', 'score': 0.02824058197438717}, {'label': 'disapproval', 'score': 0.016672175377607346}, {'label': 'neutral', 'score': 0.015474527142941952}, {'label': 'gratitude', 'score': 0.014701885171234608}, {'label': 'relief', 'score': 0.013284141197800636}, {'label': 'realization', 'score': 0.012168966233730316}, {'label': 'love', 'score': 0.011872208677232265}, {'label': 'joy', 'score': 0.011022512800991535}, {'label': 'annoyance', 'score': 0.00927818100899458}, {'label': 'excitement', 'score': 0.008287047035992146}, {'label': 'curiosity', 'score': 0.007731033954769373}, {'label': 'confusion', 'score': 0.005515594966709614}, {'label': 'anger', 'score': 0.004517922177910805}, {'label': 'pride', 'score': 0.004181872587651014}, {'label': 'surprise', 'score': 0.004166307393461466}, {'label': 'disgust', 'score': 0.0026747887022793293}, {'label': 'embarrassment', 'score': 0.0015313172480091453}, {'label': 'amusement', 'score': 0.00125503062736243}], [{'label': 'optimism', 'score': 0.862289547920227}, {'label': 'neutral', 'score': 0.11261327564716339}, {'label': 'approval', 'score': 0.07706096023321152}, {'label': 'desire', 'score': 0.0650177150964737}, {'label': 'caring', 'score': 0.055178627371788025}, {'label': 'disapproval', 'score': 0.017431389540433884}, {'label': 'realization', 'score': 0.01610005646944046}, {'label': 'disappointment', 'score': 0.013446617871522903}, {'label': 'admiration', 'score': 0.012270818464457989}, {'label': 'annoyance', 'score': 0.00657472712919116}, {'label': 'gratitude', 'score': 0.0062137264758348465}, {'label': 'remorse', 'score': 0.004453740082681179}, {'label': 'sadness', 'score': 0.0036548629868775606}, {'label': 'confusion', 'score': 0.0034599099308252335}, {'label': 'love', 'score': 0.0030883646104484797}, {'label': 'joy', 'score': 0.002603603759780526}, {'label': 'pride', 'score': 0.0022068656980991364}, {'label': 'relief', 'score': 0.0021542778704315424}, {'label': 'fear', 'score': 0.002066052984446287}, {'label': 'excitement', 'score': 0.0017829523421823978}, {'label': 'curiosity', 'score': 0.0016286208992823958}, {'label': 'anger', 'score': 0.0015391060151159763}, {'label': 'nervousness', 'score': 0.00112281390465796}, {'label': 'disgust', 'score': 0.001105945324525237}, {'label': 'surprise', 'score': 0.0010665719164535403}, {'label': 'amusement', 'score': 0.0009944119956344366}, {'label': 'grief', 'score': 0.0008373711025342345}, {'label': 'embarrassment', 'score': 0.0006294510676525533}], [{'label': 'sadness', 'score': 0.6808575391769409}, {'label': 'fear', 'score': 0.10027746856212616}, {'label': 'nervousness', 'score': 0.08735312521457672}, {'label': 'disappointment', 'score': 0.08113503456115723}, {'label': 'caring', 'score': 0.05304546281695366}, {'label': 'neutral', 'score': 0.04775950685143471}, {'label': 'realization', 'score': 0.02070646919310093}, {'label': 'approval', 'score': 0.01950356736779213}, {'label': 'grief', 'score': 0.01940382644534111}, {'label': 'annoyance', 'score': 0.017428850755095482}, {'label': 'disapproval', 'score': 0.010172422975301743}, {'label': 'anger', 'score': 0.007877306081354618}, {'label': 'remorse', 'score': 0.007227807771414518}, {'label': 'optimism', 'score': 0.006429649889469147}, {'label': 'admiration', 'score': 0.005182494875043631}, {'label': 'confusion', 'score': 0.005009279120713472}, {'label': 'love', 'score': 0.0049886517226696014}, {'label': 'relief', 'score': 0.004416612908244133}, {'label': 'joy', 'score': 0.0042971717193722725}, {'label': 'curiosity', 'score': 0.0036654253490269184}, {'label': 'disgust', 'score': 0.0033577715512365103}, {'label': 'desire', 'score': 0.0032628525514155626}, {'label': 'embarrassment', 'score': 0.0022091350983828306}, {'label': 'amusement', 'score': 0.0020476174540817738}, {'label': 'surprise', 'score': 0.0019358607241883874}, {'label': 'excitement', 'score': 0.0017524233553558588}, {'label': 'gratitude', 'score': 0.0013093544403091073}, {'label': 'pride', 'score': 0.0007940631476230919}], [{'label': 'sadness', 'score': 0.4025215208530426}, {'label': 'disappointment', 'score': 0.24077166616916656}, {'label': 'nervousness', 'score': 0.12574556469917297}, {'label': 'annoyance', 'score': 0.04487654194235802}, {'label': 'neutral', 'score': 0.04105928912758827}, {'label': 'caring', 'score': 0.031168702989816666}, {'label': 'realization', 'score': 0.021041613072156906}, {'label': 'approval', 'score': 0.01849489100277424}, {'label': 'fear', 'score': 0.015974614769220352}, {'label': 'disapproval', 'score': 0.01354749035090208}, {'label': 'joy', 'score': 0.010161683894693851}, {'label': 'relief', 'score': 0.007073336746543646}, {'label': 'remorse', 'score': 0.006929720286279917}, {'label': 'grief', 'score': 0.006608815398067236}, {'label': 'confusion', 'score': 0.0063355169259011745}, {'label': 'desire', 'score': 0.0059074414893984795}, {'label': 'optimism', 'score': 0.005806833039969206}, {'label': 'anger', 'score': 0.004999957047402859}, {'label': 'admiration', 'score': 0.004730247892439365}, {'label': 'love', 'score': 0.004159730859100819}, {'label': 'curiosity', 'score': 0.00370434089563787}, {'label': 'excitement', 'score': 0.0033223440404981375}, {'label': 'embarrassment', 'score': 0.003222501138225198}, {'label': 'disgust', 'score': 0.0026099588721990585}, {'label': 'amusement', 'score': 0.0019019300816580653}, {'label': 'surprise', 'score': 0.0017069627065211535}, {'label': 'gratitude', 'score': 0.0010732710361480713}, {'label': 'pride', 'score': 0.000984961399808526}], [{'label': 'fear', 'score': 0.8167902827262878}, {'label': 'nervousness', 'score': 0.31185421347618103}, {'label': 'sadness', 'score': 0.08662103116512299}, {'label': 'neutral', 'score': 0.033833131194114685}, {'label': 'caring', 'score': 0.026609765365719795}, {'label': 'disappointment', 'score': 0.026130294427275658}, {'label': 'realization', 'score': 0.024135395884513855}, {'label': 'approval', 'score': 0.017997032031416893}, {'label': 'confusion', 'score': 0.016390720382332802}, {'label': 'admiration', 'score': 0.01097887847572565}, {'label': 'optimism', 'score': 0.010588412173092365}, {'label': 'joy', 'score': 0.010320385918021202}, {'label': 'love', 'score': 0.009825735352933407}, {'label': 'annoyance', 'score': 0.00967680849134922}, {'label': 'disapproval', 'score': 0.00965510867536068}, {'label': 'excitement', 'score': 0.009427642449736595}, {'label': 'curiosity', 'score': 0.008087909780442715}, {'label': 'grief', 'score': 0.007614923175424337}, {'label': 'desire', 'score': 0.007541649509221315}, {'label': 'surprise', 'score': 0.007141856011003256}, {'label': 'disgust', 'score': 0.005845486652106047}, {'label': 'relief', 'score': 0.005616567563265562}, {'label': 'amusement', 'score': 0.004960249178111553}, {'label': 'anger', 'score': 0.004877680446952581}, {'label': 'embarrassment', 'score': 0.004247322678565979}, {'label': 'remorse', 'score': 0.0032512531615793705}, {'label': 'gratitude', 'score': 0.002199372975155711}, {'label': 'pride', 'score': 0.0014455292839556932}], [{'label': 'sadness', 'score': 0.6065585017204285}, {'label': 'disappointment', 'score': 0.18773072957992554}, {'label': 'nervousness', 'score': 0.06258010864257812}, {'label': 'annoyance', 'score': 0.060354020446538925}, {'label': 'neutral', 'score': 0.038023464381694794}, {'label': 'realization', 'score': 0.01891864649951458}, {'label': 'approval', 'score': 0.014656877145171165}, {'label': 'caring', 'score': 0.014593491330742836}, {'label': 'fear', 'score': 0.012614093720912933}, {'label': 'anger', 'score': 0.011969558894634247}, {'label': 'disapproval', 'score': 0.010077130980789661}, {'label': 'grief', 'score': 0.009367958642542362}, {'label': 'joy', 'score': 0.008729496039450169}, {'label': 'remorse', 'score': 0.005126972682774067}, {'label': 'disgust', 'score': 0.0043703485280275345}, {'label': 'desire', 'score': 0.004216086585074663}, {'label': 'confusion', 'score': 0.004156958311796188}, {'label': 'love', 'score': 0.004005287308245897}, {'label': 'relief', 'score': 0.0037662277463823557}, {'label': 'curiosity', 'score': 0.003641340881586075}, {'label': 'embarrassment', 'score': 0.0034550712443888187}, {'label': 'admiration', 'score': 0.003403899958357215}, {'label': 'excitement', 'score': 0.002825310220941901}, {'label': 'optimism', 'score': 0.0019933225121349096}, {'label': 'surprise', 'score': 0.0016915985615924}, {'label': 'amusement', 'score': 0.001611308311112225}, {'label': 'pride', 'score': 0.0008573331288062036}, {'label': 'gratitude', 'score': 0.0008563068695366383}], [{'label': 'sadness', 'score': 0.4538821280002594}, {'label': 'disappointment', 'score': 0.36570480465888977}, {'label': 'desire', 'score': 0.20306305587291718}, {'label': 'annoyance', 'score': 0.06093757972121239}, {'label': 'neutral', 'score': 0.0527820810675621}, {'label': 'nervousness', 'score': 0.02528206631541252}, {'label': 'disapproval', 'score': 0.021557679399847984}, {'label': 'realization', 'score': 0.018316103145480156}, {'label': 'optimism', 'score': 0.013416225090622902}, {'label': 'disgust', 'score': 0.010131927207112312}, {'label': 'fear', 'score': 0.009647742845118046}, {'label': 'anger', 'score': 0.009500136598944664}, {'label': 'approval', 'score': 0.009102039970457554}, {'label': 'grief', 'score': 0.007829571142792702}, {'label': 'caring', 'score': 0.007759611122310162}, {'label': 'remorse', 'score': 0.006817100569605827}, {'label': 'love', 'score': 0.006617398466914892}, {'label': 'joy', 'score': 0.006075785495340824}, {'label': 'excitement', 'score': 0.004240872338414192}, {'label': 'curiosity', 'score': 0.004201699048280716}, {'label': 'confusion', 'score': 0.00412708567455411}, {'label': 'embarrassment', 'score': 0.0034376659896224737}, {'label': 'surprise', 'score': 0.0032870955765247345}, {'label': 'relief', 'score': 0.002804115880280733}, {'label': 'admiration', 'score': 0.0020957442466169596}, {'label': 'amusement', 'score': 0.0017644503386691213}, {'label': 'pride', 'score': 0.0008719715406186879}, {'label': 'gratitude', 'score': 0.0008029795135371387}], [{'label': 'annoyance', 'score': 0.7322984933853149}, {'label': 'disapproval', 'score': 0.11315315216779709}, {'label': 'neutral', 'score': 0.10084610432386398}, {'label': 'confusion', 'score': 0.0918584018945694}, {'label': 'disappointment', 'score': 0.08743886649608612}, {'label': 'anger', 'score': 0.0802258774638176}, {'label': 'approval', 'score': 0.0652298629283905}, {'label': 'realization', 'score': 0.02515331655740738}, {'label': 'curiosity', 'score': 0.016378862783312798}, {'label': 'disgust', 'score': 0.012552205473184586}, {'label': 'optimism', 'score': 0.009650003165006638}, {'label': 'embarrassment', 'score': 0.008621728047728539}, {'label': 'nervousness', 'score': 0.005108036566525698}, {'label': 'caring', 'score': 0.004944702610373497}, {'label': 'desire', 'score': 0.003415459068492055}, {'label': 'joy', 'score': 0.0033976633567363024}, {'label': 'sadness', 'score': 0.002879841485992074}, {'label': 'admiration', 'score': 0.002686904277652502}, {'label': 'surprise', 'score': 0.002436940325424075}, {'label': 'excitement', 'score': 0.0023133745416998863}, {'label': 'amusement', 'score': 0.0018430390628054738}, {'label': 'fear', 'score': 0.0018297525821253657}, {'label': 'relief', 'score': 0.001787680434063077}, {'label': 'gratitude', 'score': 0.001410502940416336}, {'label': 'pride', 'score': 0.0012496344279497862}, {'label': 'remorse', 'score': 0.0011802662629634142}, {'label': 'grief', 'score': 0.0006561823538504541}, {'label': 'love', 'score': 0.0005122286383993924}], [{'label': 'fear', 'score': 0.39604416489601135}, {'label': 'sadness', 'score': 0.3726145029067993}, {'label': 'nervousness', 'score': 0.3441014289855957}, {'label': 'disappointment', 'score': 0.061493560671806335}, {'label': 'realization', 'score': 0.0313965380191803}, {'label': 'joy', 'score': 0.028815463185310364}, {'label': 'neutral', 'score': 0.024853108450770378}, {'label': 'caring', 'score': 0.022412408143281937}, {'label': 'approval', 'score': 0.01854911632835865}, {'label': 'annoyance', 'score': 0.01710538938641548}, {'label': 'grief', 'score': 0.013663601130247116}, {'label': 'disapproval', 'score': 0.00987948663532734}, {'label': 'amusement', 'score': 0.009657224640250206}, {'label': 'excitement', 'score': 0.009244648739695549}, {'label': 'admiration', 'score': 0.009070303291082382}, {'label': 'relief', 'score': 0.008994302712380886}, {'label': 'confusion', 'score': 0.00890355370938778}, {'label': 'love', 'score': 0.006491919048130512}, {'label': 'disgust', 'score': 0.005934905260801315}, {'label': 'optimism', 'score': 0.005395017098635435}, {'label': 'anger', 'score': 0.00499103544279933}, {'label': 'desire', 'score': 0.004989870823919773}, {'label': 'embarrassment', 'score': 0.004974029026925564}, {'label': 'surprise', 'score': 0.0048454394564032555}, {'label': 'curiosity', 'score': 0.004528569523245096}, {'label': 'remorse', 'score': 0.0037744503933936357}, {'label': 'pride', 'score': 0.0017659803852438927}, {'label': 'gratitude', 'score': 0.001191940507851541}], [{'label': 'nervousness', 'score': 0.555311381816864}, {'label': 'fear', 'score': 0.19441306591033936}, {'label': 'caring', 'score': 0.15056152641773224}, {'label': 'confusion', 'score': 0.139543816447258}, {'label': 'approval', 'score': 0.11517634242773056}, {'label': 'realization', 'score': 0.06632111966609955}, {'label': 'sadness', 'score': 0.056238383054733276}, {'label': 'neutral', 'score': 0.04146342724561691}, {'label': 'joy', 'score': 0.02955949492752552}, {'label': 'disappointment', 'score': 0.02579740807414055}, {'label': 'curiosity', 'score': 0.021801834926009178}, {'label': 'admiration', 'score': 0.020905643701553345}, {'label': 'relief', 'score': 0.02078031562268734}, {'label': 'disapproval', 'score': 0.017673563212156296}, {'label': 'optimism', 'score': 0.01619931496679783}, {'label': 'annoyance', 'score': 0.014303149655461311}, {'label': 'excitement', 'score': 0.012323923408985138}, {'label': 'love', 'score': 0.01052945852279663}, {'label': 'remorse', 'score': 0.008448031730949879}, {'label': 'desire', 'score': 0.006612081080675125}, {'label': 'grief', 'score': 0.006095149554312229}, {'label': 'embarrassment', 'score': 0.004800877533853054}, {'label': 'anger', 'score': 0.003968995995819569}, {'label': 'amusement', 'score': 0.0034517680760473013}, {'label': 'pride', 'score': 0.0034501689951866865}, {'label': 'surprise', 'score': 0.0031946415547281504}, {'label': 'gratitude', 'score': 0.0027941588778048754}, {'label': 'disgust', 'score': 0.001946466276422143}], [{'label': 'sadness', 'score': 0.5783472061157227}, {'label': 'nervousness', 'score': 0.1903030276298523}, {'label': 'disappointment', 'score': 0.1204274445772171}, {'label': 'caring', 'score': 0.03799688443541527}, {'label': 'neutral', 'score': 0.03189903125166893}, {'label': 'fear', 'score': 0.02693510800600052}, {'label': 'realization', 'score': 0.02266073413193226}, {'label': 'approval', 'score': 0.021355170756578445}, {'label': 'annoyance', 'score': 0.018988648429512978}, {'label': 'joy', 'score': 0.013872985728085041}, {'label': 'grief', 'score': 0.012038270011544228}, {'label': 'confusion', 'score': 0.011508431285619736}, {'label': 'remorse', 'score': 0.009743205271661282}, {'label': 'disapproval', 'score': 0.009305018000304699}, {'label': 'relief', 'score': 0.00811180379241705}, {'label': 'curiosity', 'score': 0.007845953106880188}, {'label': 'desire', 'score': 0.007370209787040949}, {'label': 'love', 'score': 0.006813372951000929}, {'label': 'admiration', 'score': 0.006482763681560755}, {'label': 'excitement', 'score': 0.0060829599387943745}, {'label': 'optimism', 'score': 0.003939589019864798}, {'label': 'anger', 'score': 0.003596374997869134}, {'label': 'embarrassment', 'score': 0.0031323437578976154}, {'label': 'amusement', 'score': 0.002782287308946252}, {'label': 'disgust', 'score': 0.002291058888658881}, {'label': 'surprise', 'score': 0.0022797011770308018}, {'label': 'gratitude', 'score': 0.0013717610854655504}, {'label': 'pride', 'score': 0.0011025769636034966}], [{'label': 'sadness', 'score': 0.643576443195343}, {'label': 'disappointment', 'score': 0.32462000846862793}, {'label': 'nervousness', 'score': 0.08365834504365921}, {'label': 'annoyance', 'score': 0.04378151148557663}, {'label': 'confusion', 'score': 0.03131604567170143}, {'label': 'curiosity', 'score': 0.02629445679485798}, {'label': 'neutral', 'score': 0.025750866159796715}, {'label': 'fear', 'score': 0.01944557949900627}, {'label': 'realization', 'score': 0.018064670264720917}, {'label': 'caring', 'score': 0.016575120389461517}, {'label': 'disapproval', 'score': 0.015534361824393272}, {'label': 'approval', 'score': 0.014244918711483479}, {'label': 'grief', 'score': 0.011866901069879532}, {'label': 'remorse', 'score': 0.00853049848228693}, {'label': 'joy', 'score': 0.008137018419802189}, {'label': 'optimism', 'score': 0.007833980955183506}, {'label': 'anger', 'score': 0.007723564747720957}, {'label': 'desire', 'score': 0.006608311552554369}, {'label': 'admiration', 'score': 0.004219106398522854}, {'label': 'excitement', 'score': 0.004065376240760088}, {'label': 'surprise', 'score': 0.004043960012495518}, {'label': 'relief', 'score': 0.003982228692620993}, {'label': 'embarrassment', 'score': 0.0038163261488080025}, {'label': 'love', 'score': 0.0037437179125845432}, {'label': 'disgust', 'score': 0.003415395738556981}, {'label': 'amusement', 'score': 0.0020734556019306183}, {'label': 'gratitude', 'score': 0.0007352620596066117}, {'label': 'pride', 'score': 0.0006047220667824149}], [{'label': 'disappointment', 'score': 0.6614924669265747}, {'label': 'annoyance', 'score': 0.25324782729148865}, {'label': 'sadness', 'score': 0.12947745621204376}, {'label': 'neutral', 'score': 0.06449347734451294}, {'label': 'realization', 'score': 0.052222371101379395}, {'label': 'disapproval', 'score': 0.04826786741614342}, {'label': 'nervousness', 'score': 0.038261111825704575}, {'label': 'approval', 'score': 0.023796694353222847}, {'label': 'anger', 'score': 0.020777467638254166}, {'label': 'surprise', 'score': 0.013109876774251461}, {'label': 'embarrassment', 'score': 0.010924387723207474}, {'label': 'fear', 'score': 0.008919031359255314}, {'label': 'confusion', 'score': 0.008570740930736065}, {'label': 'optimism', 'score': 0.008476394228637218}, {'label': 'relief', 'score': 0.006372724659740925}, {'label': 'joy', 'score': 0.006244803313165903}, {'label': 'caring', 'score': 0.00594458170235157}, {'label': 'curiosity', 'score': 0.005677254404872656}, {'label': 'disgust', 'score': 0.004448459949344397}, {'label': 'grief', 'score': 0.004320438019931316}, {'label': 'excitement', 'score': 0.004220689181238413}, {'label': 'remorse', 'score': 0.00398330669850111}, {'label': 'desire', 'score': 0.0037402785383164883}, {'label': 'admiration', 'score': 0.0032490829471498728}, {'label': 'love', 'score': 0.0023846307303756475}, {'label': 'pride', 'score': 0.0013640663819387555}, {'label': 'amusement', 'score': 0.0010284044547006488}, {'label': 'gratitude', 'score': 0.0007043583318591118}], [{'label': 'sadness', 'score': 0.7633078098297119}, {'label': 'desire', 'score': 0.18700800836086273}, {'label': 'disappointment', 'score': 0.11140494793653488}, {'label': 'neutral', 'score': 0.07226502895355225}, {'label': 'caring', 'score': 0.03006143681704998}, {'label': 'annoyance', 'score': 0.01955045573413372}, {'label': 'grief', 'score': 0.018013939261436462}, {'label': 'approval', 'score': 0.013414117507636547}, {'label': 'remorse', 'score': 0.0113929882645607}, {'label': 'disapproval', 'score': 0.011368186213076115}, {'label': 'realization', 'score': 0.010647195391356945}, {'label': 'nervousness', 'score': 0.009238122031092644}, {'label': 'love', 'score': 0.009089541621506214}, {'label': 'optimism', 'score': 0.007372034247964621}, {'label': 'curiosity', 'score': 0.006491039413958788}, {'label': 'disgust', 'score': 0.005802586674690247}, {'label': 'anger', 'score': 0.005483066663146019}, {'label': 'admiration', 'score': 0.004961362574249506}, {'label': 'joy', 'score': 0.004906364716589451}, {'label': 'fear', 'score': 0.0033938304986804724}, {'label': 'excitement', 'score': 0.002735595218837261}, {'label': 'confusion', 'score': 0.0025194413028657436}, {'label': 'relief', 'score': 0.0024994644336402416}, {'label': 'amusement', 'score': 0.0019362947205081582}, {'label': 'surprise', 'score': 0.001768387039192021}, {'label': 'embarrassment', 'score': 0.0016371875535696745}, {'label': 'gratitude', 'score': 0.001429340336471796}, {'label': 'pride', 'score': 0.0007130916346795857}], [{'label': 'nervousness', 'score': 0.590307354927063}, {'label': 'fear', 'score': 0.42197176814079285}, {'label': 'sadness', 'score': 0.18641911447048187}, {'label': 'caring', 'score': 0.11513113975524902}, {'label': 'confusion', 'score': 0.06426913291215897}, {'label': 'disappointment', 'score': 0.04381467401981354}, {'label': 'approval', 'score': 0.03632769733667374}, {'label': 'realization', 'score': 0.0326334610581398}, {'label': 'neutral', 'score': 0.030536916106939316}, {'label': 'curiosity', 'score': 0.029120050370693207}, {'label': 'joy', 'score': 0.016713477671146393}, {'label': 'love', 'score': 0.014728032983839512}, {'label': 'annoyance', 'score': 0.013484270311892033}, {'label': 'optimism', 'score': 0.013390864245593548}, {'label': 'admiration', 'score': 0.012913226149976254}, {'label': 'remorse', 'score': 0.011887107975780964}, {'label': 'relief', 'score': 0.011583726853132248}, {'label': 'disapproval', 'score': 0.011435166001319885}, {'label': 'grief', 'score': 0.011005263775587082}, {'label': 'excitement', 'score': 0.009215615689754486}, {'label': 'embarrassment', 'score': 0.005785060580819845}, {'label': 'anger', 'score': 0.005634637083858252}, {'label': 'desire', 'score': 0.005441274493932724}, {'label': 'amusement', 'score': 0.0046524726785719395}, {'label': 'surprise', 'score': 0.004255124367773533}, {'label': 'gratitude', 'score': 0.0027324866969138384}, {'label': 'disgust', 'score': 0.002691587433218956}, {'label': 'pride', 'score': 0.0017854651669040322}], [{'label': 'sadness', 'score': 0.575961172580719}, {'label': 'fear', 'score': 0.2768997848033905}, {'label': 'nervousness', 'score': 0.23610274493694305}, {'label': 'gratitude', 'score': 0.1406220942735672}, {'label': 'caring', 'score': 0.10818035155534744}, {'label': 'admiration', 'score': 0.07318082451820374}, {'label': 'grief', 'score': 0.055667199194431305}, {'label': 'joy', 'score': 0.03736013546586037}, {'label': 'disappointment', 'score': 0.0360686220228672}, {'label': 'relief', 'score': 0.03310806676745415}, {'label': 'remorse', 'score': 0.028635647147893906}, {'label': 'approval', 'score': 0.027925007045269012}, {'label': 'realization', 'score': 0.023584026843309402}, {'label': 'love', 'score': 0.01928885467350483}, {'label': 'confusion', 'score': 0.01676291972398758}, {'label': 'excitement', 'score': 0.014898251742124557}, {'label': 'neutral', 'score': 0.012570037506520748}, {'label': 'curiosity', 'score': 0.01168697141110897}, {'label': 'annoyance', 'score': 0.008461910299956799}, {'label': 'pride', 'score': 0.006904942914843559}, {'label': 'surprise', 'score': 0.006708061788231134}, {'label': 'optimism', 'score': 0.006620950996875763}, {'label': 'disapproval', 'score': 0.006412009242922068}, {'label': 'desire', 'score': 0.006142585072666407}, {'label': 'anger', 'score': 0.0057702092453837395}, {'label': 'embarrassment', 'score': 0.0054613640531897545}, {'label': 'disgust', 'score': 0.004231251776218414}, {'label': 'amusement', 'score': 0.0035872566513717175}], [{'label': 'sadness', 'score': 0.7990764379501343}, {'label': 'disappointment', 'score': 0.12823522090911865}, {'label': 'joy', 'score': 0.03367110714316368}, {'label': 'grief', 'score': 0.025472404435276985}, {'label': 'approval', 'score': 0.02357197180390358}, {'label': 'annoyance', 'score': 0.02272212505340576}, {'label': 'admiration', 'score': 0.020582031458616257}, {'label': 'caring', 'score': 0.020194511860609055}, {'label': 'neutral', 'score': 0.01676013693213463}, {'label': 'remorse', 'score': 0.016307463869452477}, {'label': 'realization', 'score': 0.01575516350567341}, {'label': 'gratitude', 'score': 0.012011361308395863}, {'label': 'nervousness', 'score': 0.010318414308130741}, {'label': 'relief', 'score': 0.00933902245014906}, {'label': 'anger', 'score': 0.008944245986640453}, {'label': 'disapproval', 'score': 0.008211472071707249}, {'label': 'love', 'score': 0.006422443315386772}, {'label': 'curiosity', 'score': 0.003736978629603982}, {'label': 'confusion', 'score': 0.0034914910793304443}, {'label': 'desire', 'score': 0.0034445368219166994}, {'label': 'excitement', 'score': 0.0028439320158213377}, {'label': 'fear', 'score': 0.0025409262161701918}, {'label': 'embarrassment', 'score': 0.0024959701113402843}, {'label': 'disgust', 'score': 0.002349872374907136}, {'label': 'optimism', 'score': 0.002168316161260009}, {'label': 'amusement', 'score': 0.0018842482240870595}, {'label': 'pride', 'score': 0.0018175218719989061}, {'label': 'surprise', 'score': 0.001599743845872581}], [{'label': 'fear', 'score': 0.39935997128486633}, {'label': 'joy', 'score': 0.317365437746048}, {'label': 'nervousness', 'score': 0.21193744242191315}, {'label': 'annoyance', 'score': 0.09557714313268661}, {'label': 'confusion', 'score': 0.06556813418865204}, {'label': 'anger', 'score': 0.05953225493431091}, {'label': 'realization', 'score': 0.05073552206158638}, {'label': 'relief', 'score': 0.04926959052681923}, {'label': 'disappointment', 'score': 0.042584553360939026}, {'label': 'approval', 'score': 0.04203854128718376}, {'label': 'disapproval', 'score': 0.03733751177787781}, {'label': 'sadness', 'score': 0.033631570637226105}, {'label': 'caring', 'score': 0.022888794541358948}, {'label': 'optimism', 'score': 0.020093224942684174}, {'label': 'neutral', 'score': 0.01847231760621071}, {'label': 'excitement', 'score': 0.017891863361001015}, {'label': 'embarrassment', 'score': 0.009384886361658573}, {'label': 'surprise', 'score': 0.009174211882054806}, {'label': 'pride', 'score': 0.008564106188714504}, {'label': 'admiration', 'score': 0.007939992472529411}, {'label': 'grief', 'score': 0.007635807618498802}, {'label': 'amusement', 'score': 0.007617737632244825}, {'label': 'gratitude', 'score': 0.00730513222515583}, {'label': 'curiosity', 'score': 0.006086273584514856}, {'label': 'disgust', 'score': 0.005803948733955622}, {'label': 'desire', 'score': 0.004886697046458721}, {'label': 'love', 'score': 0.003266587620601058}, {'label': 'remorse', 'score': 0.0026071614120155573}], [{'label': 'fear', 'score': 0.7773869633674622}, {'label': 'nervousness', 'score': 0.2760620415210724}, {'label': 'sadness', 'score': 0.09778224676847458}, {'label': 'neutral', 'score': 0.04673687368631363}, {'label': 'disappointment', 'score': 0.02680405229330063}, {'label': 'realization', 'score': 0.0262327678501606}, {'label': 'approval', 'score': 0.024714503437280655}, {'label': 'caring', 'score': 0.02425456792116165}, {'label': 'admiration', 'score': 0.011754583567380905}, {'label': 'confusion', 'score': 0.011494298465549946}, {'label': 'joy', 'score': 0.009170589037239552}, {'label': 'annoyance', 'score': 0.009165529161691666}, {'label': 'disapproval', 'score': 0.00879807211458683}, {'label': 'optimism', 'score': 0.008305356837809086}, {'label': 'love', 'score': 0.008244437165558338}, {'label': 'grief', 'score': 0.00769734475761652}, {'label': 'excitement', 'score': 0.0074232835322618484}, {'label': 'disgust', 'score': 0.00603331346064806}, {'label': 'desire', 'score': 0.005948635283857584}, {'label': 'relief', 'score': 0.0057512493804097176}, {'label': 'curiosity', 'score': 0.0049614072777330875}, {'label': 'surprise', 'score': 0.00496023939922452}, {'label': 'amusement', 'score': 0.004100044257938862}, {'label': 'embarrassment', 'score': 0.003742450149729848}, {'label': 'anger', 'score': 0.0037382037844508886}, {'label': 'remorse', 'score': 0.0027479096315801144}, {'label': 'gratitude', 'score': 0.0017476052744314075}, {'label': 'pride', 'score': 0.00151925440877676}], [{'label': 'fear', 'score': 0.7166822552680969}, {'label': 'sadness', 'score': 0.34841325879096985}, {'label': 'nervousness', 'score': 0.2800951898097992}, {'label': 'optimism', 'score': 0.12749162316322327}, {'label': 'caring', 'score': 0.09907564520835876}, {'label': 'disappointment', 'score': 0.0611579529941082}, {'label': 'realization', 'score': 0.02949603833258152}, {'label': 'desire', 'score': 0.02595493383705616}, {'label': 'grief', 'score': 0.020837193354964256}, {'label': 'approval', 'score': 0.01912083476781845}, {'label': 'neutral', 'score': 0.01615842804312706}, {'label': 'surprise', 'score': 0.015547829680144787}, {'label': 'annoyance', 'score': 0.012667352333664894}, {'label': 'disapproval', 'score': 0.012341591529548168}, {'label': 'confusion', 'score': 0.011152728460729122}, {'label': 'admiration', 'score': 0.01098597887903452}, {'label': 'remorse', 'score': 0.010759811848402023}, {'label': 'love', 'score': 0.010465431027114391}, {'label': 'curiosity', 'score': 0.010162374004721642}, {'label': 'disgust', 'score': 0.009511886164546013}, {'label': 'joy', 'score': 0.008820650167763233}, {'label': 'excitement', 'score': 0.008558427914977074}, {'label': 'relief', 'score': 0.007886949926614761}, {'label': 'anger', 'score': 0.005952076055109501}, {'label': 'embarrassment', 'score': 0.0042749131098389626}, {'label': 'amusement', 'score': 0.0038401386700570583}, {'label': 'gratitude', 'score': 0.0024050064384937286}, {'label': 'pride', 'score': 0.002046264475211501}], [{'label': 'fear', 'score': 0.8166521191596985}, {'label': 'nervousness', 'score': 0.26390576362609863}, {'label': 'sadness', 'score': 0.05037790164351463}, {'label': 'love', 'score': 0.04613828659057617}, {'label': 'caring', 'score': 0.0352696031332016}, {'label': 'approval', 'score': 0.02889067865908146}, {'label': 'neutral', 'score': 0.02642780728638172}, {'label': 'realization', 'score': 0.026035558432340622}, {'label': 'disappointment', 'score': 0.024306250736117363}, {'label': 'annoyance', 'score': 0.021603768691420555}, {'label': 'confusion', 'score': 0.019945178180933}, {'label': 'anger', 'score': 0.016842694953083992}, {'label': 'disapproval', 'score': 0.01615869253873825}, {'label': 'admiration', 'score': 0.013703900389373302}, {'label': 'optimism', 'score': 0.01055472157895565}, {'label': 'disgust', 'score': 0.009794117882847786}, {'label': 'excitement', 'score': 0.008769876323640347}, {'label': 'joy', 'score': 0.008673460222780704}, {'label': 'curiosity', 'score': 0.006822035647928715}, {'label': 'desire', 'score': 0.006557135377079248}, {'label': 'surprise', 'score': 0.005692990496754646}, {'label': 'grief', 'score': 0.005498101003468037}, {'label': 'embarrassment', 'score': 0.005147631745785475}, {'label': 'relief', 'score': 0.004269527271389961}, {'label': 'amusement', 'score': 0.003073148662224412}, {'label': 'remorse', 'score': 0.003015595953911543}, {'label': 'gratitude', 'score': 0.0021833386272192}, {'label': 'pride', 'score': 0.001968416152521968}], [{'label': 'sadness', 'score': 0.4623960554599762}, {'label': 'caring', 'score': 0.3931431174278259}, {'label': 'optimism', 'score': 0.3117803633213043}, {'label': 'disappointment', 'score': 0.1522883027791977}, {'label': 'nervousness', 'score': 0.08461955934762955}, {'label': 'remorse', 'score': 0.054557666182518005}, {'label': 'desire', 'score': 0.05353416129946709}, {'label': 'approval', 'score': 0.030167223885655403}, {'label': 'fear', 'score': 0.025831403210759163}, {'label': 'grief', 'score': 0.02181118354201317}, {'label': 'admiration', 'score': 0.018968505784869194}, {'label': 'disapproval', 'score': 0.018903417512774467}, {'label': 'neutral', 'score': 0.018542064353823662}, {'label': 'relief', 'score': 0.01845344342291355}, {'label': 'joy', 'score': 0.017917193472385406}, {'label': 'confusion', 'score': 0.017406629398465157}, {'label': 'realization', 'score': 0.015354343689978123}, {'label': 'curiosity', 'score': 0.014616219326853752}, {'label': 'annoyance', 'score': 0.013154154643416405}, {'label': 'gratitude', 'score': 0.00875011831521988}, {'label': 'love', 'score': 0.007652146741747856}, {'label': 'excitement', 'score': 0.006206142716109753}, {'label': 'anger', 'score': 0.004398736637085676}, {'label': 'pride', 'score': 0.003603688906878233}, {'label': 'surprise', 'score': 0.003440020838752389}, {'label': 'embarrassment', 'score': 0.002331647090613842}, {'label': 'disgust', 'score': 0.0017163874581456184}, {'label': 'amusement', 'score': 0.001347371144220233}], [{'label': 'fear', 'score': 0.6046836376190186}, {'label': 'sadness', 'score': 0.3505077660083771}, {'label': 'nervousness', 'score': 0.2956220805644989}, {'label': 'disappointment', 'score': 0.04621988534927368}, {'label': 'caring', 'score': 0.029936159029603004}, {'label': 'neutral', 'score': 0.024182066321372986}, {'label': 'realization', 'score': 0.023620998486876488}, {'label': 'approval', 'score': 0.017358802258968353}, {'label': 'grief', 'score': 0.01663580909371376}, {'label': 'admiration', 'score': 0.01436805259436369}, {'label': 'love', 'score': 0.013771582394838333}, {'label': 'joy', 'score': 0.01178769301623106}, {'label': 'confusion', 'score': 0.010658432729542255}, {'label': 'annoyance', 'score': 0.008836816065013409}, {'label': 'disapproval', 'score': 0.007615769747644663}, {'label': 'excitement', 'score': 0.007594899274408817}, {'label': 'optimism', 'score': 0.0069262064062058926}, {'label': 'relief', 'score': 0.006474216468632221}, {'label': 'curiosity', 'score': 0.006346648558974266}, {'label': 'surprise', 'score': 0.006262004841119051}, {'label': 'remorse', 'score': 0.005861141253262758}, {'label': 'amusement', 'score': 0.005416966509073973}, {'label': 'desire', 'score': 0.0052808430045843124}, {'label': 'disgust', 'score': 0.004768783692270517}, {'label': 'anger', 'score': 0.004461247939616442}, {'label': 'embarrassment', 'score': 0.0040046158246695995}, {'label': 'gratitude', 'score': 0.0022252188064157963}, {'label': 'pride', 'score': 0.0015092992689460516}], [{'label': 'caring', 'score': 0.5326259732246399}, {'label': 'optimism', 'score': 0.4415419399738312}, {'label': 'gratitude', 'score': 0.34359437227249146}, {'label': 'admiration', 'score': 0.24178406596183777}, {'label': 'sadness', 'score': 0.23999030888080597}, {'label': 'remorse', 'score': 0.060220446437597275}, {'label': 'approval', 'score': 0.055249426513910294}, {'label': 'relief', 'score': 0.03929225355386734}, {'label': 'disappointment', 'score': 0.03906187787652016}, {'label': 'desire', 'score': 0.03480743244290352}, {'label': 'grief', 'score': 0.030766569077968597}, {'label': 'joy', 'score': 0.02193351276218891}, {'label': 'disapproval', 'score': 0.01887478120625019}, {'label': 'pride', 'score': 0.015562396496534348}, {'label': 'love', 'score': 0.014120169915258884}, {'label': 'neutral', 'score': 0.01391591690480709}, {'label': 'fear', 'score': 0.013003600761294365}, {'label': 'realization', 'score': 0.012039035558700562}, {'label': 'nervousness', 'score': 0.010594128631055355}, {'label': 'annoyance', 'score': 0.0065623121336102486}, {'label': 'excitement', 'score': 0.006555675528943539}, {'label': 'confusion', 'score': 0.003770253388211131}, {'label': 'surprise', 'score': 0.003261200152337551}, {'label': 'curiosity', 'score': 0.0031861024908721447}, {'label': 'anger', 'score': 0.002933767158538103}, {'label': 'disgust', 'score': 0.001983684254810214}, {'label': 'embarrassment', 'score': 0.0017514426726847887}, {'label': 'amusement', 'score': 0.0011983555741608143}], [{'label': 'sadness', 'score': 0.8685345649719238}, {'label': 'disappointment', 'score': 0.1182636246085167}, {'label': 'grief', 'score': 0.027942610904574394}, {'label': 'neutral', 'score': 0.024753659963607788}, {'label': 'admiration', 'score': 0.02185741811990738}, {'label': 'approval', 'score': 0.016936812549829483}, {'label': 'realization', 'score': 0.015292460098862648}, {'label': 'annoyance', 'score': 0.013738689012825489}, {'label': 'joy', 'score': 0.013141428120434284}, {'label': 'caring', 'score': 0.012463708408176899}, {'label': 'disapproval', 'score': 0.008846807293593884}, {'label': 'nervousness', 'score': 0.008011327125132084}, {'label': 'remorse', 'score': 0.007401231210678816}, {'label': 'anger', 'score': 0.004815681837499142}, {'label': 'love', 'score': 0.004541517700999975}, {'label': 'relief', 'score': 0.004363699816167355}, {'label': 'desire', 'score': 0.0041711279191076756}, {'label': 'fear', 'score': 0.004091476555913687}, {'label': 'curiosity', 'score': 0.003619617549702525}, {'label': 'optimism', 'score': 0.003166547976434231}, {'label': 'gratitude', 'score': 0.002976939780637622}, {'label': 'amusement', 'score': 0.0028318024706095457}, {'label': 'excitement', 'score': 0.0026665611658245325}, {'label': 'disgust', 'score': 0.0025092139840126038}, {'label': 'confusion', 'score': 0.0024857090320438147}, {'label': 'surprise', 'score': 0.002272782614454627}, {'label': 'embarrassment', 'score': 0.001625192235223949}, {'label': 'pride', 'score': 0.000995315844193101}], [{'label': 'nervousness', 'score': 0.3390251100063324}, {'label': 'sadness', 'score': 0.21178893744945526}, {'label': 'disappointment', 'score': 0.08690562844276428}, {'label': 'caring', 'score': 0.08373898267745972}, {'label': 'neutral', 'score': 0.05737053602933884}, {'label': 'fear', 'score': 0.05656147003173828}, {'label': 'annoyance', 'score': 0.03198928385972977}, {'label': 'realization', 'score': 0.028211547061800957}, {'label': 'approval', 'score': 0.026652630418539047}, {'label': 'confusion', 'score': 0.01342133991420269}, {'label': 'joy', 'score': 0.011009374633431435}, {'label': 'disapproval', 'score': 0.01087021641433239}, {'label': 'relief', 'score': 0.009502255357801914}, {'label': 'remorse', 'score': 0.00670756958425045}, {'label': 'curiosity', 'score': 0.006607510149478912}, {'label': 'optimism', 'score': 0.006503610871732235}, {'label': 'grief', 'score': 0.006084765307605267}, {'label': 'admiration', 'score': 0.005838502198457718}, {'label': 'desire', 'score': 0.005640779621899128}, {'label': 'anger', 'score': 0.0048521352000534534}, {'label': 'excitement', 'score': 0.00445508724078536}, {'label': 'love', 'score': 0.004115579649806023}, {'label': 'embarrassment', 'score': 0.0031699875835329294}, {'label': 'disgust', 'score': 0.0021195001900196075}, {'label': 'amusement', 'score': 0.0019821838941425085}, {'label': 'surprise', 'score': 0.0017320926999673247}, {'label': 'pride', 'score': 0.001284722238779068}, {'label': 'gratitude', 'score': 0.0012173517607152462}], [{'label': 'fear', 'score': 0.8351157903671265}, {'label': 'nervousness', 'score': 0.14607024192810059}, {'label': 'neutral', 'score': 0.05239032581448555}, {'label': 'sadness', 'score': 0.03625950962305069}, {'label': 'approval', 'score': 0.03182002156972885}, {'label': 'caring', 'score': 0.029187925159931183}, {'label': 'realization', 'score': 0.023158956319093704}, {'label': 'admiration', 'score': 0.013925689272582531}, {'label': 'disappointment', 'score': 0.012543142773211002}, {'label': 'optimism', 'score': 0.011995352804660797}, {'label': 'disapproval', 'score': 0.010765345767140388}, {'label': 'joy', 'score': 0.008824478834867477}, {'label': 'annoyance', 'score': 0.008466941304504871}, {'label': 'confusion', 'score': 0.008249901235103607}, {'label': 'disgust', 'score': 0.007143012247979641}, {'label': 'excitement', 'score': 0.0065276771783828735}, {'label': 'love', 'score': 0.006331864278763533}, {'label': 'desire', 'score': 0.005909640341997147}, {'label': 'relief', 'score': 0.0051995450630784035}, {'label': 'grief', 'score': 0.005057886242866516}, {'label': 'surprise', 'score': 0.004297200124710798}, {'label': 'amusement', 'score': 0.004033717326819897}, {'label': 'anger', 'score': 0.0036436577793210745}, {'label': 'curiosity', 'score': 0.0030755132902413607}, {'label': 'embarrassment', 'score': 0.0028396672569215298}, {'label': 'gratitude', 'score': 0.0021137050352990627}, {'label': 'remorse', 'score': 0.0018446837784722447}, {'label': 'pride', 'score': 0.0017941822297871113}], [{'label': 'sadness', 'score': 0.7274198532104492}, {'label': 'disappointment', 'score': 0.11515167355537415}, {'label': 'caring', 'score': 0.10562737286090851}, {'label': 'approval', 'score': 0.04898196458816528}, {'label': 'neutral', 'score': 0.035499148070812225}, {'label': 'admiration', 'score': 0.021203111857175827}, {'label': 'realization', 'score': 0.017888939008116722}, {'label': 'nervousness', 'score': 0.017815548926591873}, {'label': 'optimism', 'score': 0.017726466059684753}, {'label': 'grief', 'score': 0.016909705474972725}, {'label': 'disapproval', 'score': 0.016894839704036713}, {'label': 'annoyance', 'score': 0.010597188025712967}, {'label': 'remorse', 'score': 0.01044740341603756}, {'label': 'desire', 'score': 0.010100098326802254}, {'label': 'relief', 'score': 0.006158310454338789}, {'label': 'fear', 'score': 0.0059960572980344296}, {'label': 'love', 'score': 0.005977022927254438}, {'label': 'curiosity', 'score': 0.005000046920031309}, {'label': 'confusion', 'score': 0.004922457039356232}, {'label': 'joy', 'score': 0.004553947132080793}, {'label': 'anger', 'score': 0.002366219647228718}, {'label': 'gratitude', 'score': 0.0022768897470086813}, {'label': 'excitement', 'score': 0.0019017934100702405}, {'label': 'disgust', 'score': 0.0016963256057351828}, {'label': 'amusement', 'score': 0.0013017735909670591}, {'label': 'embarrassment', 'score': 0.001197475241497159}, {'label': 'surprise', 'score': 0.001160855288617313}, {'label': 'pride', 'score': 0.0009943443583324552}], [{'label': 'sadness', 'score': 0.8320512771606445}, {'label': 'admiration', 'score': 0.19796904921531677}, {'label': 'disappointment', 'score': 0.06978470832109451}, {'label': 'grief', 'score': 0.053320590406656265}, {'label': 'caring', 'score': 0.043886948376894}, {'label': 'approval', 'score': 0.03442693129181862}, {'label': 'desire', 'score': 0.034002721309661865}, {'label': 'gratitude', 'score': 0.028610656037926674}, {'label': 'love', 'score': 0.020481722429394722}, {'label': 'remorse', 'score': 0.017672553658485413}, {'label': 'neutral', 'score': 0.01641065813601017}, {'label': 'realization', 'score': 0.014547934755682945}, {'label': 'joy', 'score': 0.013990174047648907}, {'label': 'nervousness', 'score': 0.01029370166361332}, {'label': 'disapproval', 'score': 0.009483737871050835}, {'label': 'relief', 'score': 0.008987569250166416}, {'label': 'fear', 'score': 0.008194856345653534}, {'label': 'annoyance', 'score': 0.00815786886960268}, {'label': 'optimism', 'score': 0.006462938617914915}, {'label': 'curiosity', 'score': 0.006008042022585869}, {'label': 'excitement', 'score': 0.005199586506932974}, {'label': 'disgust', 'score': 0.004361307248473167}, {'label': 'pride', 'score': 0.0036745353136211634}, {'label': 'confusion', 'score': 0.003422235371544957}, {'label': 'anger', 'score': 0.0034215576015412807}, {'label': 'surprise', 'score': 0.003210762282833457}, {'label': 'amusement', 'score': 0.0016404906054958701}, {'label': 'embarrassment', 'score': 0.0015807744348421693}], [{'label': 'curiosity', 'score': 0.9015732407569885}, {'label': 'confusion', 'score': 0.08510461449623108}, {'label': 'neutral', 'score': 0.06056647002696991}, {'label': 'annoyance', 'score': 0.013190848752856255}, {'label': 'disappointment', 'score': 0.011708167381584644}, {'label': 'disapproval', 'score': 0.011313940398395061}, {'label': 'admiration', 'score': 0.010759750381112099}, {'label': 'approval', 'score': 0.010555656626820564}, {'label': 'excitement', 'score': 0.010077634826302528}, {'label': 'surprise', 'score': 0.009416703134775162}, {'label': 'caring', 'score': 0.00904302578419447}, {'label': 'sadness', 'score': 0.008763599209487438}, {'label': 'optimism', 'score': 0.006458781659603119}, {'label': 'desire', 'score': 0.006168974097818136}, {'label': 'love', 'score': 0.005401932634413242}, {'label': 'anger', 'score': 0.0052202423103153706}, {'label': 'realization', 'score': 0.004033374134451151}, {'label': 'fear', 'score': 0.003844515886157751}, {'label': 'nervousness', 'score': 0.00330478698015213}, {'label': 'remorse', 'score': 0.0029302139300853014}, {'label': 'amusement', 'score': 0.0028707708697766066}, {'label': 'disgust', 'score': 0.002541196998208761}, {'label': 'joy', 'score': 0.002123564248904586}, {'label': 'embarrassment', 'score': 0.002023274777457118}, {'label': 'gratitude', 'score': 0.0012701657833531499}, {'label': 'grief', 'score': 0.0010012333514168859}, {'label': 'relief', 'score': 0.00047656678361818194}, {'label': 'pride', 'score': 0.00012986069486942142}], [{'label': 'sadness', 'score': 0.31362080574035645}, {'label': 'disappointment', 'score': 0.31304866075515747}, {'label': 'nervousness', 'score': 0.1855577975511551}, {'label': 'caring', 'score': 0.058861054480075836}, {'label': 'optimism', 'score': 0.04650180786848068}, {'label': 'desire', 'score': 0.042450953274965286}, {'label': 'neutral', 'score': 0.040050528943538666}, {'label': 'annoyance', 'score': 0.03338059410452843}, {'label': 'fear', 'score': 0.0324237123131752}, {'label': 'realization', 'score': 0.024826878681778908}, {'label': 'disapproval', 'score': 0.022741742432117462}, {'label': 'approval', 'score': 0.02127068303525448}, {'label': 'joy', 'score': 0.013737634755671024}, {'label': 'relief', 'score': 0.011449427343904972}, {'label': 'confusion', 'score': 0.01093791052699089}, {'label': 'remorse', 'score': 0.010229891166090965}, {'label': 'grief', 'score': 0.007417506538331509}, {'label': 'excitement', 'score': 0.007278654258698225}, {'label': 'curiosity', 'score': 0.007198880892246962}, {'label': 'love', 'score': 0.005418187007308006}, {'label': 'admiration', 'score': 0.004744722507894039}, {'label': 'anger', 'score': 0.004575247410684824}, {'label': 'surprise', 'score': 0.0032645140308886766}, {'label': 'embarrassment', 'score': 0.002575632417574525}, {'label': 'disgust', 'score': 0.0020276950672268867}, {'label': 'pride', 'score': 0.001525280182249844}, {'label': 'amusement', 'score': 0.0013075305614620447}, {'label': 'gratitude', 'score': 0.0012849064078181982}], [{'label': 'nervousness', 'score': 0.4060474932193756}, {'label': 'caring', 'score': 0.32062819600105286}, {'label': 'sadness', 'score': 0.14996089041233063}, {'label': 'approval', 'score': 0.10787536203861237}, {'label': 'fear', 'score': 0.09109769761562347}, {'label': 'neutral', 'score': 0.03598941117525101}, {'label': 'realization', 'score': 0.029342487454414368}, {'label': 'disappointment', 'score': 0.02464093081653118}, {'label': 'admiration', 'score': 0.018627937883138657}, {'label': 'relief', 'score': 0.018210550770163536}, {'label': 'confusion', 'score': 0.015917113050818443}, {'label': 'joy', 'score': 0.015157980844378471}, {'label': 'curiosity', 'score': 0.012885697185993195}, {'label': 'love', 'score': 0.012392080388963223}, {'label': 'annoyance', 'score': 0.011689885519444942}, {'label': 'excitement', 'score': 0.011092745698988438}, {'label': 'disapproval', 'score': 0.010981461964547634}, {'label': 'optimism', 'score': 0.010503606870770454}, {'label': 'remorse', 'score': 0.009272339753806591}, {'label': 'desire', 'score': 0.008976507931947708}, {'label': 'grief', 'score': 0.007891529239714146}, {'label': 'anger', 'score': 0.003255261341109872}, {'label': 'embarrassment', 'score': 0.003091992810368538}, {'label': 'amusement', 'score': 0.0028414162807166576}, {'label': 'pride', 'score': 0.0027592042461037636}, {'label': 'gratitude', 'score': 0.002600821666419506}, {'label': 'disgust', 'score': 0.0022217901423573494}, {'label': 'surprise', 'score': 0.0017794829327613115}], [{'label': 'fear', 'score': 0.570053219795227}, {'label': 'nervousness', 'score': 0.42909684777259827}, {'label': 'sadness', 'score': 0.20922134816646576}, {'label': 'caring', 'score': 0.06241156905889511}, {'label': 'disappointment', 'score': 0.03387816622853279}, {'label': 'neutral', 'score': 0.030045537278056145}, {'label': 'approval', 'score': 0.02775835059583187}, {'label': 'realization', 'score': 0.025646207854151726}, {'label': 'admiration', 'score': 0.015888838097453117}, {'label': 'joy', 'score': 0.014651507139205933}, {'label': 'confusion', 'score': 0.012783735990524292}, {'label': 'grief', 'score': 0.01156260073184967}, {'label': 'love', 'score': 0.010653435252606869}, {'label': 'annoyance', 'score': 0.010228326544165611}, {'label': 'relief', 'score': 0.009637719951570034}, {'label': 'disapproval', 'score': 0.009205285459756851}, {'label': 'excitement', 'score': 0.009162446483969688}, {'label': 'optimism', 'score': 0.008502840995788574}, {'label': 'curiosity', 'score': 0.006825512740761042}, {'label': 'desire', 'score': 0.006247837096452713}, {'label': 'amusement', 'score': 0.004980164114385843}, {'label': 'remorse', 'score': 0.004941840656101704}, {'label': 'surprise', 'score': 0.00438733259215951}, {'label': 'disgust', 'score': 0.00421937694773078}, {'label': 'anger', 'score': 0.003968272358179092}, {'label': 'embarrassment', 'score': 0.003605192294344306}, {'label': 'gratitude', 'score': 0.0024519022554159164}, {'label': 'pride', 'score': 0.0018762194085866213}], [{'label': 'optimism', 'score': 0.9099417924880981}, {'label': 'caring', 'score': 0.10340210050344467}, {'label': 'desire', 'score': 0.1010952815413475}, {'label': 'neutral', 'score': 0.04015117138624191}, {'label': 'approval', 'score': 0.030362775549292564}, {'label': 'disappointment', 'score': 0.019423285499215126}, {'label': 'disapproval', 'score': 0.014408193528652191}, {'label': 'annoyance', 'score': 0.012056216597557068}, {'label': 'sadness', 'score': 0.011024176143109798}, {'label': 'realization', 'score': 0.00924153532832861}, {'label': 'admiration', 'score': 0.009080646559596062}, {'label': 'remorse', 'score': 0.008579719811677933}, {'label': 'fear', 'score': 0.007699424400925636}, {'label': 'love', 'score': 0.00734558654949069}, {'label': 'gratitude', 'score': 0.00588329927995801}, {'label': 'anger', 'score': 0.004478842951357365}, {'label': 'disgust', 'score': 0.004152931272983551}, {'label': 'confusion', 'score': 0.003923824522644281}, {'label': 'curiosity', 'score': 0.003531472058966756}, {'label': 'nervousness', 'score': 0.0026314212009310722}, {'label': 'excitement', 'score': 0.002144145779311657}, {'label': 'joy', 'score': 0.0019952880684286356}, {'label': 'surprise', 'score': 0.0017257088329643011}, {'label': 'grief', 'score': 0.0016439164755865932}, {'label': 'pride', 'score': 0.001468847505748272}, {'label': 'amusement', 'score': 0.001453109085559845}, {'label': 'relief', 'score': 0.0014101631240919232}, {'label': 'embarrassment', 'score': 0.0008889548480510712}], [{'label': 'desire', 'score': 0.5388855338096619}, {'label': 'caring', 'score': 0.17282500863075256}, {'label': 'optimism', 'score': 0.11715540289878845}, {'label': 'gratitude', 'score': 0.08012255281209946}, {'label': 'excitement', 'score': 0.0499534085392952}, {'label': 'fear', 'score': 0.030264299362897873}, {'label': 'nervousness', 'score': 0.029712244868278503}, {'label': 'joy', 'score': 0.028872497379779816}, {'label': 'approval', 'score': 0.021092824637889862}, {'label': 'neutral', 'score': 0.02005515620112419}, {'label': 'curiosity', 'score': 0.014811115339398384}, {'label': 'admiration', 'score': 0.01358760055154562}, {'label': 'sadness', 'score': 0.013132556341588497}, {'label': 'relief', 'score': 0.012392044998705387}, {'label': 'annoyance', 'score': 0.00904533825814724}, {'label': 'disapproval', 'score': 0.006688740570098162}, {'label': 'disappointment', 'score': 0.006624508183449507}, {'label': 'realization', 'score': 0.006162479054182768}, {'label': 'remorse', 'score': 0.005577531643211842}, {'label': 'confusion', 'score': 0.005164873320609331}, {'label': 'pride', 'score': 0.004588581155985594}, {'label': 'love', 'score': 0.004175443667918444}, {'label': 'surprise', 'score': 0.0034644422121345997}, {'label': 'grief', 'score': 0.003356796922162175}, {'label': 'disgust', 'score': 0.0030637779273092747}, {'label': 'anger', 'score': 0.002776275621727109}, {'label': 'amusement', 'score': 0.0018396545201539993}, {'label': 'embarrassment', 'score': 0.0012717792997136712}], [{'label': 'anger', 'score': 0.35135093331336975}, {'label': 'fear', 'score': 0.32299989461898804}, {'label': 'annoyance', 'score': 0.23623307049274445}, {'label': 'disgust', 'score': 0.08971968293190002}, {'label': 'disapproval', 'score': 0.040280021727085114}, {'label': 'disappointment', 'score': 0.03751792386174202}, {'label': 'sadness', 'score': 0.028820708394050598}, {'label': 'neutral', 'score': 0.02676069736480713}, {'label': 'nervousness', 'score': 0.01360864844173193}, {'label': 'approval', 'score': 0.011819150298833847}, {'label': 'optimism', 'score': 0.010993193835020065}, {'label': 'caring', 'score': 0.010431541129946709}, {'label': 'realization', 'score': 0.009459110908210278}, {'label': 'embarrassment', 'score': 0.007206580135971308}, {'label': 'confusion', 'score': 0.005265845451503992}, {'label': 'desire', 'score': 0.004323429893702269}, {'label': 'curiosity', 'score': 0.004101872909814119}, {'label': 'admiration', 'score': 0.0035684516187757254}, {'label': 'surprise', 'score': 0.0033991732634603977}, {'label': 'excitement', 'score': 0.0025796780828386545}, {'label': 'joy', 'score': 0.0024342546239495277}, {'label': 'grief', 'score': 0.002369973110035062}, {'label': 'love', 'score': 0.0022390554659068584}, {'label': 'amusement', 'score': 0.00177493947558105}, {'label': 'gratitude', 'score': 0.0016902897041290998}, {'label': 'pride', 'score': 0.0013434618012979627}, {'label': 'remorse', 'score': 0.0012015256797894835}, {'label': 'relief', 'score': 0.0010562494862824678}], [{'label': 'sadness', 'score': 0.30869340896606445}, {'label': 'fear', 'score': 0.17890684306621552}, {'label': 'neutral', 'score': 0.12187088280916214}, {'label': 'nervousness', 'score': 0.11796426773071289}, {'label': 'disappointment', 'score': 0.11584196984767914}, {'label': 'caring', 'score': 0.0637359619140625}, {'label': 'approval', 'score': 0.043430984020233154}, {'label': 'realization', 'score': 0.037200264632701874}, {'label': 'annoyance', 'score': 0.029419079422950745}, {'label': 'disapproval', 'score': 0.025224978104233742}, {'label': 'optimism', 'score': 0.012758400291204453}, {'label': 'desire', 'score': 0.009609593078494072}, {'label': 'grief', 'score': 0.007176902610808611}, {'label': 'anger', 'score': 0.005376741290092468}, {'label': 'relief', 'score': 0.005287687759846449}, {'label': 'confusion', 'score': 0.004481663461774588}, {'label': 'disgust', 'score': 0.003815536154434085}, {'label': 'admiration', 'score': 0.0036043564323335886}, {'label': 'remorse', 'score': 0.003376944689080119}, {'label': 'embarrassment', 'score': 0.0027658329345285892}, {'label': 'joy', 'score': 0.002507150173187256}, {'label': 'love', 'score': 0.0023215559776872396}, {'label': 'curiosity', 'score': 0.0023027861025184393}, {'label': 'excitement', 'score': 0.0020591854117810726}, {'label': 'surprise', 'score': 0.0017967664171010256}, {'label': 'pride', 'score': 0.0010108809219673276}, {'label': 'amusement', 'score': 0.0009842859581112862}, {'label': 'gratitude', 'score': 0.0004008727555628866}], [{'label': 'sadness', 'score': 0.3392502963542938}, {'label': 'disappointment', 'score': 0.25691157579421997}, {'label': 'nervousness', 'score': 0.2213633805513382}, {'label': 'annoyance', 'score': 0.09569042921066284}, {'label': 'fear', 'score': 0.07435055822134018}, {'label': 'neutral', 'score': 0.03274025022983551}, {'label': 'anger', 'score': 0.025196153670549393}, {'label': 'caring', 'score': 0.02440621145069599}, {'label': 'confusion', 'score': 0.024241391569375992}, {'label': 'curiosity', 'score': 0.02144153229892254}, {'label': 'disapproval', 'score': 0.021182172000408173}, {'label': 'realization', 'score': 0.018833989277482033}, {'label': 'approval', 'score': 0.012365136295557022}, {'label': 'desire', 'score': 0.012024951167404652}, {'label': 'grief', 'score': 0.007250359747558832}, {'label': 'joy', 'score': 0.0070866309106349945}, {'label': 'optimism', 'score': 0.006851482670754194}, {'label': 'excitement', 'score': 0.006248597986996174}, {'label': 'love', 'score': 0.004957463592290878}, {'label': 'remorse', 'score': 0.004839752335101366}, {'label': 'embarrassment', 'score': 0.004426395986229181}, {'label': 'disgust', 'score': 0.004407586995512247}, {'label': 'relief', 'score': 0.0042821369133889675}, {'label': 'surprise', 'score': 0.003988190554082394}, {'label': 'admiration', 'score': 0.0031958792824298143}, {'label': 'amusement', 'score': 0.0014483622508123517}, {'label': 'gratitude', 'score': 0.0009677422349341214}, {'label': 'pride', 'score': 0.0008957820245996118}], [{'label': 'joy', 'score': 0.41025832295417786}, {'label': 'annoyance', 'score': 0.40429049730300903}, {'label': 'anger', 'score': 0.07735040038824081}, {'label': 'disappointment', 'score': 0.047692786902189255}, {'label': 'neutral', 'score': 0.03560139238834381}, {'label': 'approval', 'score': 0.03560074791312218}, {'label': 'disapproval', 'score': 0.03166981413960457}, {'label': 'relief', 'score': 0.023995067924261093}, {'label': 'realization', 'score': 0.02280137687921524}, {'label': 'sadness', 'score': 0.015596137382090092}, {'label': 'caring', 'score': 0.013024706393480301}, {'label': 'gratitude', 'score': 0.009436610154807568}, {'label': 'embarrassment', 'score': 0.007553018629550934}, {'label': 'pride', 'score': 0.007098670117557049}, {'label': 'amusement', 'score': 0.006369655020534992}, {'label': 'admiration', 'score': 0.006368097849190235}, {'label': 'optimism', 'score': 0.005451937206089497}, {'label': 'disgust', 'score': 0.005284215789288282}, {'label': 'desire', 'score': 0.00520346499979496}, {'label': 'excitement', 'score': 0.005172420293092728}, {'label': 'nervousness', 'score': 0.004576663486659527}, {'label': 'confusion', 'score': 0.003693188074976206}, {'label': 'remorse', 'score': 0.002308477880433202}, {'label': 'grief', 'score': 0.002269653370603919}, {'label': 'love', 'score': 0.0018006199970841408}, {'label': 'curiosity', 'score': 0.0015715581830590963}, {'label': 'surprise', 'score': 0.0013824523193761706}, {'label': 'fear', 'score': 0.0010107436683028936}], [{'label': 'fear', 'score': 0.758919358253479}, {'label': 'nervousness', 'score': 0.11326902359724045}, {'label': 'annoyance', 'score': 0.056206706911325455}, {'label': 'neutral', 'score': 0.03605302423238754}, {'label': 'disgust', 'score': 0.03313702717423439}, {'label': 'disapproval', 'score': 0.030012335628271103}, {'label': 'sadness', 'score': 0.028974249958992004}, {'label': 'approval', 'score': 0.027630411088466644}, {'label': 'disappointment', 'score': 0.02635345607995987}, {'label': 'realization', 'score': 0.022744329646229744}, {'label': 'caring', 'score': 0.01293571013957262}, {'label': 'anger', 'score': 0.011750873178243637}, {'label': 'confusion', 'score': 0.009357865899801254}, {'label': 'embarrassment', 'score': 0.0076540191657841206}, {'label': 'optimism', 'score': 0.007072844542562962}, {'label': 'admiration', 'score': 0.005683499854058027}, {'label': 'joy', 'score': 0.005525584798306227}, {'label': 'excitement', 'score': 0.003705138573423028}, {'label': 'desire', 'score': 0.003656756365671754}, {'label': 'amusement', 'score': 0.0034050161484628916}, {'label': 'curiosity', 'score': 0.0031124153174459934}, {'label': 'relief', 'score': 0.002947860863059759}, {'label': 'grief', 'score': 0.0028502538334578276}, {'label': 'love', 'score': 0.0025803064927458763}, {'label': 'surprise', 'score': 0.0024285539984703064}, {'label': 'pride', 'score': 0.0012710430892184377}, {'label': 'remorse', 'score': 0.001185484230518341}, {'label': 'gratitude', 'score': 0.0010885156225413084}], [{'label': 'optimism', 'score': 0.5261660218238831}, {'label': 'desire', 'score': 0.2276548147201538}, {'label': 'disappointment', 'score': 0.11087404936552048}, {'label': 'joy', 'score': 0.10510899126529694}, {'label': 'sadness', 'score': 0.1016465350985527}, {'label': 'neutral', 'score': 0.0939595103263855}, {'label': 'realization', 'score': 0.03535294905304909}, {'label': 'approval', 'score': 0.030535031110048294}, {'label': 'caring', 'score': 0.03012864477932453}, {'label': 'relief', 'score': 0.020582055673003197}, {'label': 'annoyance', 'score': 0.013260167092084885}, {'label': 'remorse', 'score': 0.011509841307997704}, {'label': 'nervousness', 'score': 0.010839257389307022}, {'label': 'disapproval', 'score': 0.009257769212126732}, {'label': 'grief', 'score': 0.006075339391827583}, {'label': 'excitement', 'score': 0.006035258062183857}, {'label': 'admiration', 'score': 0.0055327448062598705}, {'label': 'amusement', 'score': 0.004612474236637354}, {'label': 'pride', 'score': 0.0044654980301856995}, {'label': 'fear', 'score': 0.00437773484736681}, {'label': 'love', 'score': 0.0033439809922128916}, {'label': 'gratitude', 'score': 0.002839420223608613}, {'label': 'confusion', 'score': 0.0025843593757599592}, {'label': 'surprise', 'score': 0.002460663905367255}, {'label': 'anger', 'score': 0.0017658342840149999}, {'label': 'embarrassment', 'score': 0.00164655817206949}, {'label': 'curiosity', 'score': 0.001629249774850905}, {'label': 'disgust', 'score': 0.0015814692014828324}], [{'label': 'anger', 'score': 0.46824273467063904}, {'label': 'neutral', 'score': 0.40193668007850647}, {'label': 'annoyance', 'score': 0.2240414172410965}, {'label': 'disapproval', 'score': 0.02694804221391678}, {'label': 'approval', 'score': 0.021373022347688675}, {'label': 'disgust', 'score': 0.010156859643757343}, {'label': 'realization', 'score': 0.008325701579451561}, {'label': 'disappointment', 'score': 0.007389862090349197}, {'label': 'sadness', 'score': 0.006540339905768633}, {'label': 'caring', 'score': 0.005071883089840412}, {'label': 'fear', 'score': 0.004954881500452757}, {'label': 'curiosity', 'score': 0.00480933953076601}, {'label': 'confusion', 'score': 0.004674854688346386}, {'label': 'optimism', 'score': 0.0026158131659030914}, {'label': 'amusement', 'score': 0.0021390507463365793}, {'label': 'embarrassment', 'score': 0.0019513226579874754}, {'label': 'joy', 'score': 0.0019432802218943834}, {'label': 'desire', 'score': 0.001326844678260386}, {'label': 'admiration', 'score': 0.0012400823179632425}, {'label': 'nervousness', 'score': 0.0010672061471268535}, {'label': 'surprise', 'score': 0.0009920421289280057}, {'label': 'excitement', 'score': 0.0009704853873699903}, {'label': 'grief', 'score': 0.0008021550602279603}, {'label': 'love', 'score': 0.0008018448133952916}, {'label': 'pride', 'score': 0.00048513407818973064}, {'label': 'relief', 'score': 0.00039112853119149804}, {'label': 'remorse', 'score': 0.00038501262315548956}, {'label': 'gratitude', 'score': 0.00026740250177681446}], [{'label': 'sadness', 'score': 0.7296534180641174}, {'label': 'nervousness', 'score': 0.2482369840145111}, {'label': 'disappointment', 'score': 0.13493889570236206}, {'label': 'caring', 'score': 0.06698769330978394}, {'label': 'fear', 'score': 0.06492740660905838}, {'label': 'curiosity', 'score': 0.04295356199145317}, {'label': 'confusion', 'score': 0.042817309498786926}, {'label': 'grief', 'score': 0.026777854189276695}, {'label': 'remorse', 'score': 0.024440603330731392}, {'label': 'neutral', 'score': 0.02396208606660366}, {'label': 'realization', 'score': 0.022816691547632217}, {'label': 'approval', 'score': 0.020222235471010208}, {'label': 'desire', 'score': 0.017447561025619507}, {'label': 'joy', 'score': 0.014613843522965908}, {'label': 'annoyance', 'score': 0.01368427649140358}, {'label': 'optimism', 'score': 0.012227514758706093}, {'label': 'love', 'score': 0.011571350507438183}, {'label': 'disapproval', 'score': 0.010273361578583717}, {'label': 'excitement', 'score': 0.009471320547163486}, {'label': 'relief', 'score': 0.00946450512856245}, {'label': 'admiration', 'score': 0.008614529855549335}, {'label': 'surprise', 'score': 0.007115376181900501}, {'label': 'anger', 'score': 0.00427617784589529}, {'label': 'embarrassment', 'score': 0.003345034783706069}, {'label': 'amusement', 'score': 0.0027490088250488043}, {'label': 'disgust', 'score': 0.0024019491393119097}, {'label': 'gratitude', 'score': 0.0020704788621515036}, {'label': 'pride', 'score': 0.0012071817182004452}], [{'label': 'sadness', 'score': 0.6955196261405945}, {'label': 'nervousness', 'score': 0.21772508323192596}, {'label': 'disappointment', 'score': 0.11285334825515747}, {'label': 'fear', 'score': 0.06422702223062515}, {'label': 'caring', 'score': 0.029494935646653175}, {'label': 'realization', 'score': 0.024179011583328247}, {'label': 'grief', 'score': 0.02072053775191307}, {'label': 'remorse', 'score': 0.015881339088082314}, {'label': 'neutral', 'score': 0.015739724040031433}, {'label': 'approval', 'score': 0.015546603128314018}, {'label': 'confusion', 'score': 0.014915910549461842}, {'label': 'annoyance', 'score': 0.01478396262973547}, {'label': 'joy', 'score': 0.013208674266934395}, {'label': 'love', 'score': 0.01115006860345602}, {'label': 'curiosity', 'score': 0.011068923398852348}, {'label': 'admiration', 'score': 0.009380773641169071}, {'label': 'disapproval', 'score': 0.007871100679039955}, {'label': 'excitement', 'score': 0.007000592537224293}, {'label': 'relief', 'score': 0.006841062102466822}, {'label': 'desire', 'score': 0.006149351596832275}, {'label': 'surprise', 'score': 0.005429545883089304}, {'label': 'anger', 'score': 0.004671991337090731}, {'label': 'embarrassment', 'score': 0.004285214003175497}, {'label': 'optimism', 'score': 0.004210108891129494}, {'label': 'amusement', 'score': 0.0037538674660027027}, {'label': 'disgust', 'score': 0.003222931642085314}, {'label': 'gratitude', 'score': 0.002072341972962022}, {'label': 'pride', 'score': 0.001191984862089157}], [{'label': 'sadness', 'score': 0.4237133860588074}, {'label': 'nervousness', 'score': 0.3654097318649292}, {'label': 'fear', 'score': 0.3478432893753052}, {'label': 'disappointment', 'score': 0.062004100531339645}, {'label': 'caring', 'score': 0.044669270515441895}, {'label': 'realization', 'score': 0.02549499273300171}, {'label': 'approval', 'score': 0.023928049951791763}, {'label': 'neutral', 'score': 0.022631699219346046}, {'label': 'grief', 'score': 0.015721864998340607}, {'label': 'joy', 'score': 0.014251375570893288}, {'label': 'admiration', 'score': 0.012383288703858852}, {'label': 'love', 'score': 0.011230552569031715}, {'label': 'annoyance', 'score': 0.010990466922521591}, {'label': 'confusion', 'score': 0.010212374851107597}, {'label': 'remorse', 'score': 0.00935947522521019}, {'label': 'relief', 'score': 0.009110460057854652}, {'label': 'optimism', 'score': 0.008038691245019436}, {'label': 'disapproval', 'score': 0.007750778924673796}, {'label': 'excitement', 'score': 0.0074170599691569805}, {'label': 'desire', 'score': 0.005972109269350767}, {'label': 'curiosity', 'score': 0.005893560126423836}, {'label': 'amusement', 'score': 0.004388940986245871}, {'label': 'surprise', 'score': 0.004265124909579754}, {'label': 'anger', 'score': 0.004129265435039997}, {'label': 'embarrassment', 'score': 0.0037739179097115993}, {'label': 'disgust', 'score': 0.003571216482669115}, {'label': 'gratitude', 'score': 0.0025240639224648476}, {'label': 'pride', 'score': 0.001682238420471549}], [{'label': 'sadness', 'score': 0.40950965881347656}, {'label': 'disappointment', 'score': 0.23366881906986237}, {'label': 'nervousness', 'score': 0.1099751889705658}, {'label': 'annoyance', 'score': 0.08681504428386688}, {'label': 'fear', 'score': 0.04893132299184799}, {'label': 'neutral', 'score': 0.03639211133122444}, {'label': 'anger', 'score': 0.026958134025335312}, {'label': 'realization', 'score': 0.02045612968504429}, {'label': 'disapproval', 'score': 0.013929101638495922}, {'label': 'caring', 'score': 0.01198945939540863}, {'label': 'approval', 'score': 0.010263354517519474}, {'label': 'confusion', 'score': 0.009108944796025753}, {'label': 'grief', 'score': 0.007306269835680723}, {'label': 'joy', 'score': 0.00613824650645256}, {'label': 'curiosity', 'score': 0.005631496198475361}, {'label': 'embarrassment', 'score': 0.005352686624974012}, {'label': 'remorse', 'score': 0.005285558756440878}, {'label': 'disgust', 'score': 0.004497726447880268}, {'label': 'optimism', 'score': 0.0035332192201167345}, {'label': 'love', 'score': 0.0034312731586396694}, {'label': 'desire', 'score': 0.003280704142525792}, {'label': 'relief', 'score': 0.003125346265733242}, {'label': 'surprise', 'score': 0.0024489627685397863}, {'label': 'admiration', 'score': 0.0023856472689658403}, {'label': 'excitement', 'score': 0.0023047886788845062}, {'label': 'amusement', 'score': 0.0019043483771383762}, {'label': 'gratitude', 'score': 0.0008803377859294415}, {'label': 'pride', 'score': 0.0008142692968249321}], [{'label': 'disgust', 'score': 0.7262070178985596}, {'label': 'annoyance', 'score': 0.20670002698898315}, {'label': 'anger', 'score': 0.15323662757873535}, {'label': 'disapproval', 'score': 0.033606063574552536}, {'label': 'neutral', 'score': 0.030462972819805145}, {'label': 'approval', 'score': 0.02928628772497177}, {'label': 'disappointment', 'score': 0.021223383024334908}, {'label': 'fear', 'score': 0.02027025818824768}, {'label': 'embarrassment', 'score': 0.01679815724492073}, {'label': 'sadness', 'score': 0.014526395127177238}, {'label': 'realization', 'score': 0.00673240190371871}, {'label': 'curiosity', 'score': 0.005991448648273945}, {'label': 'love', 'score': 0.005609924905002117}, {'label': 'admiration', 'score': 0.004874122329056263}, {'label': 'amusement', 'score': 0.004743900615721941}, {'label': 'joy', 'score': 0.004591993056237698}, {'label': 'desire', 'score': 0.003849922912195325}, {'label': 'confusion', 'score': 0.0034441212192177773}, {'label': 'excitement', 'score': 0.003298114985227585}, {'label': 'optimism', 'score': 0.002610796829685569}, {'label': 'caring', 'score': 0.002549435244873166}, {'label': 'surprise', 'score': 0.002361741615459323}, {'label': 'nervousness', 'score': 0.0022185915149748325}, {'label': 'gratitude', 'score': 0.0013445818331092596}, {'label': 'remorse', 'score': 0.001260533113963902}, {'label': 'grief', 'score': 0.0011627908097580075}, {'label': 'pride', 'score': 0.0009498965227976441}, {'label': 'relief', 'score': 0.0008749765111133456}], [{'label': 'sadness', 'score': 0.6587199568748474}, {'label': 'gratitude', 'score': 0.11838986724615097}, {'label': 'disappointment', 'score': 0.08971129357814789}, {'label': 'joy', 'score': 0.08344948291778564}, {'label': 'admiration', 'score': 0.03804050013422966}, {'label': 'caring', 'score': 0.03611031547188759}, {'label': 'approval', 'score': 0.03490649163722992}, {'label': 'relief', 'score': 0.03339977562427521}, {'label': 'remorse', 'score': 0.027121933177113533}, {'label': 'grief', 'score': 0.025388147681951523}, {'label': 'realization', 'score': 0.01735660806298256}, {'label': 'neutral', 'score': 0.01688561588525772}, {'label': 'annoyance', 'score': 0.010303018614649773}, {'label': 'desire', 'score': 0.009485834278166294}, {'label': 'nervousness', 'score': 0.008103172294795513}, {'label': 'disapproval', 'score': 0.007694445550441742}, {'label': 'optimism', 'score': 0.006287681870162487}, {'label': 'excitement', 'score': 0.005216177552938461}, {'label': 'love', 'score': 0.004851649049669504}, {'label': 'pride', 'score': 0.0040838224813342094}, {'label': 'curiosity', 'score': 0.002967664273455739}, {'label': 'confusion', 'score': 0.0029580264817923307}, {'label': 'anger', 'score': 0.002524156356230378}, {'label': 'embarrassment', 'score': 0.0023412704467773438}, {'label': 'fear', 'score': 0.0019976412877440453}, {'label': 'surprise', 'score': 0.0018262419616803527}, {'label': 'amusement', 'score': 0.00174439896363765}, {'label': 'disgust', 'score': 0.0015069053042680025}], [{'label': 'sadness', 'score': 0.3478465974330902}, {'label': 'fear', 'score': 0.23303180932998657}, {'label': 'desire', 'score': 0.2086835354566574}, {'label': 'nervousness', 'score': 0.16897983849048615}, {'label': 'disappointment', 'score': 0.07723365724086761}, {'label': 'neutral', 'score': 0.036832183599472046}, {'label': 'caring', 'score': 0.026289427652955055}, {'label': 'optimism', 'score': 0.019037075340747833}, {'label': 'realization', 'score': 0.018144957721233368}, {'label': 'grief', 'score': 0.013338075019419193}, {'label': 'annoyance', 'score': 0.012534722685813904}, {'label': 'love', 'score': 0.011204334907233715}, {'label': 'confusion', 'score': 0.009944560937583447}, {'label': 'disapproval', 'score': 0.009692997671663761}, {'label': 'approval', 'score': 0.008641962893307209}, {'label': 'curiosity', 'score': 0.008256493136286736}, {'label': 'disgust', 'score': 0.00819155853241682}, {'label': 'remorse', 'score': 0.007833880372345448}, {'label': 'excitement', 'score': 0.007629340048879385}, {'label': 'joy', 'score': 0.007420926820486784}, {'label': 'surprise', 'score': 0.006914232391864061}, {'label': 'anger', 'score': 0.00482207303866744}, {'label': 'admiration', 'score': 0.004445099271833897}, {'label': 'relief', 'score': 0.004441644065082073}, {'label': 'embarrassment', 'score': 0.0027840062975883484}, {'label': 'amusement', 'score': 0.002647064160555601}, {'label': 'gratitude', 'score': 0.0013826129725202918}, {'label': 'pride', 'score': 0.001320814248174429}], [{'label': 'sadness', 'score': 0.7026709914207458}, {'label': 'caring', 'score': 0.22884564101696014}, {'label': 'desire', 'score': 0.16154123842716217}, {'label': 'love', 'score': 0.1414164900779724}, {'label': 'disappointment', 'score': 0.08404239267110825}, {'label': 'nervousness', 'score': 0.051913004368543625}, {'label': 'remorse', 'score': 0.03652246296405792}, {'label': 'optimism', 'score': 0.029853468760848045}, {'label': 'grief', 'score': 0.025864265859127045}, {'label': 'approval', 'score': 0.02153203822672367}, {'label': 'neutral', 'score': 0.020964480936527252}, {'label': 'fear', 'score': 0.01723301038146019}, {'label': 'curiosity', 'score': 0.013146963901817799}, {'label': 'annoyance', 'score': 0.012239517644047737}, {'label': 'disapproval', 'score': 0.012140552513301373}, {'label': 'realization', 'score': 0.012133067473769188}, {'label': 'admiration', 'score': 0.008411888033151627}, {'label': 'joy', 'score': 0.008248341269791126}, {'label': 'confusion', 'score': 0.00757997389882803}, {'label': 'anger', 'score': 0.0065326206386089325}, {'label': 'relief', 'score': 0.005596207454800606}, {'label': 'excitement', 'score': 0.0051067597232759}, {'label': 'disgust', 'score': 0.004891244228929281}, {'label': 'surprise', 'score': 0.0032760531175881624}, {'label': 'gratitude', 'score': 0.0024876073002815247}, {'label': 'amusement', 'score': 0.0020088693127036095}, {'label': 'embarrassment', 'score': 0.001870602136477828}, {'label': 'pride', 'score': 0.0013800457818433642}], [{'label': 'nervousness', 'score': 0.458436518907547}, {'label': 'fear', 'score': 0.2748676836490631}, {'label': 'sadness', 'score': 0.09458880126476288}, {'label': 'disappointment', 'score': 0.06581317633390427}, {'label': 'annoyance', 'score': 0.05876077339053154}, {'label': 'caring', 'score': 0.047976527363061905}, {'label': 'neutral', 'score': 0.03366870805621147}, {'label': 'approval', 'score': 0.027289219200611115}, {'label': 'realization', 'score': 0.027227407321333885}, {'label': 'confusion', 'score': 0.01778201386332512}, {'label': 'disapproval', 'score': 0.01769074983894825}, {'label': 'anger', 'score': 0.013577806763350964}, {'label': 'joy', 'score': 0.01209644228219986}, {'label': 'relief', 'score': 0.006972888950258493}, {'label': 'excitement', 'score': 0.006962888408452272}, {'label': 'optimism', 'score': 0.0068961759097874165}, {'label': 'curiosity', 'score': 0.006656538229435682}, {'label': 'admiration', 'score': 0.005681099370121956}, {'label': 'love', 'score': 0.00563410809263587}, {'label': 'embarrassment', 'score': 0.005397231318056583}, {'label': 'disgust', 'score': 0.005248761270195246}, {'label': 'grief', 'score': 0.004487939178943634}, {'label': 'desire', 'score': 0.004204514902085066}, {'label': 'remorse', 'score': 0.003436344675719738}, {'label': 'amusement', 'score': 0.003148308489471674}, {'label': 'surprise', 'score': 0.0024735594633966684}, {'label': 'pride', 'score': 0.001502055092714727}, {'label': 'gratitude', 'score': 0.0012575519504025578}], [{'label': 'fear', 'score': 0.46836403012275696}, {'label': 'nervousness', 'score': 0.14913734793663025}, {'label': 'annoyance', 'score': 0.10961605608463287}, {'label': 'anger', 'score': 0.07906708866357803}, {'label': 'sadness', 'score': 0.06887495517730713}, {'label': 'disappointment', 'score': 0.06548062711954117}, {'label': 'disapproval', 'score': 0.05638885498046875}, {'label': 'neutral', 'score': 0.042331770062446594}, {'label': 'caring', 'score': 0.02199903503060341}, {'label': 'confusion', 'score': 0.019342362880706787}, {'label': 'realization', 'score': 0.017315587028861046}, {'label': 'approval', 'score': 0.013681323267519474}, {'label': 'disgust', 'score': 0.010558048263192177}, {'label': 'embarrassment', 'score': 0.0065150815062224865}, {'label': 'curiosity', 'score': 0.006196991540491581}, {'label': 'optimism', 'score': 0.0057739089243113995}, {'label': 'joy', 'score': 0.005197162739932537}, {'label': 'excitement', 'score': 0.004189676139503717}, {'label': 'desire', 'score': 0.00406620604917407}, {'label': 'grief', 'score': 0.0036861698608845472}, {'label': 'love', 'score': 0.00356985442340374}, {'label': 'admiration', 'score': 0.0032151101622730494}, {'label': 'surprise', 'score': 0.003050843020901084}, {'label': 'relief', 'score': 0.0030118864960968494}, {'label': 'amusement', 'score': 0.00201153545640409}, {'label': 'remorse', 'score': 0.0019424897618591785}, {'label': 'pride', 'score': 0.0012367500457912683}, {'label': 'gratitude', 'score': 0.0011050458997488022}], [{'label': 'sadness', 'score': 0.6654043793678284}, {'label': 'caring', 'score': 0.1330839991569519}, {'label': 'nervousness', 'score': 0.11851053684949875}, {'label': 'disappointment', 'score': 0.06356601417064667}, {'label': 'approval', 'score': 0.05082373693585396}, {'label': 'love', 'score': 0.04992707446217537}, {'label': 'fear', 'score': 0.02967558242380619}, {'label': 'admiration', 'score': 0.029305657371878624}, {'label': 'joy', 'score': 0.028126176446676254}, {'label': 'grief', 'score': 0.027395617216825485}, {'label': 'realization', 'score': 0.02588634565472603}, {'label': 'remorse', 'score': 0.02032993733882904}, {'label': 'neutral', 'score': 0.019056688994169235}, {'label': 'relief', 'score': 0.016786206513643265}, {'label': 'annoyance', 'score': 0.009991778992116451}, {'label': 'disapproval', 'score': 0.008930768817663193}, {'label': 'desire', 'score': 0.007197422441095114}, {'label': 'optimism', 'score': 0.006941727362573147}, {'label': 'confusion', 'score': 0.006795735564082861}, {'label': 'excitement', 'score': 0.006651680916547775}, {'label': 'curiosity', 'score': 0.005148779135197401}, {'label': 'gratitude', 'score': 0.0043672723695635796}, {'label': 'anger', 'score': 0.004113285802304745}, {'label': 'pride', 'score': 0.0036389799788594246}, {'label': 'embarrassment', 'score': 0.0028886578511446714}, {'label': 'amusement', 'score': 0.002554128412157297}, {'label': 'surprise', 'score': 0.0024237551260739565}, {'label': 'disgust', 'score': 0.0022305354941636324}], [{'label': 'sadness', 'score': 0.799142599105835}, {'label': 'disappointment', 'score': 0.33149221539497375}, {'label': 'neutral', 'score': 0.02525954321026802}, {'label': 'annoyance', 'score': 0.01847103424370289}, {'label': 'grief', 'score': 0.01267511397600174}, {'label': 'realization', 'score': 0.01143453549593687}, {'label': 'disapproval', 'score': 0.011259547434747219}, {'label': 'remorse', 'score': 0.010760989040136337}, {'label': 'approval', 'score': 0.008438865654170513}, {'label': 'love', 'score': 0.006710757035762072}, {'label': 'nervousness', 'score': 0.006389991845935583}, {'label': 'admiration', 'score': 0.0060787927359342575}, {'label': 'anger', 'score': 0.005432345904409885}, {'label': 'caring', 'score': 0.004642943385988474}, {'label': 'joy', 'score': 0.004309017211198807}, {'label': 'curiosity', 'score': 0.004223261494189501}, {'label': 'optimism', 'score': 0.004074193071573973}, {'label': 'desire', 'score': 0.004039590712636709}, {'label': 'confusion', 'score': 0.003250732785090804}, {'label': 'fear', 'score': 0.0030424296855926514}, {'label': 'surprise', 'score': 0.0030389518942683935}, {'label': 'disgust', 'score': 0.0029621950816363096}, {'label': 'embarrassment', 'score': 0.00229476997628808}, {'label': 'amusement', 'score': 0.0021666008979082108}, {'label': 'excitement', 'score': 0.0018296116031706333}, {'label': 'relief', 'score': 0.001581780961714685}, {'label': 'gratitude', 'score': 0.0011130833299830556}, {'label': 'pride', 'score': 0.00040486050420440733}], [{'label': 'anger', 'score': 0.7306569218635559}, {'label': 'annoyance', 'score': 0.37402310967445374}, {'label': 'disapproval', 'score': 0.07961258292198181}, {'label': 'neutral', 'score': 0.07695703953504562}, {'label': 'disappointment', 'score': 0.02079847827553749}, {'label': 'disgust', 'score': 0.011783793568611145}, {'label': 'approval', 'score': 0.011673172004520893}, {'label': 'sadness', 'score': 0.011011452414095402}, {'label': 'confusion', 'score': 0.010586095042526722}, {'label': 'realization', 'score': 0.00807501282542944}, {'label': 'caring', 'score': 0.007484139874577522}, {'label': 'curiosity', 'score': 0.00522196851670742}, {'label': 'fear', 'score': 0.00426432304084301}, {'label': 'embarrassment', 'score': 0.0038717922288924456}, {'label': 'joy', 'score': 0.003842222737148404}, {'label': 'optimism', 'score': 0.0037866500206291676}, {'label': 'admiration', 'score': 0.002201096387580037}, {'label': 'nervousness', 'score': 0.001899483846500516}, {'label': 'desire', 'score': 0.0018939367728307843}, {'label': 'surprise', 'score': 0.0017384859966114163}, {'label': 'excitement', 'score': 0.0016303228912875056}, {'label': 'amusement', 'score': 0.0014365960378199816}, {'label': 'love', 'score': 0.0013086331309750676}, {'label': 'remorse', 'score': 0.001166630769148469}, {'label': 'grief', 'score': 0.0011169561184942722}, {'label': 'gratitude', 'score': 0.0010301728034392}, {'label': 'pride', 'score': 0.0009868498891592026}, {'label': 'relief', 'score': 0.0006641937070526183}], [{'label': 'fear', 'score': 0.5947180986404419}, {'label': 'nervousness', 'score': 0.34706321358680725}, {'label': 'sadness', 'score': 0.1495949774980545}, {'label': 'caring', 'score': 0.11392825096845627}, {'label': 'neutral', 'score': 0.038681261241436005}, {'label': 'approval', 'score': 0.026053903624415398}, {'label': 'disappointment', 'score': 0.02243790589272976}, {'label': 'realization', 'score': 0.019779836758971214}, {'label': 'admiration', 'score': 0.014823666773736477}, {'label': 'optimism', 'score': 0.013981304131448269}, {'label': 'joy', 'score': 0.011419760063290596}, {'label': 'grief', 'score': 0.010329024866223335}, {'label': 'confusion', 'score': 0.009651375003159046}, {'label': 'desire', 'score': 0.00914414506405592}, {'label': 'love', 'score': 0.009106702171266079}, {'label': 'relief', 'score': 0.008983980864286423}, {'label': 'annoyance', 'score': 0.008973903954029083}, {'label': 'disapproval', 'score': 0.008375775068998337}, {'label': 'excitement', 'score': 0.008189656771719456}, {'label': 'curiosity', 'score': 0.005362926982343197}, {'label': 'disgust', 'score': 0.004385629203170538}, {'label': 'remorse', 'score': 0.00419431971386075}, {'label': 'surprise', 'score': 0.0037818553391844034}, {'label': 'amusement', 'score': 0.0035533092450350523}, {'label': 'anger', 'score': 0.0035406036768108606}, {'label': 'embarrassment', 'score': 0.00273239822126925}, {'label': 'gratitude', 'score': 0.00243400689214468}, {'label': 'pride', 'score': 0.0020144896116107702}], [{'label': 'annoyance', 'score': 0.6230462193489075}, {'label': 'anger', 'score': 0.1608126163482666}, {'label': 'disappointment', 'score': 0.10856245458126068}, {'label': 'approval', 'score': 0.10509829968214035}, {'label': 'neutral', 'score': 0.07403332740068436}, {'label': 'admiration', 'score': 0.06769947707653046}, {'label': 'disapproval', 'score': 0.04816348850727081}, {'label': 'realization', 'score': 0.02452065236866474}, {'label': 'disgust', 'score': 0.014876020140945911}, {'label': 'caring', 'score': 0.010493249632418156}, {'label': 'optimism', 'score': 0.009649365209043026}, {'label': 'embarrassment', 'score': 0.00845193862915039}, {'label': 'pride', 'score': 0.007250023540109396}, {'label': 'sadness', 'score': 0.005294283386319876}, {'label': 'confusion', 'score': 0.004760153591632843}, {'label': 'gratitude', 'score': 0.0032365077640861273}, {'label': 'joy', 'score': 0.0030803708359599113}, {'label': 'relief', 'score': 0.002999919932335615}, {'label': 'nervousness', 'score': 0.00297032343223691}, {'label': 'fear', 'score': 0.0027852843049913645}, {'label': 'curiosity', 'score': 0.002562312176451087}, {'label': 'excitement', 'score': 0.002505048643797636}, {'label': 'desire', 'score': 0.0022332624066621065}, {'label': 'surprise', 'score': 0.0017494255444034934}, {'label': 'grief', 'score': 0.0012308974983170629}, {'label': 'remorse', 'score': 0.0012288785073906183}, {'label': 'love', 'score': 0.0008737393072806299}, {'label': 'amusement', 'score': 0.0006488192011602223}], [{'label': 'sadness', 'score': 0.6808692812919617}, {'label': 'nervousness', 'score': 0.3492908477783203}, {'label': 'fear', 'score': 0.24566011130809784}, {'label': 'disappointment', 'score': 0.09971769154071808}, {'label': 'curiosity', 'score': 0.0782260000705719}, {'label': 'confusion', 'score': 0.0591745562851429}, {'label': 'caring', 'score': 0.04334523156285286}, {'label': 'grief', 'score': 0.028190258890390396}, {'label': 'annoyance', 'score': 0.021794524043798447}, {'label': 'realization', 'score': 0.02051425538957119}, {'label': 'love', 'score': 0.019277488812804222}, {'label': 'neutral', 'score': 0.016932938247919083}, {'label': 'approval', 'score': 0.016575928777456284}, {'label': 'remorse', 'score': 0.014891603961586952}, {'label': 'admiration', 'score': 0.012724995613098145}, {'label': 'joy', 'score': 0.012292973697185516}, {'label': 'anger', 'score': 0.012258370406925678}, {'label': 'disapproval', 'score': 0.011671599000692368}, {'label': 'excitement', 'score': 0.008760666474699974}, {'label': 'surprise', 'score': 0.007834569551050663}, {'label': 'desire', 'score': 0.006536660250276327}, {'label': 'relief', 'score': 0.006190149579197168}, {'label': 'embarrassment', 'score': 0.0057616992853581905}, {'label': 'optimism', 'score': 0.005359125789254904}, {'label': 'disgust', 'score': 0.005101086106151342}, {'label': 'amusement', 'score': 0.0045475708320736885}, {'label': 'gratitude', 'score': 0.0022227533627301455}, {'label': 'pride', 'score': 0.0011283562052994967}], [{'label': 'sadness', 'score': 0.5265966057777405}, {'label': 'nervousness', 'score': 0.2936941385269165}, {'label': 'disappointment', 'score': 0.08675897121429443}, {'label': 'fear', 'score': 0.07133634388446808}, {'label': 'caring', 'score': 0.033648066222667694}, {'label': 'realization', 'score': 0.02246193215250969}, {'label': 'neutral', 'score': 0.021679440513253212}, {'label': 'approval', 'score': 0.01963878981769085}, {'label': 'joy', 'score': 0.0183787290006876}, {'label': 'annoyance', 'score': 0.01435862947255373}, {'label': 'grief', 'score': 0.0138897355645895}, {'label': 'confusion', 'score': 0.012359010986983776}, {'label': 'remorse', 'score': 0.010650294832885265}, {'label': 'love', 'score': 0.010526761412620544}, {'label': 'admiration', 'score': 0.009194866754114628}, {'label': 'curiosity', 'score': 0.008886129595339298}, {'label': 'relief', 'score': 0.008467918261885643}, {'label': 'excitement', 'score': 0.007468221243470907}, {'label': 'disapproval', 'score': 0.0071273548528552055}, {'label': 'desire', 'score': 0.00600822176784277}, {'label': 'amusement', 'score': 0.005074405111372471}, {'label': 'anger', 'score': 0.004015387501567602}, {'label': 'optimism', 'score': 0.003926460165530443}, {'label': 'embarrassment', 'score': 0.00352898589335382}, {'label': 'surprise', 'score': 0.0031414246186614037}, {'label': 'disgust', 'score': 0.0025346942711621523}, {'label': 'gratitude', 'score': 0.0021079627331346273}, {'label': 'pride', 'score': 0.0012512101093307137}], [{'label': 'sadness', 'score': 0.39820927381515503}, {'label': 'anger', 'score': 0.26025840640068054}, {'label': 'disappointment', 'score': 0.2201671004295349}, {'label': 'annoyance', 'score': 0.20071281492710114}, {'label': 'neutral', 'score': 0.04304913431406021}, {'label': 'curiosity', 'score': 0.030493514612317085}, {'label': 'confusion', 'score': 0.020472001284360886}, {'label': 'disapproval', 'score': 0.019260574132204056}, {'label': 'nervousness', 'score': 0.013430244289338589}, {'label': 'disgust', 'score': 0.0087530966848135}, {'label': 'caring', 'score': 0.008710429072380066}, {'label': 'realization', 'score': 0.007561587728559971}, {'label': 'grief', 'score': 0.007116285618394613}, {'label': 'fear', 'score': 0.007112731691449881}, {'label': 'approval', 'score': 0.00571325421333313}, {'label': 'remorse', 'score': 0.004802495241165161}, {'label': 'embarrassment', 'score': 0.00476472545415163}, {'label': 'joy', 'score': 0.0036325661931186914}, {'label': 'love', 'score': 0.003232247894629836}, {'label': 'desire', 'score': 0.003203937318176031}, {'label': 'surprise', 'score': 0.002789737656712532}, {'label': 'optimism', 'score': 0.0024253283627331257}, {'label': 'admiration', 'score': 0.002172870561480522}, {'label': 'excitement', 'score': 0.0019170849118381739}, {'label': 'amusement', 'score': 0.001543500809930265}, {'label': 'relief', 'score': 0.0010614808415994048}, {'label': 'gratitude', 'score': 0.0006812048377469182}, {'label': 'pride', 'score': 0.0005295180599205196}], [{'label': 'disappointment', 'score': 0.38612809777259827}, {'label': 'annoyance', 'score': 0.3175962269306183}, {'label': 'sadness', 'score': 0.14949503540992737}, {'label': 'anger', 'score': 0.11086838692426682}, {'label': 'disapproval', 'score': 0.06062011793255806}, {'label': 'nervousness', 'score': 0.04842658340930939}, {'label': 'confusion', 'score': 0.02546064555644989}, {'label': 'neutral', 'score': 0.02479591779410839}, {'label': 'fear', 'score': 0.01686077006161213}, {'label': 'realization', 'score': 0.013899778015911579}, {'label': 'approval', 'score': 0.011064858175814152}, {'label': 'curiosity', 'score': 0.010966107249259949}, {'label': 'caring', 'score': 0.008800837211310863}, {'label': 'disgust', 'score': 0.008614619262516499}, {'label': 'embarrassment', 'score': 0.006473544053733349}, {'label': 'joy', 'score': 0.005858069285750389}, {'label': 'love', 'score': 0.005395864602178335}, {'label': 'desire', 'score': 0.004340376704931259}, {'label': 'optimism', 'score': 0.0042791045270860195}, {'label': 'excitement', 'score': 0.0038556254003196955}, {'label': 'surprise', 'score': 0.0032380125485360622}, {'label': 'grief', 'score': 0.0031586543191224337}, {'label': 'remorse', 'score': 0.0028298047836869955}, {'label': 'admiration', 'score': 0.0026925092097371817}, {'label': 'relief', 'score': 0.002410364104434848}, {'label': 'amusement', 'score': 0.001488513546064496}, {'label': 'gratitude', 'score': 0.000960817385930568}, {'label': 'pride', 'score': 0.0008519779075868428}], [{'label': 'fear', 'score': 0.6051181554794312}, {'label': 'nervousness', 'score': 0.4513952434062958}, {'label': 'sadness', 'score': 0.07574353367090225}, {'label': 'neutral', 'score': 0.0501573346555233}, {'label': 'caring', 'score': 0.04464367777109146}, {'label': 'disappointment', 'score': 0.028929829597473145}, {'label': 'approval', 'score': 0.02311793901026249}, {'label': 'realization', 'score': 0.023035606369376183}, {'label': 'confusion', 'score': 0.019099855795502663}, {'label': 'optimism', 'score': 0.01325988583266735}, {'label': 'joy', 'score': 0.011359394527971745}, {'label': 'annoyance', 'score': 0.011085236445069313}, {'label': 'excitement', 'score': 0.009359222836792469}, {'label': 'admiration', 'score': 0.008630006574094296}, {'label': 'disapproval', 'score': 0.008308173157274723}, {'label': 'curiosity', 'score': 0.007916259579360485}, {'label': 'relief', 'score': 0.007185092195868492}, {'label': 'desire', 'score': 0.007001517340540886}, {'label': 'grief', 'score': 0.005571684334427118}, {'label': 'love', 'score': 0.005303227808326483}, {'label': 'surprise', 'score': 0.00437163095921278}, {'label': 'amusement', 'score': 0.0038985705468803644}, {'label': 'embarrassment', 'score': 0.0037997420877218246}, {'label': 'disgust', 'score': 0.0037170047871768475}, {'label': 'anger', 'score': 0.003657734487205744}, {'label': 'remorse', 'score': 0.003495741169899702}, {'label': 'gratitude', 'score': 0.0015525276539847255}, {'label': 'pride', 'score': 0.0014847266720607877}], [{'label': 'nervousness', 'score': 0.39855489134788513}, {'label': 'disappointment', 'score': 0.25591549277305603}, {'label': 'sadness', 'score': 0.250894695520401}, {'label': 'fear', 'score': 0.09436462074518204}, {'label': 'annoyance', 'score': 0.04021066054701805}, {'label': 'neutral', 'score': 0.03815273568034172}, {'label': 'confusion', 'score': 0.03579041734337807}, {'label': 'realization', 'score': 0.033304739743471146}, {'label': 'caring', 'score': 0.030568554997444153}, {'label': 'approval', 'score': 0.030102062970399857}, {'label': 'disapproval', 'score': 0.02317694015800953}, {'label': 'joy', 'score': 0.013122635893523693}, {'label': 'curiosity', 'score': 0.011777997948229313}, {'label': 'optimism', 'score': 0.010085757821798325}, {'label': 'relief', 'score': 0.009473905898630619}, {'label': 'grief', 'score': 0.006826052442193031}, {'label': 'remorse', 'score': 0.006773968692868948}, {'label': 'admiration', 'score': 0.006557927466928959}, {'label': 'excitement', 'score': 0.006456713657826185}, {'label': 'embarrassment', 'score': 0.0059497239999473095}, {'label': 'anger', 'score': 0.005229342728853226}, {'label': 'love', 'score': 0.005218323320150375}, {'label': 'desire', 'score': 0.0046175098977983}, {'label': 'surprise', 'score': 0.0035608606413006783}, {'label': 'disgust', 'score': 0.002956564072519541}, {'label': 'amusement', 'score': 0.0023792542051523924}, {'label': 'pride', 'score': 0.0012447076151147485}, {'label': 'gratitude', 'score': 0.0010779184522107244}], [{'label': 'disappointment', 'score': 0.4453599750995636}, {'label': 'optimism', 'score': 0.3119153678417206}, {'label': 'annoyance', 'score': 0.1475725769996643}, {'label': 'sadness', 'score': 0.0876912996172905}, {'label': 'caring', 'score': 0.06445132195949554}, {'label': 'disapproval', 'score': 0.053038086742162704}, {'label': 'desire', 'score': 0.035629257559776306}, {'label': 'joy', 'score': 0.03481277450919151}, {'label': 'neutral', 'score': 0.029837176203727722}, {'label': 'realization', 'score': 0.029268791899085045}, {'label': 'approval', 'score': 0.027582038193941116}, {'label': 'relief', 'score': 0.02328627184033394}, {'label': 'remorse', 'score': 0.01824149675667286}, {'label': 'nervousness', 'score': 0.017231516540050507}, {'label': 'anger', 'score': 0.013166490010917187}, {'label': 'gratitude', 'score': 0.011457174085080624}, {'label': 'grief', 'score': 0.006071646232157946}, {'label': 'fear', 'score': 0.004769077990204096}, {'label': 'admiration', 'score': 0.0047300816513597965}, {'label': 'embarrassment', 'score': 0.004443405196070671}, {'label': 'pride', 'score': 0.004273766651749611}, {'label': 'confusion', 'score': 0.004053256008774042}, {'label': 'excitement', 'score': 0.0032414630986750126}, {'label': 'disgust', 'score': 0.0030554323457181454}, {'label': 'love', 'score': 0.0021935312543064356}, {'label': 'surprise', 'score': 0.0021166468504816294}, {'label': 'amusement', 'score': 0.0018785542342811823}, {'label': 'curiosity', 'score': 0.0015445859171450138}], [{'label': 'sadness', 'score': 0.6421706676483154}, {'label': 'fear', 'score': 0.21185007691383362}, {'label': 'nervousness', 'score': 0.159821018576622}, {'label': 'disappointment', 'score': 0.09445372223854065}, {'label': 'caring', 'score': 0.04845891892910004}, {'label': 'annoyance', 'score': 0.03213406354188919}, {'label': 'neutral', 'score': 0.027256537228822708}, {'label': 'approval', 'score': 0.025502562522888184}, {'label': 'realization', 'score': 0.023224014788866043}, {'label': 'grief', 'score': 0.017997482791543007}, {'label': 'disapproval', 'score': 0.012974947690963745}, {'label': 'anger', 'score': 0.010440420359373093}, {'label': 'admiration', 'score': 0.008477984927594662}, {'label': 'confusion', 'score': 0.007738005369901657}, {'label': 'curiosity', 'score': 0.007415256462991238}, {'label': 'disgust', 'score': 0.007093264255672693}, {'label': 'joy', 'score': 0.006527324207127094}, {'label': 'optimism', 'score': 0.006069488357752562}, {'label': 'remorse', 'score': 0.005239234305918217}, {'label': 'relief', 'score': 0.004600234795361757}, {'label': 'embarrassment', 'score': 0.004269555676728487}, {'label': 'love', 'score': 0.0038493305910378695}, {'label': 'excitement', 'score': 0.0033022856805473566}, {'label': 'desire', 'score': 0.0032718470320105553}, {'label': 'amusement', 'score': 0.0028734200168401003}, {'label': 'surprise', 'score': 0.0024806195870041847}, {'label': 'pride', 'score': 0.0011052838526666164}, {'label': 'gratitude', 'score': 0.000779888010583818}], [{'label': 'sadness', 'score': 0.7653568387031555}, {'label': 'disappointment', 'score': 0.13208261132240295}, {'label': 'anger', 'score': 0.10074826329946518}, {'label': 'annoyance', 'score': 0.09099988639354706}, {'label': 'neutral', 'score': 0.025461561977863312}, {'label': 'grief', 'score': 0.016239549964666367}, {'label': 'disapproval', 'score': 0.014629727229475975}, {'label': 'caring', 'score': 0.014476587995886803}, {'label': 'realization', 'score': 0.011576075106859207}, {'label': 'approval', 'score': 0.010964829474687576}, {'label': 'disgust', 'score': 0.00913929007947445}, {'label': 'remorse', 'score': 0.007829356007277966}, {'label': 'nervousness', 'score': 0.0063634770922362804}, {'label': 'curiosity', 'score': 0.005634086672216654}, {'label': 'admiration', 'score': 0.004758369643241167}, {'label': 'fear', 'score': 0.00447723176330328}, {'label': 'confusion', 'score': 0.004408371634781361}, {'label': 'joy', 'score': 0.003789817448705435}, {'label': 'desire', 'score': 0.0035444649402052164}, {'label': 'love', 'score': 0.0034582545049488544}, {'label': 'embarrassment', 'score': 0.00289589399471879}, {'label': 'optimism', 'score': 0.002540100831538439}, {'label': 'amusement', 'score': 0.001604805001989007}, {'label': 'relief', 'score': 0.001431041513569653}, {'label': 'gratitude', 'score': 0.0014121083077043295}, {'label': 'surprise', 'score': 0.001248722430318594}, {'label': 'excitement', 'score': 0.001049489015713334}, {'label': 'pride', 'score': 0.000645333610009402}], [{'label': 'nervousness', 'score': 0.5076065063476562}, {'label': 'fear', 'score': 0.1641187220811844}, {'label': 'confusion', 'score': 0.106094129383564}, {'label': 'neutral', 'score': 0.10447469353675842}, {'label': 'caring', 'score': 0.07691596448421478}, {'label': 'approval', 'score': 0.05375087261199951}, {'label': 'realization', 'score': 0.04298947751522064}, {'label': 'sadness', 'score': 0.029119964689016342}, {'label': 'excitement', 'score': 0.023190462961792946}, {'label': 'joy', 'score': 0.022525789216160774}, {'label': 'disappointment', 'score': 0.021243412047624588}, {'label': 'curiosity', 'score': 0.018218839541077614}, {'label': 'relief', 'score': 0.016017140820622444}, {'label': 'optimism', 'score': 0.014800556935369968}, {'label': 'disapproval', 'score': 0.012081960216164589}, {'label': 'desire', 'score': 0.010731875896453857}, {'label': 'annoyance', 'score': 0.009055721573531628}, {'label': 'admiration', 'score': 0.008417402394115925}, {'label': 'love', 'score': 0.005378618370741606}, {'label': 'surprise', 'score': 0.004668753128498793}, {'label': 'remorse', 'score': 0.004238859284669161}, {'label': 'grief', 'score': 0.0034217722713947296}, {'label': 'embarrassment', 'score': 0.003410531673580408}, {'label': 'pride', 'score': 0.002335374942049384}, {'label': 'gratitude', 'score': 0.002310497220605612}, {'label': 'amusement', 'score': 0.0022906523663550615}, {'label': 'anger', 'score': 0.0020776125602424145}, {'label': 'disgust', 'score': 0.001522829057648778}], [{'label': 'fear', 'score': 0.7700478434562683}, {'label': 'nervousness', 'score': 0.22103816270828247}, {'label': 'sadness', 'score': 0.10691068321466446}, {'label': 'neutral', 'score': 0.03969763219356537}, {'label': 'desire', 'score': 0.03664140775799751}, {'label': 'disappointment', 'score': 0.03412136808037758}, {'label': 'caring', 'score': 0.024059878662228584}, {'label': 'realization', 'score': 0.020697107538580894}, {'label': 'optimism', 'score': 0.01809188723564148}, {'label': 'approval', 'score': 0.013172917068004608}, {'label': 'confusion', 'score': 0.012461214326322079}, {'label': 'annoyance', 'score': 0.01136800367385149}, {'label': 'love', 'score': 0.010924763977527618}, {'label': 'disapproval', 'score': 0.01074591837823391}, {'label': 'disgust', 'score': 0.008540110662579536}, {'label': 'excitement', 'score': 0.008278727531433105}, {'label': 'grief', 'score': 0.007994640618562698}, {'label': 'surprise', 'score': 0.007587381638586521}, {'label': 'curiosity', 'score': 0.0075144777074456215}, {'label': 'admiration', 'score': 0.007156853098422289}, {'label': 'joy', 'score': 0.006629995536059141}, {'label': 'anger', 'score': 0.006155491806566715}, {'label': 'relief', 'score': 0.0037768143229186535}, {'label': 'embarrassment', 'score': 0.003295893082395196}, {'label': 'remorse', 'score': 0.003207441885024309}, {'label': 'amusement', 'score': 0.0028017780277878046}, {'label': 'pride', 'score': 0.0013432608684524894}, {'label': 'gratitude', 'score': 0.001233806717209518}], [{'label': 'sadness', 'score': 0.4182494282722473}, {'label': 'nervousness', 'score': 0.2201559692621231}, {'label': 'caring', 'score': 0.16878262162208557}, {'label': 'joy', 'score': 0.1462240070104599}, {'label': 'approval', 'score': 0.0515352264046669}, {'label': 'love', 'score': 0.04973975569009781}, {'label': 'disappointment', 'score': 0.04009123891592026}, {'label': 'relief', 'score': 0.039916008710861206}, {'label': 'fear', 'score': 0.03529849648475647}, {'label': 'realization', 'score': 0.02376563288271427}, {'label': 'neutral', 'score': 0.02217158116400242}, {'label': 'admiration', 'score': 0.019755065441131592}, {'label': 'grief', 'score': 0.018063265830278397}, {'label': 'remorse', 'score': 0.014219144359230995}, {'label': 'excitement', 'score': 0.013796532526612282}, {'label': 'annoyance', 'score': 0.010984000749886036}, {'label': 'confusion', 'score': 0.008657071739435196}, {'label': 'desire', 'score': 0.008035723119974136}, {'label': 'optimism', 'score': 0.007552003487944603}, {'label': 'gratitude', 'score': 0.00701732886955142}, {'label': 'disapproval', 'score': 0.006917097605764866}, {'label': 'curiosity', 'score': 0.0066397227346897125}, {'label': 'pride', 'score': 0.00484338216483593}, {'label': 'anger', 'score': 0.0042531914077699184}, {'label': 'amusement', 'score': 0.003947093617171049}, {'label': 'embarrassment', 'score': 0.0029229160863906145}, {'label': 'surprise', 'score': 0.0024260126519948244}, {'label': 'disgust', 'score': 0.0019329598871991038}], [{'label': 'annoyance', 'score': 0.5626811385154724}, {'label': 'anger', 'score': 0.5203112363815308}, {'label': 'neutral', 'score': 0.08094965666532516}, {'label': 'disappointment', 'score': 0.04175916686654091}, {'label': 'disapproval', 'score': 0.03851330280303955}, {'label': 'approval', 'score': 0.022771762683987617}, {'label': 'realization', 'score': 0.02056000754237175}, {'label': 'disgust', 'score': 0.01144375093281269}, {'label': 'sadness', 'score': 0.009519428014755249}, {'label': 'caring', 'score': 0.007596693467348814}, {'label': 'optimism', 'score': 0.007505468092858791}, {'label': 'confusion', 'score': 0.005544929765164852}, {'label': 'embarrassment', 'score': 0.00490955077111721}, {'label': 'desire', 'score': 0.004555745981633663}, {'label': 'curiosity', 'score': 0.0032165609300136566}, {'label': 'fear', 'score': 0.002480913419276476}, {'label': 'joy', 'score': 0.0019081969512626529}, {'label': 'nervousness', 'score': 0.0018471780931577086}, {'label': 'admiration', 'score': 0.0018468658672645688}, {'label': 'remorse', 'score': 0.0015278327045962214}, {'label': 'surprise', 'score': 0.001420569489710033}, {'label': 'pride', 'score': 0.0011083605932071805}, {'label': 'grief', 'score': 0.0010061167413368821}, {'label': 'excitement', 'score': 0.0009885686449706554}, {'label': 'amusement', 'score': 0.0009771869517862797}, {'label': 'love', 'score': 0.0008351642754860222}, {'label': 'relief', 'score': 0.0007647396996617317}, {'label': 'gratitude', 'score': 0.0007191429031081498}], [{'label': 'nervousness', 'score': 0.3278949558734894}, {'label': 'sadness', 'score': 0.3082946836948395}, {'label': 'caring', 'score': 0.22352822124958038}, {'label': 'fear', 'score': 0.14006714522838593}, {'label': 'disappointment', 'score': 0.07655207067728043}, {'label': 'annoyance', 'score': 0.04827658832073212}, {'label': 'neutral', 'score': 0.025639733299613}, {'label': 'anger', 'score': 0.02190239727497101}, {'label': 'approval', 'score': 0.020077534019947052}, {'label': 'disapproval', 'score': 0.017620939761400223}, {'label': 'realization', 'score': 0.015960747376084328}, {'label': 'confusion', 'score': 0.01208497118204832}, {'label': 'curiosity', 'score': 0.011308378539979458}, {'label': 'grief', 'score': 0.010586694814264774}, {'label': 'desire', 'score': 0.010468147695064545}, {'label': 'optimism', 'score': 0.010356107726693153}, {'label': 'love', 'score': 0.009324361570179462}, {'label': 'joy', 'score': 0.008718342520296574}, {'label': 'admiration', 'score': 0.008061080239713192}, {'label': 'remorse', 'score': 0.007300140801817179}, {'label': 'relief', 'score': 0.007216228172183037}, {'label': 'excitement', 'score': 0.005506246816366911}, {'label': 'disgust', 'score': 0.004001024644821882}, {'label': 'embarrassment', 'score': 0.0033273135777562857}, {'label': 'surprise', 'score': 0.002307445742189884}, {'label': 'gratitude', 'score': 0.001782195526175201}, {'label': 'pride', 'score': 0.0016811785753816366}, {'label': 'amusement', 'score': 0.0014659627340734005}], [{'label': 'sadness', 'score': 0.6435937881469727}, {'label': 'nervousness', 'score': 0.17818093299865723}, {'label': 'disappointment', 'score': 0.08291996270418167}, {'label': 'fear', 'score': 0.03705025836825371}, {'label': 'approval', 'score': 0.03303409740328789}, {'label': 'realization', 'score': 0.03014267049729824}, {'label': 'joy', 'score': 0.030087832361459732}, {'label': 'caring', 'score': 0.028789957985281944}, {'label': 'neutral', 'score': 0.027557693421840668}, {'label': 'grief', 'score': 0.01695110835134983}, {'label': 'annoyance', 'score': 0.01309999730437994}, {'label': 'love', 'score': 0.011962857097387314}, {'label': 'relief', 'score': 0.0117705799639225}, {'label': 'remorse', 'score': 0.009796680882573128}, {'label': 'admiration', 'score': 0.009123844094574451}, {'label': 'confusion', 'score': 0.008054928854107857}, {'label': 'excitement', 'score': 0.007597215007990599}, {'label': 'disapproval', 'score': 0.007269099820405245}, {'label': 'curiosity', 'score': 0.006037229672074318}, {'label': 'desire', 'score': 0.0056624021381139755}, {'label': 'amusement', 'score': 0.004586667288094759}, {'label': 'anger', 'score': 0.0032939654774963856}, {'label': 'embarrassment', 'score': 0.003290451131761074}, {'label': 'optimism', 'score': 0.003128564218059182}, {'label': 'surprise', 'score': 0.0027017644606530666}, {'label': 'disgust', 'score': 0.0024496533442288637}, {'label': 'gratitude', 'score': 0.0017727829981595278}, {'label': 'pride', 'score': 0.0016619222005829215}], [{'label': 'disgust', 'score': 0.40552741289138794}, {'label': 'annoyance', 'score': 0.2765160799026489}, {'label': 'anger', 'score': 0.1796445995569229}, {'label': 'disappointment', 'score': 0.11635082960128784}, {'label': 'sadness', 'score': 0.06687714904546738}, {'label': 'disapproval', 'score': 0.04112062603235245}, {'label': 'neutral', 'score': 0.018833128735423088}, {'label': 'embarrassment', 'score': 0.015171362087130547}, {'label': 'fear', 'score': 0.013175657019019127}, {'label': 'approval', 'score': 0.008463391102850437}, {'label': 'curiosity', 'score': 0.00565381720662117}, {'label': 'realization', 'score': 0.00495055690407753}, {'label': 'admiration', 'score': 0.003728720126673579}, {'label': 'confusion', 'score': 0.003604906378313899}, {'label': 'love', 'score': 0.0031543211080133915}, {'label': 'nervousness', 'score': 0.0030677858740091324}, {'label': 'desire', 'score': 0.002877945778891444}, {'label': 'caring', 'score': 0.002625806722790003}, {'label': 'optimism', 'score': 0.0025222301483154297}, {'label': 'surprise', 'score': 0.001834013732150197}, {'label': 'grief', 'score': 0.0017851906595751643}, {'label': 'remorse', 'score': 0.0016784468898549676}, {'label': 'excitement', 'score': 0.0016572364838793874}, {'label': 'joy', 'score': 0.0015799888642504811}, {'label': 'amusement', 'score': 0.0014870739541947842}, {'label': 'gratitude', 'score': 0.0012492102105170488}, {'label': 'relief', 'score': 0.0005807059933431447}, {'label': 'pride', 'score': 0.0005682340124621987}], [{'label': 'sadness', 'score': 0.48304885625839233}, {'label': 'nervousness', 'score': 0.30813542008399963}, {'label': 'fear', 'score': 0.1792072057723999}, {'label': 'caring', 'score': 0.14834828674793243}, {'label': 'disappointment', 'score': 0.06442196667194366}, {'label': 'gratitude', 'score': 0.04213283210992813}, {'label': 'relief', 'score': 0.037659771740436554}, {'label': 'joy', 'score': 0.03738100081682205}, {'label': 'admiration', 'score': 0.03446836769580841}, {'label': 'approval', 'score': 0.033613283187150955}, {'label': 'grief', 'score': 0.03340144455432892}, {'label': 'remorse', 'score': 0.03268050402402878}, {'label': 'realization', 'score': 0.025851402431726456}, {'label': 'confusion', 'score': 0.022520501166582108}, {'label': 'optimism', 'score': 0.017008796334266663}, {'label': 'curiosity', 'score': 0.015400406904518604}, {'label': 'neutral', 'score': 0.013608924113214016}, {'label': 'excitement', 'score': 0.012228810228407383}, {'label': 'annoyance', 'score': 0.009744995273649693}, {'label': 'love', 'score': 0.008895007893443108}, {'label': 'disapproval', 'score': 0.008019316010177135}, {'label': 'desire', 'score': 0.006055754143744707}, {'label': 'surprise', 'score': 0.006029465701431036}, {'label': 'embarrassment', 'score': 0.005151278804987669}, {'label': 'pride', 'score': 0.005044595338404179}, {'label': 'anger', 'score': 0.004256872460246086}, {'label': 'disgust', 'score': 0.0024284350220113993}, {'label': 'amusement', 'score': 0.0023932515177875757}], [{'label': 'fear', 'score': 0.5451774001121521}, {'label': 'sadness', 'score': 0.4104996621608734}, {'label': 'nervousness', 'score': 0.08706873655319214}, {'label': 'disappointment', 'score': 0.08691655844449997}, {'label': 'neutral', 'score': 0.03919493407011032}, {'label': 'annoyance', 'score': 0.019557639956474304}, {'label': 'realization', 'score': 0.017492657527327538}, {'label': 'disapproval', 'score': 0.015550456941127777}, {'label': 'grief', 'score': 0.013274367898702621}, {'label': 'approval', 'score': 0.012214615009725094}, {'label': 'disgust', 'score': 0.011162272654473782}, {'label': 'caring', 'score': 0.010725094936788082}, {'label': 'anger', 'score': 0.009888512082397938}, {'label': 'admiration', 'score': 0.005518166348338127}, {'label': 'optimism', 'score': 0.005302644334733486}, {'label': 'surprise', 'score': 0.0051973797380924225}, {'label': 'confusion', 'score': 0.004794666543602943}, {'label': 'desire', 'score': 0.004749095067381859}, {'label': 'joy', 'score': 0.0043855044059455395}, {'label': 'love', 'score': 0.004375657066702843}, {'label': 'embarrassment', 'score': 0.003809635527431965}, {'label': 'relief', 'score': 0.00298331375233829}, {'label': 'remorse', 'score': 0.0029503493569791317}, {'label': 'curiosity', 'score': 0.002869101706892252}, {'label': 'excitement', 'score': 0.0027563495095819235}, {'label': 'amusement', 'score': 0.0021785912103950977}, {'label': 'gratitude', 'score': 0.0011291858972981572}, {'label': 'pride', 'score': 0.0009001211728900671}], [{'label': 'nervousness', 'score': 0.47314968705177307}, {'label': 'fear', 'score': 0.33225712180137634}, {'label': 'caring', 'score': 0.1813361644744873}, {'label': 'confusion', 'score': 0.14509284496307373}, {'label': 'optimism', 'score': 0.10463154315948486}, {'label': 'disappointment', 'score': 0.08888726681470871}, {'label': 'sadness', 'score': 0.07737885415554047}, {'label': 'curiosity', 'score': 0.07619481533765793}, {'label': 'approval', 'score': 0.06885549426078796}, {'label': 'admiration', 'score': 0.04506267234683037}, {'label': 'neutral', 'score': 0.0320955365896225}, {'label': 'disapproval', 'score': 0.03110368549823761}, {'label': 'realization', 'score': 0.029562421143054962}, {'label': 'joy', 'score': 0.021126748993992805}, {'label': 'annoyance', 'score': 0.01692861318588257}, {'label': 'relief', 'score': 0.015820633620023727}, {'label': 'excitement', 'score': 0.0152752585709095}, {'label': 'desire', 'score': 0.011330781504511833}, {'label': 'remorse', 'score': 0.009025830775499344}, {'label': 'love', 'score': 0.008769598789513111}, {'label': 'grief', 'score': 0.008292276412248611}, {'label': 'surprise', 'score': 0.006437730509787798}, {'label': 'anger', 'score': 0.0048163533210754395}, {'label': 'embarrassment', 'score': 0.0038340985774993896}, {'label': 'pride', 'score': 0.0034140327479690313}, {'label': 'disgust', 'score': 0.0021336947102099657}, {'label': 'gratitude', 'score': 0.0020306999795138836}, {'label': 'amusement', 'score': 0.0018319644732400775}], [{'label': 'sadness', 'score': 0.7383189797401428}, {'label': 'disappointment', 'score': 0.17748214304447174}, {'label': 'nervousness', 'score': 0.06315520405769348}, {'label': 'neutral', 'score': 0.023951148614287376}, {'label': 'fear', 'score': 0.020628251135349274}, {'label': 'realization', 'score': 0.019941464066505432}, {'label': 'annoyance', 'score': 0.01815940998494625}, {'label': 'approval', 'score': 0.016752641648054123}, {'label': 'grief', 'score': 0.015213740058243275}, {'label': 'caring', 'score': 0.012544596567749977}, {'label': 'joy', 'score': 0.01062167901545763}, {'label': 'disapproval', 'score': 0.010124508291482925}, {'label': 'admiration', 'score': 0.007670577149838209}, {'label': 'remorse', 'score': 0.007636447437107563}, {'label': 'love', 'score': 0.006658048834651709}, {'label': 'relief', 'score': 0.00524119520559907}, {'label': 'confusion', 'score': 0.004543124232441187}, {'label': 'desire', 'score': 0.004033318720757961}, {'label': 'anger', 'score': 0.003853772534057498}, {'label': 'curiosity', 'score': 0.003473259275779128}, {'label': 'optimism', 'score': 0.0032958572264760733}, {'label': 'excitement', 'score': 0.0032671247608959675}, {'label': 'disgust', 'score': 0.00286531331948936}, {'label': 'amusement', 'score': 0.0026831552386283875}, {'label': 'embarrassment', 'score': 0.0026194131933152676}, {'label': 'surprise', 'score': 0.0024348406586796045}, {'label': 'gratitude', 'score': 0.0015281186206266284}, {'label': 'pride', 'score': 0.0008600286673754454}], [{'label': 'sadness', 'score': 0.4110681712627411}, {'label': 'desire', 'score': 0.28006303310394287}, {'label': 'neutral', 'score': 0.12051437050104141}, {'label': 'disappointment', 'score': 0.10646931082010269}, {'label': 'caring', 'score': 0.06505931913852692}, {'label': 'approval', 'score': 0.02890961803495884}, {'label': 'nervousness', 'score': 0.0248867254704237}, {'label': 'annoyance', 'score': 0.015264245681464672}, {'label': 'realization', 'score': 0.015096969902515411}, {'label': 'optimism', 'score': 0.014760651625692844}, {'label': 'disapproval', 'score': 0.014249981380999088}, {'label': 'joy', 'score': 0.010829353705048561}, {'label': 'remorse', 'score': 0.009487616829574108}, {'label': 'grief', 'score': 0.009336305782198906}, {'label': 'relief', 'score': 0.007640962488949299}, {'label': 'admiration', 'score': 0.00594040472060442}, {'label': 'love', 'score': 0.005419798195362091}, {'label': 'curiosity', 'score': 0.004857530351728201}, {'label': 'fear', 'score': 0.004425221588462591}, {'label': 'excitement', 'score': 0.004266832023859024}, {'label': 'disgust', 'score': 0.0032829316332936287}, {'label': 'confusion', 'score': 0.0030653513967990875}, {'label': 'anger', 'score': 0.0017195178661495447}, {'label': 'embarrassment', 'score': 0.0016577966744080186}, {'label': 'amusement', 'score': 0.0016349669313058257}, {'label': 'pride', 'score': 0.0014954943908378482}, {'label': 'surprise', 'score': 0.0014488394372165203}, {'label': 'gratitude', 'score': 0.0012170149711892009}], [{'label': 'fear', 'score': 0.7083337903022766}, {'label': 'nervousness', 'score': 0.3599632680416107}, {'label': 'sadness', 'score': 0.043981149792671204}, {'label': 'annoyance', 'score': 0.03483324497938156}, {'label': 'caring', 'score': 0.03429345786571503}, {'label': 'disappointment', 'score': 0.027441570535302162}, {'label': 'neutral', 'score': 0.025931864976882935}, {'label': 'confusion', 'score': 0.021979382261633873}, {'label': 'disapproval', 'score': 0.02008604072034359}, {'label': 'approval', 'score': 0.019364919513463974}, {'label': 'anger', 'score': 0.01636420376598835}, {'label': 'realization', 'score': 0.016251398250460625}, {'label': 'joy', 'score': 0.011745872907340527}, {'label': 'disgust', 'score': 0.009714272804558277}, {'label': 'excitement', 'score': 0.008978013880550861}, {'label': 'optimism', 'score': 0.00872010551393032}, {'label': 'curiosity', 'score': 0.00812472403049469}, {'label': 'admiration', 'score': 0.00793094839900732}, {'label': 'love', 'score': 0.0077993180602788925}, {'label': 'amusement', 'score': 0.006099446676671505}, {'label': 'embarrassment', 'score': 0.00550630921497941}, {'label': 'relief', 'score': 0.004929910879582167}, {'label': 'desire', 'score': 0.004688179586082697}, {'label': 'grief', 'score': 0.00421221274882555}, {'label': 'surprise', 'score': 0.003824412589892745}, {'label': 'remorse', 'score': 0.0021898606792092323}, {'label': 'gratitude', 'score': 0.00188770133536309}, {'label': 'pride', 'score': 0.0013818147126585245}], [{'label': 'desire', 'score': 0.5842171311378479}, {'label': 'sadness', 'score': 0.3182068467140198}, {'label': 'admiration', 'score': 0.10479822009801865}, {'label': 'gratitude', 'score': 0.10086274892091751}, {'label': 'disappointment', 'score': 0.08437387645244598}, {'label': 'joy', 'score': 0.045283667743206024}, {'label': 'caring', 'score': 0.04188932850956917}, {'label': 'approval', 'score': 0.03402706980705261}, {'label': 'optimism', 'score': 0.03400326892733574}, {'label': 'remorse', 'score': 0.030130915343761444}, {'label': 'relief', 'score': 0.019885141402482986}, {'label': 'grief', 'score': 0.018800050020217896}, {'label': 'love', 'score': 0.01825680397450924}, {'label': 'neutral', 'score': 0.016415206715464592}, {'label': 'realization', 'score': 0.01628699339926243}, {'label': 'disapproval', 'score': 0.015341459773480892}, {'label': 'annoyance', 'score': 0.011653021909296513}, {'label': 'excitement', 'score': 0.01094819139689207}, {'label': 'pride', 'score': 0.010363636538386345}, {'label': 'nervousness', 'score': 0.008133694529533386}, {'label': 'disgust', 'score': 0.004852719604969025}, {'label': 'curiosity', 'score': 0.004018647596240044}, {'label': 'fear', 'score': 0.0032310239039361477}, {'label': 'confusion', 'score': 0.0031485180370509624}, {'label': 'anger', 'score': 0.003110527992248535}, {'label': 'surprise', 'score': 0.0027899951674044132}, {'label': 'embarrassment', 'score': 0.002550714649260044}, {'label': 'amusement', 'score': 0.0011806396069005132}], [{'label': 'annoyance', 'score': 0.4778470993041992}, {'label': 'anger', 'score': 0.32160401344299316}, {'label': 'neutral', 'score': 0.23702044785022736}, {'label': 'disappointment', 'score': 0.028130192309617996}, {'label': 'disapproval', 'score': 0.024013103917241096}, {'label': 'approval', 'score': 0.01846570149064064}, {'label': 'realization', 'score': 0.010524163953959942}, {'label': 'sadness', 'score': 0.009661183692514896}, {'label': 'disgust', 'score': 0.009409197606146336}, {'label': 'caring', 'score': 0.006495958659797907}, {'label': 'joy', 'score': 0.005004926584661007}, {'label': 'optimism', 'score': 0.004593985620886087}, {'label': 'embarrassment', 'score': 0.0023863408714532852}, {'label': 'desire', 'score': 0.0023525983560830355}, {'label': 'amusement', 'score': 0.0022780003491789103}, {'label': 'admiration', 'score': 0.001967074116691947}, {'label': 'confusion', 'score': 0.001659016590565443}, {'label': 'fear', 'score': 0.0011626457562670112}, {'label': 'pride', 'score': 0.0011362890945747495}, {'label': 'curiosity', 'score': 0.001091827405616641}, {'label': 'excitement', 'score': 0.0010390348033979535}, {'label': 'nervousness', 'score': 0.000985856051556766}, {'label': 'grief', 'score': 0.0008536425302736461}, {'label': 'relief', 'score': 0.0008178583811968565}, {'label': 'surprise', 'score': 0.0007315744878724217}, {'label': 'remorse', 'score': 0.0005991722573526204}, {'label': 'love', 'score': 0.0005360249779187143}, {'label': 'gratitude', 'score': 0.0003138305910397321}], [{'label': 'sadness', 'score': 0.7341554760932922}, {'label': 'disappointment', 'score': 0.17108702659606934}, {'label': 'remorse', 'score': 0.029091861099004745}, {'label': 'approval', 'score': 0.024136345833539963}, {'label': 'neutral', 'score': 0.022096265107393265}, {'label': 'annoyance', 'score': 0.020285002887248993}, {'label': 'joy', 'score': 0.01848304644227028}, {'label': 'realization', 'score': 0.016458716243505478}, {'label': 'grief', 'score': 0.014838707633316517}, {'label': 'admiration', 'score': 0.012022689916193485}, {'label': 'disapproval', 'score': 0.01085774414241314}, {'label': 'caring', 'score': 0.009650376625359058}, {'label': 'relief', 'score': 0.006360996048897505}, {'label': 'nervousness', 'score': 0.005092913284897804}, {'label': 'anger', 'score': 0.004687267355620861}, {'label': 'love', 'score': 0.004177597817033529}, {'label': 'gratitude', 'score': 0.004133361391723156}, {'label': 'embarrassment', 'score': 0.0036286835093051195}, {'label': 'desire', 'score': 0.0030532297678291798}, {'label': 'disgust', 'score': 0.002170929918065667}, {'label': 'optimism', 'score': 0.0021447089966386557}, {'label': 'amusement', 'score': 0.0018557221628725529}, {'label': 'excitement', 'score': 0.0018314195331186056}, {'label': 'confusion', 'score': 0.0016454299911856651}, {'label': 'curiosity', 'score': 0.001478346879594028}, {'label': 'fear', 'score': 0.001406898139975965}, {'label': 'pride', 'score': 0.001344680436886847}, {'label': 'surprise', 'score': 0.0010818925220519304}], [{'label': 'fear', 'score': 0.6404237151145935}, {'label': 'nervousness', 'score': 0.4855403006076813}, {'label': 'sadness', 'score': 0.06676505506038666}, {'label': 'caring', 'score': 0.05670179799199104}, {'label': 'approval', 'score': 0.03680664673447609}, {'label': 'joy', 'score': 0.03557213023304939}, {'label': 'neutral', 'score': 0.03013630211353302}, {'label': 'realization', 'score': 0.02878619357943535}, {'label': 'disappointment', 'score': 0.024982085451483727}, {'label': 'relief', 'score': 0.0170216616243124}, {'label': 'annoyance', 'score': 0.016443656757473946}, {'label': 'admiration', 'score': 0.016064254567027092}, {'label': 'excitement', 'score': 0.014618960209190845}, {'label': 'confusion', 'score': 0.014150491915643215}, {'label': 'optimism', 'score': 0.01136642787605524}, {'label': 'disapproval', 'score': 0.011119364760816097}, {'label': 'grief', 'score': 0.006902866996824741}, {'label': 'love', 'score': 0.00613153912127018}, {'label': 'anger', 'score': 0.0057549974881112576}, {'label': 'amusement', 'score': 0.005630699917674065}, {'label': 'desire', 'score': 0.004962756298482418}, {'label': 'embarrassment', 'score': 0.004691838752478361}, {'label': 'curiosity', 'score': 0.004679978359490633}, {'label': 'surprise', 'score': 0.004418069962412119}, {'label': 'disgust', 'score': 0.004296841099858284}, {'label': 'gratitude', 'score': 0.003926689736545086}, {'label': 'remorse', 'score': 0.0033652225974947214}, {'label': 'pride', 'score': 0.0032312371768057346}], [{'label': 'optimism', 'score': 0.6275351643562317}, {'label': 'caring', 'score': 0.36327505111694336}, {'label': 'remorse', 'score': 0.1593489646911621}, {'label': 'sadness', 'score': 0.11936043202877045}, {'label': 'approval', 'score': 0.08416207879781723}, {'label': 'disappointment', 'score': 0.05719595029950142}, {'label': 'admiration', 'score': 0.03443457558751106}, {'label': 'desire', 'score': 0.03143220767378807}, {'label': 'relief', 'score': 0.03123725764453411}, {'label': 'joy', 'score': 0.028348242864012718}, {'label': 'gratitude', 'score': 0.027364879846572876}, {'label': 'realization', 'score': 0.019411958754062653}, {'label': 'neutral', 'score': 0.017940349876880646}, {'label': 'nervousness', 'score': 0.01775156706571579}, {'label': 'disapproval', 'score': 0.013381380587816238}, {'label': 'fear', 'score': 0.013193170540034771}, {'label': 'grief', 'score': 0.010233207605779171}, {'label': 'pride', 'score': 0.009680277667939663}, {'label': 'annoyance', 'score': 0.00816729199141264}, {'label': 'love', 'score': 0.0062928893603384495}, {'label': 'excitement', 'score': 0.0046353405341506}, {'label': 'embarrassment', 'score': 0.003648539539426565}, {'label': 'confusion', 'score': 0.003444990608841181}, {'label': 'anger', 'score': 0.002436758019030094}, {'label': 'amusement', 'score': 0.002146888989955187}, {'label': 'surprise', 'score': 0.0019416550640016794}, {'label': 'disgust', 'score': 0.0017319360049441457}, {'label': 'curiosity', 'score': 0.0017178441630676389}], [{'label': 'annoyance', 'score': 0.45834723114967346}, {'label': 'neutral', 'score': 0.24793295562267303}, {'label': 'anger', 'score': 0.2059577852487564}, {'label': 'disapproval', 'score': 0.05565055459737778}, {'label': 'disappointment', 'score': 0.049861837178468704}, {'label': 'approval', 'score': 0.025794681161642075}, {'label': 'sadness', 'score': 0.01901840977370739}, {'label': 'realization', 'score': 0.017055610194802284}, {'label': 'disgust', 'score': 0.013440478593111038}, {'label': 'caring', 'score': 0.008402498438954353}, {'label': 'optimism', 'score': 0.004908709786832333}, {'label': 'fear', 'score': 0.00415517995133996}, {'label': 'embarrassment', 'score': 0.0032219989225268364}, {'label': 'confusion', 'score': 0.0021706107072532177}, {'label': 'desire', 'score': 0.0021647780667990446}, {'label': 'nervousness', 'score': 0.002071952447295189}, {'label': 'curiosity', 'score': 0.0012876138789579272}, {'label': 'joy', 'score': 0.0010760418372228742}, {'label': 'grief', 'score': 0.0010106450645253062}, {'label': 'admiration', 'score': 0.000988682615570724}, {'label': 'remorse', 'score': 0.0008397750789299607}, {'label': 'amusement', 'score': 0.0008100568666122854}, {'label': 'relief', 'score': 0.0007907388499006629}, {'label': 'pride', 'score': 0.0006631939904764295}, {'label': 'surprise', 'score': 0.0005929956096224487}, {'label': 'excitement', 'score': 0.0005820763763040304}, {'label': 'love', 'score': 0.0004380675090942532}, {'label': 'gratitude', 'score': 0.00039992236997932196}], [{'label': 'nervousness', 'score': 0.3445201516151428}, {'label': 'joy', 'score': 0.20068439841270447}, {'label': 'neutral', 'score': 0.07033185660839081}, {'label': 'fear', 'score': 0.06302239000797272}, {'label': 'sadness', 'score': 0.058412209153175354}, {'label': 'caring', 'score': 0.05809899419546127}, {'label': 'annoyance', 'score': 0.056646678596735}, {'label': 'approval', 'score': 0.050941694527864456}, {'label': 'relief', 'score': 0.04175741970539093}, {'label': 'realization', 'score': 0.0369177870452404}, {'label': 'disappointment', 'score': 0.03112037107348442}, {'label': 'excitement', 'score': 0.019824193790555}, {'label': 'confusion', 'score': 0.014226751402020454}, {'label': 'disapproval', 'score': 0.01307898759841919}, {'label': 'anger', 'score': 0.012430368922650814}, {'label': 'optimism', 'score': 0.006471320986747742}, {'label': 'desire', 'score': 0.005371190141886473}, {'label': 'pride', 'score': 0.005295591428875923}, {'label': 'grief', 'score': 0.004782526753842831}, {'label': 'amusement', 'score': 0.004761938471347094}, {'label': 'admiration', 'score': 0.004716143943369389}, {'label': 'embarrassment', 'score': 0.004497485235333443}, {'label': 'curiosity', 'score': 0.004300941713154316}, {'label': 'love', 'score': 0.0037414797116070986}, {'label': 'remorse', 'score': 0.0027944669127464294}, {'label': 'gratitude', 'score': 0.0023191783111542463}, {'label': 'disgust', 'score': 0.002312286291271448}, {'label': 'surprise', 'score': 0.0018662598449736834}], [{'label': 'fear', 'score': 0.49540087580680847}, {'label': 'nervousness', 'score': 0.4887368977069855}, {'label': 'sadness', 'score': 0.06114831939339638}, {'label': 'caring', 'score': 0.05300290137529373}, {'label': 'annoyance', 'score': 0.040343157947063446}, {'label': 'neutral', 'score': 0.03870868310332298}, {'label': 'disappointment', 'score': 0.03622012212872505}, {'label': 'approval', 'score': 0.027236254885792732}, {'label': 'realization', 'score': 0.023979905992746353}, {'label': 'confusion', 'score': 0.021823426708579063}, {'label': 'disapproval', 'score': 0.01889299787580967}, {'label': 'anger', 'score': 0.012348277494311333}, {'label': 'joy', 'score': 0.010367759503424168}, {'label': 'excitement', 'score': 0.00842695590108633}, {'label': 'curiosity', 'score': 0.007553997915238142}, {'label': 'optimism', 'score': 0.007387560326606035}, {'label': 'relief', 'score': 0.006659827660769224}, {'label': 'disgust', 'score': 0.006507308222353458}, {'label': 'admiration', 'score': 0.006290796212852001}, {'label': 'embarrassment', 'score': 0.006000238936394453}, {'label': 'love', 'score': 0.005692245438694954}, {'label': 'desire', 'score': 0.005009055603295565}, {'label': 'grief', 'score': 0.0043028369545936584}, {'label': 'amusement', 'score': 0.0035330140963196754}, {'label': 'surprise', 'score': 0.003144890768453479}, {'label': 'remorse', 'score': 0.0029943473637104034}, {'label': 'pride', 'score': 0.001637896872125566}, {'label': 'gratitude', 'score': 0.001451402553357184}], [{'label': 'sadness', 'score': 0.7340412735939026}, {'label': 'nervousness', 'score': 0.12967053055763245}, {'label': 'disappointment', 'score': 0.09538184106349945}, {'label': 'fear', 'score': 0.09169691056013107}, {'label': 'caring', 'score': 0.03157109022140503}, {'label': 'neutral', 'score': 0.027270833030343056}, {'label': 'grief', 'score': 0.02619999833405018}, {'label': 'realization', 'score': 0.017612917348742485}, {'label': 'approval', 'score': 0.014674060977995396}, {'label': 'admiration', 'score': 0.012564096599817276}, {'label': 'annoyance', 'score': 0.010671286843717098}, {'label': 'curiosity', 'score': 0.009712190367281437}, {'label': 'confusion', 'score': 0.009619549848139286}, {'label': 'remorse', 'score': 0.00856188777834177}, {'label': 'love', 'score': 0.008208862505853176}, {'label': 'joy', 'score': 0.007189565803855658}, {'label': 'disapproval', 'score': 0.006376173812896013}, {'label': 'desire', 'score': 0.0063379849307239056}, {'label': 'optimism', 'score': 0.005453941412270069}, {'label': 'anger', 'score': 0.005123508162796497}, {'label': 'relief', 'score': 0.004878805484622717}, {'label': 'excitement', 'score': 0.004640515428036451}, {'label': 'surprise', 'score': 0.004297818522900343}, {'label': 'disgust', 'score': 0.0028338469564914703}, {'label': 'amusement', 'score': 0.0025098847690969706}, {'label': 'embarrassment', 'score': 0.0024129715748131275}, {'label': 'gratitude', 'score': 0.0017415365437045693}, {'label': 'pride', 'score': 0.0011065149446949363}], [{'label': 'caring', 'score': 0.6115877628326416}, {'label': 'nervousness', 'score': 0.32204669713974}, {'label': 'fear', 'score': 0.08887846767902374}, {'label': 'sadness', 'score': 0.07722415775060654}, {'label': 'approval', 'score': 0.0732097327709198}, {'label': 'neutral', 'score': 0.04499350115656853}, {'label': 'confusion', 'score': 0.03392753377556801}, {'label': 'optimism', 'score': 0.032150812447071075}, {'label': 'realization', 'score': 0.02783234417438507}, {'label': 'curiosity', 'score': 0.02454054169356823}, {'label': 'relief', 'score': 0.020233381539583206}, {'label': 'admiration', 'score': 0.017445730045437813}, {'label': 'disappointment', 'score': 0.01594599336385727}, {'label': 'disapproval', 'score': 0.014759590849280357}, {'label': 'joy', 'score': 0.014384830370545387}, {'label': 'love', 'score': 0.011805536225438118}, {'label': 'remorse', 'score': 0.011406546458601952}, {'label': 'desire', 'score': 0.010722337290644646}, {'label': 'excitement', 'score': 0.00947099830955267}, {'label': 'grief', 'score': 0.007932096719741821}, {'label': 'annoyance', 'score': 0.007402435876429081}, {'label': 'gratitude', 'score': 0.0039839898236095905}, {'label': 'surprise', 'score': 0.003354565938934684}, {'label': 'pride', 'score': 0.002724207704886794}, {'label': 'anger', 'score': 0.0026374738663434982}, {'label': 'embarrassment', 'score': 0.0023100082762539387}, {'label': 'amusement', 'score': 0.002092147246003151}, {'label': 'disgust', 'score': 0.001177298603579402}], [{'label': 'sadness', 'score': 0.5116215348243713}, {'label': 'nervousness', 'score': 0.2914345860481262}, {'label': 'disappointment', 'score': 0.11376037448644638}, {'label': 'fear', 'score': 0.07236190140247345}, {'label': 'caring', 'score': 0.05422809347510338}, {'label': 'neutral', 'score': 0.023353662341833115}, {'label': 'realization', 'score': 0.022800840437412262}, {'label': 'approval', 'score': 0.020366331562399864}, {'label': 'annoyance', 'score': 0.017956361174583435}, {'label': 'joy', 'score': 0.0153130404651165}, {'label': 'confusion', 'score': 0.013358741998672485}, {'label': 'grief', 'score': 0.012825632467865944}, {'label': 'disapproval', 'score': 0.010166206397116184}, {'label': 'remorse', 'score': 0.010106503032147884}, {'label': 'relief', 'score': 0.009156275540590286}, {'label': 'admiration', 'score': 0.008463574573397636}, {'label': 'love', 'score': 0.00808773748576641}, {'label': 'curiosity', 'score': 0.007970639504492283}, {'label': 'optimism', 'score': 0.007690525613725185}, {'label': 'desire', 'score': 0.006351103540509939}, {'label': 'excitement', 'score': 0.005755870137363672}, {'label': 'anger', 'score': 0.004435243085026741}, {'label': 'amusement', 'score': 0.0031257651280611753}, {'label': 'embarrassment', 'score': 0.0029698475264012814}, {'label': 'surprise', 'score': 0.0027938424609601498}, {'label': 'disgust', 'score': 0.0022602214012295008}, {'label': 'gratitude', 'score': 0.0019488289253786206}, {'label': 'pride', 'score': 0.0012483851751312613}], [{'label': 'fear', 'score': 0.6213672161102295}, {'label': 'optimism', 'score': 0.2744261920452118}, {'label': 'sadness', 'score': 0.2615346610546112}, {'label': 'nervousness', 'score': 0.21977786719799042}, {'label': 'surprise', 'score': 0.10940861701965332}, {'label': 'disappointment', 'score': 0.07279790192842484}, {'label': 'curiosity', 'score': 0.06946069002151489}, {'label': 'caring', 'score': 0.049199581146240234}, {'label': 'confusion', 'score': 0.03652387484908104}, {'label': 'realization', 'score': 0.03622410073876381}, {'label': 'desire', 'score': 0.030986500903964043}, {'label': 'grief', 'score': 0.023132218047976494}, {'label': 'admiration', 'score': 0.019525524228811264}, {'label': 'excitement', 'score': 0.018213173374533653}, {'label': 'approval', 'score': 0.01785479113459587}, {'label': 'neutral', 'score': 0.01754198782145977}, {'label': 'love', 'score': 0.011905078776180744}, {'label': 'joy', 'score': 0.009346437640488148}, {'label': 'disapproval', 'score': 0.009293477050960064}, {'label': 'annoyance', 'score': 0.008429035544395447}, {'label': 'remorse', 'score': 0.008377616293728352}, {'label': 'relief', 'score': 0.007406122516840696}, {'label': 'disgust', 'score': 0.006156200543045998}, {'label': 'amusement', 'score': 0.004440758377313614}, {'label': 'anger', 'score': 0.004425351973623037}, {'label': 'embarrassment', 'score': 0.004197407979518175}, {'label': 'gratitude', 'score': 0.0022693704813718796}, {'label': 'pride', 'score': 0.0018978141015395522}], [{'label': 'disapproval', 'score': 0.30569297075271606}, {'label': 'disappointment', 'score': 0.3020026683807373}, {'label': 'annoyance', 'score': 0.2920108437538147}, {'label': 'neutral', 'score': 0.2189457267522812}, {'label': 'approval', 'score': 0.06178555637598038}, {'label': 'realization', 'score': 0.04590057209134102}, {'label': 'sadness', 'score': 0.016749225556850433}, {'label': 'joy', 'score': 0.00802245270460844}, {'label': 'anger', 'score': 0.007514004595577717}, {'label': 'relief', 'score': 0.0055874926038086414}, {'label': 'optimism', 'score': 0.005372858606278896}, {'label': 'disgust', 'score': 0.005132937338203192}, {'label': 'embarrassment', 'score': 0.004809816367924213}, {'label': 'confusion', 'score': 0.0036610953975468874}, {'label': 'desire', 'score': 0.003611298743635416}, {'label': 'caring', 'score': 0.003436488565057516}, {'label': 'nervousness', 'score': 0.002743540797382593}, {'label': 'admiration', 'score': 0.002364737680181861}, {'label': 'amusement', 'score': 0.0020846156403422356}, {'label': 'excitement', 'score': 0.0018602295313030481}, {'label': 'remorse', 'score': 0.0014778698096051812}, {'label': 'surprise', 'score': 0.0013565439730882645}, {'label': 'pride', 'score': 0.0012875415850430727}, {'label': 'gratitude', 'score': 0.0011260395403951406}, {'label': 'love', 'score': 0.0011254133423790336}, {'label': 'grief', 'score': 0.0010556348133832216}, {'label': 'curiosity', 'score': 0.0009586233063600957}, {'label': 'fear', 'score': 0.0007999181980267167}], [{'label': 'disappointment', 'score': 0.4506506323814392}, {'label': 'confusion', 'score': 0.2822668254375458}, {'label': 'neutral', 'score': 0.13801530003547668}, {'label': 'sadness', 'score': 0.12993231415748596}, {'label': 'nervousness', 'score': 0.06530199199914932}, {'label': 'annoyance', 'score': 0.06368362903594971}, {'label': 'disapproval', 'score': 0.057601600885391235}, {'label': 'realization', 'score': 0.0478970929980278}, {'label': 'approval', 'score': 0.03618403524160385}, {'label': 'optimism', 'score': 0.01615091785788536}, {'label': 'curiosity', 'score': 0.014603231102228165}, {'label': 'caring', 'score': 0.012619802728295326}, {'label': 'remorse', 'score': 0.011195500381290913}, {'label': 'fear', 'score': 0.009674162603914738}, {'label': 'embarrassment', 'score': 0.008077973499894142}, {'label': 'joy', 'score': 0.006009281147271395}, {'label': 'relief', 'score': 0.005720211658626795}, {'label': 'grief', 'score': 0.004277217201888561}, {'label': 'anger', 'score': 0.00387946842238307}, {'label': 'desire', 'score': 0.0034018768928945065}, {'label': 'disgust', 'score': 0.002657461678609252}, {'label': 'love', 'score': 0.0026453728787600994}, {'label': 'admiration', 'score': 0.0025536438915878534}, {'label': 'surprise', 'score': 0.0024838855024427176}, {'label': 'excitement', 'score': 0.002113255439326167}, {'label': 'amusement', 'score': 0.0011684646597132087}, {'label': 'gratitude', 'score': 0.0009496544953435659}, {'label': 'pride', 'score': 0.000760205031838268}], [{'label': 'fear', 'score': 0.5151030421257019}, {'label': 'nervousness', 'score': 0.2666361927986145}, {'label': 'sadness', 'score': 0.2323700189590454}, {'label': 'neutral', 'score': 0.07924329489469528}, {'label': 'caring', 'score': 0.055614203214645386}, {'label': 'disappointment', 'score': 0.03245183825492859}, {'label': 'realization', 'score': 0.026471009477972984}, {'label': 'approval', 'score': 0.02621135115623474}, {'label': 'grief', 'score': 0.011750856414437294}, {'label': 'admiration', 'score': 0.010585670359432697}, {'label': 'annoyance', 'score': 0.0098430085927248}, {'label': 'confusion', 'score': 0.008702926337718964}, {'label': 'disapproval', 'score': 0.00816874485462904}, {'label': 'optimism', 'score': 0.00698099983856082}, {'label': 'relief', 'score': 0.006586784962564707}, {'label': 'joy', 'score': 0.006336080841720104}, {'label': 'love', 'score': 0.005718559958040714}, {'label': 'desire', 'score': 0.004501972813159227}, {'label': 'disgust', 'score': 0.004475712310522795}, {'label': 'excitement', 'score': 0.0042608496733009815}, {'label': 'curiosity', 'score': 0.004070435184985399}, {'label': 'remorse', 'score': 0.0033076717518270016}, {'label': 'surprise', 'score': 0.003279232420027256}, {'label': 'anger', 'score': 0.0030975285917520523}, {'label': 'amusement', 'score': 0.0029938905499875546}, {'label': 'embarrassment', 'score': 0.002743189688771963}, {'label': 'pride', 'score': 0.0013822640758007765}, {'label': 'gratitude', 'score': 0.001320098526775837}], [{'label': 'nervousness', 'score': 0.2876163125038147}, {'label': 'caring', 'score': 0.24943239986896515}, {'label': 'fear', 'score': 0.17497514188289642}, {'label': 'optimism', 'score': 0.14377279579639435}, {'label': 'sadness', 'score': 0.1044803112745285}, {'label': 'disappointment', 'score': 0.05936245992779732}, {'label': 'approval', 'score': 0.04156331345438957}, {'label': 'neutral', 'score': 0.03336481750011444}, {'label': 'desire', 'score': 0.023655705153942108}, {'label': 'realization', 'score': 0.022099055349826813}, {'label': 'disapproval', 'score': 0.015646381303668022}, {'label': 'annoyance', 'score': 0.012799963355064392}, {'label': 'confusion', 'score': 0.012681172229349613}, {'label': 'remorse', 'score': 0.01160595752298832}, {'label': 'admiration', 'score': 0.009644458070397377}, {'label': 'relief', 'score': 0.00959020759910345}, {'label': 'joy', 'score': 0.007678584661334753}, {'label': 'curiosity', 'score': 0.006385201122611761}, {'label': 'excitement', 'score': 0.005671841558068991}, {'label': 'grief', 'score': 0.005610310472548008}, {'label': 'love', 'score': 0.005468351300805807}, {'label': 'anger', 'score': 0.0027019598055630922}, {'label': 'disgust', 'score': 0.002668168395757675}, {'label': 'embarrassment', 'score': 0.0025171812158077955}, {'label': 'surprise', 'score': 0.0022149053402245045}, {'label': 'pride', 'score': 0.0020068350713700056}, {'label': 'amusement', 'score': 0.0016961252549663186}, {'label': 'gratitude', 'score': 0.001605467521585524}], [{'label': 'fear', 'score': 0.6843099594116211}, {'label': 'nervousness', 'score': 0.2685030996799469}, {'label': 'sadness', 'score': 0.10058897733688354}, {'label': 'neutral', 'score': 0.05002060905098915}, {'label': 'disappointment', 'score': 0.03315645083785057}, {'label': 'caring', 'score': 0.027903379872441292}, {'label': 'annoyance', 'score': 0.02320866659283638}, {'label': 'realization', 'score': 0.015459509566426277}, {'label': 'anger', 'score': 0.013998986221849918}, {'label': 'approval', 'score': 0.013267812319099903}, {'label': 'disapproval', 'score': 0.01240650936961174}, {'label': 'confusion', 'score': 0.009261342696845531}, {'label': 'joy', 'score': 0.008659818209707737}, {'label': 'admiration', 'score': 0.0071612694300711155}, {'label': 'disgust', 'score': 0.0068899053148925304}, {'label': 'love', 'score': 0.006359046790748835}, {'label': 'grief', 'score': 0.006290051154792309}, {'label': 'excitement', 'score': 0.005903606303036213}, {'label': 'optimism', 'score': 0.005256823729723692}, {'label': 'desire', 'score': 0.004616900812834501}, {'label': 'relief', 'score': 0.004366710782051086}, {'label': 'embarrassment', 'score': 0.004054341930896044}, {'label': 'curiosity', 'score': 0.004034582991153002}, {'label': 'surprise', 'score': 0.0036754589527845383}, {'label': 'amusement', 'score': 0.0026252635288983583}, {'label': 'remorse', 'score': 0.002489877864718437}, {'label': 'pride', 'score': 0.0014581062132492661}, {'label': 'gratitude', 'score': 0.0014274870045483112}], [{'label': 'fear', 'score': 0.624996542930603}, {'label': 'nervousness', 'score': 0.45441320538520813}, {'label': 'sadness', 'score': 0.11594505608081818}, {'label': 'caring', 'score': 0.04941859468817711}, {'label': 'disappointment', 'score': 0.03585858270525932}, {'label': 'neutral', 'score': 0.02957635559141636}, {'label': 'realization', 'score': 0.024945547804236412}, {'label': 'approval', 'score': 0.021563705056905746}, {'label': 'confusion', 'score': 0.014360910281538963}, {'label': 'annoyance', 'score': 0.01387725304812193}, {'label': 'joy', 'score': 0.01166991051286459}, {'label': 'optimism', 'score': 0.010775099508464336}, {'label': 'admiration', 'score': 0.010678509250283241}, {'label': 'disapproval', 'score': 0.010571456514298916}, {'label': 'excitement', 'score': 0.008585440926253796}, {'label': 'relief', 'score': 0.007652983069419861}, {'label': 'grief', 'score': 0.007385155186057091}, {'label': 'love', 'score': 0.006971314083784819}, {'label': 'curiosity', 'score': 0.00696447491645813}, {'label': 'desire', 'score': 0.0067079635336995125}, {'label': 'disgust', 'score': 0.0049528880044817924}, {'label': 'amusement', 'score': 0.0048429640009999275}, {'label': 'surprise', 'score': 0.004727213643491268}, {'label': 'embarrassment', 'score': 0.00434467289596796}, {'label': 'anger', 'score': 0.004299683962017298}, {'label': 'remorse', 'score': 0.003974813502281904}, {'label': 'gratitude', 'score': 0.0020504938438534737}, {'label': 'pride', 'score': 0.0015444740420207381}], [{'label': 'annoyance', 'score': 0.364116907119751}, {'label': 'disappointment', 'score': 0.21856088936328888}, {'label': 'anger', 'score': 0.14913687109947205}, {'label': 'sadness', 'score': 0.11324933171272278}, {'label': 'confusion', 'score': 0.0984344482421875}, {'label': 'nervousness', 'score': 0.07222622632980347}, {'label': 'disapproval', 'score': 0.045001544058322906}, {'label': 'neutral', 'score': 0.026239238679409027}, {'label': 'curiosity', 'score': 0.02530963346362114}, {'label': 'caring', 'score': 0.021391330286860466}, {'label': 'realization', 'score': 0.016849076375365257}, {'label': 'fear', 'score': 0.015164852142333984}, {'label': 'approval', 'score': 0.014731207862496376}, {'label': 'joy', 'score': 0.010181895457208157}, {'label': 'embarrassment', 'score': 0.006821731571108103}, {'label': 'optimism', 'score': 0.005629810970276594}, {'label': 'remorse', 'score': 0.0051642730832099915}, {'label': 'disgust', 'score': 0.005125510971993208}, {'label': 'grief', 'score': 0.004009758122265339}, {'label': 'excitement', 'score': 0.0038438253104686737}, {'label': 'desire', 'score': 0.0037982482463121414}, {'label': 'relief', 'score': 0.003522271756082773}, {'label': 'love', 'score': 0.0030489491764456034}, {'label': 'admiration', 'score': 0.00289956689812243}, {'label': 'surprise', 'score': 0.0026800206396728754}, {'label': 'gratitude', 'score': 0.002088627079501748}, {'label': 'amusement', 'score': 0.001604145742021501}, {'label': 'pride', 'score': 0.0012084116460755467}], [{'label': 'sadness', 'score': 0.47274503111839294}, {'label': 'disappointment', 'score': 0.25731390714645386}, {'label': 'annoyance', 'score': 0.13250413537025452}, {'label': 'anger', 'score': 0.04301365464925766}, {'label': 'disapproval', 'score': 0.03167463839054108}, {'label': 'nervousness', 'score': 0.031540218740701675}, {'label': 'fear', 'score': 0.030865518376231194}, {'label': 'disgust', 'score': 0.02482627145946026}, {'label': 'neutral', 'score': 0.01510254479944706}, {'label': 'realization', 'score': 0.012195167131721973}, {'label': 'embarrassment', 'score': 0.009070629253983498}, {'label': 'approval', 'score': 0.009039250202476978}, {'label': 'caring', 'score': 0.006120341829955578}, {'label': 'grief', 'score': 0.0054501197300851345}, {'label': 'confusion', 'score': 0.004870051052421331}, {'label': 'remorse', 'score': 0.00394982798025012}, {'label': 'curiosity', 'score': 0.00365617242641747}, {'label': 'love', 'score': 0.003515182761475444}, {'label': 'joy', 'score': 0.003499812912195921}, {'label': 'desire', 'score': 0.003224106738343835}, {'label': 'admiration', 'score': 0.002805022755637765}, {'label': 'optimism', 'score': 0.0024572592228651047}, {'label': 'amusement', 'score': 0.002394248964264989}, {'label': 'excitement', 'score': 0.0017578587867319584}, {'label': 'surprise', 'score': 0.001619441551156342}, {'label': 'relief', 'score': 0.001552291912958026}, {'label': 'pride', 'score': 0.0006528323865495622}, {'label': 'gratitude', 'score': 0.0006185568636283278}], [{'label': 'fear', 'score': 0.6468291282653809}, {'label': 'nervousness', 'score': 0.24776624143123627}, {'label': 'sadness', 'score': 0.09001436084508896}, {'label': 'approval', 'score': 0.07738006114959717}, {'label': 'caring', 'score': 0.04618723690509796}, {'label': 'neutral', 'score': 0.04391903057694435}, {'label': 'realization', 'score': 0.03934250399470329}, {'label': 'disappointment', 'score': 0.03868073225021362}, {'label': 'optimism', 'score': 0.037041258066892624}, {'label': 'disapproval', 'score': 0.014804973267018795}, {'label': 'admiration', 'score': 0.01246124878525734}, {'label': 'annoyance', 'score': 0.010788983665406704}, {'label': 'confusion', 'score': 0.010709493421018124}, {'label': 'desire', 'score': 0.010333013720810413}, {'label': 'relief', 'score': 0.007793139200657606}, {'label': 'joy', 'score': 0.0067981272004544735}, {'label': 'grief', 'score': 0.006498672999441624}, {'label': 'love', 'score': 0.00534423440694809}, {'label': 'excitement', 'score': 0.005303130019456148}, {'label': 'disgust', 'score': 0.0047188508324325085}, {'label': 'remorse', 'score': 0.003508457913994789}, {'label': 'curiosity', 'score': 0.0034962461795657873}, {'label': 'embarrassment', 'score': 0.0031750935595482588}, {'label': 'anger', 'score': 0.0030279632192105055}, {'label': 'surprise', 'score': 0.002852063626050949}, {'label': 'amusement', 'score': 0.0022564479149878025}, {'label': 'pride', 'score': 0.002132070017978549}, {'label': 'gratitude', 'score': 0.0013320930302143097}], [{'label': 'sadness', 'score': 0.7979354858398438}, {'label': 'disappointment', 'score': 0.22929657995700836}, {'label': 'curiosity', 'score': 0.08831940591335297}, {'label': 'neutral', 'score': 0.052488502115011215}, {'label': 'confusion', 'score': 0.039400141686201096}, {'label': 'remorse', 'score': 0.023193195462226868}, {'label': 'annoyance', 'score': 0.02270270325243473}, {'label': 'disapproval', 'score': 0.02040257304906845}, {'label': 'caring', 'score': 0.01932159811258316}, {'label': 'grief', 'score': 0.016703566536307335}, {'label': 'realization', 'score': 0.016283821314573288}, {'label': 'nervousness', 'score': 0.015969954431056976}, {'label': 'approval', 'score': 0.014385289512574673}, {'label': 'anger', 'score': 0.005844560917466879}, {'label': 'optimism', 'score': 0.005655272863805294}, {'label': 'fear', 'score': 0.005194749683141708}, {'label': 'admiration', 'score': 0.004903297405689955}, {'label': 'love', 'score': 0.004069708753377199}, {'label': 'desire', 'score': 0.0037246784195303917}, {'label': 'embarrassment', 'score': 0.003213162301108241}, {'label': 'disgust', 'score': 0.0026956661604344845}, {'label': 'surprise', 'score': 0.0026644417084753513}, {'label': 'amusement', 'score': 0.0024467608891427517}, {'label': 'joy', 'score': 0.002419261960312724}, {'label': 'relief', 'score': 0.0015363320708274841}, {'label': 'excitement', 'score': 0.0013803928159177303}, {'label': 'gratitude', 'score': 0.0006069755181670189}, {'label': 'pride', 'score': 0.0002692498092073947}], [{'label': 'nervousness', 'score': 0.4761316776275635}, {'label': 'sadness', 'score': 0.1880578249692917}, {'label': 'disappointment', 'score': 0.16815413534641266}, {'label': 'fear', 'score': 0.08309656381607056}, {'label': 'annoyance', 'score': 0.06650082021951675}, {'label': 'caring', 'score': 0.06414865702390671}, {'label': 'confusion', 'score': 0.044193852692842484}, {'label': 'neutral', 'score': 0.04087459668517113}, {'label': 'realization', 'score': 0.032281842082738876}, {'label': 'approval', 'score': 0.027161356061697006}, {'label': 'curiosity', 'score': 0.024745304137468338}, {'label': 'disapproval', 'score': 0.019769789651036263}, {'label': 'joy', 'score': 0.013696903362870216}, {'label': 'excitement', 'score': 0.013132804073393345}, {'label': 'desire', 'score': 0.013128899037837982}, {'label': 'optimism', 'score': 0.012957066297531128}, {'label': 'anger', 'score': 0.009381039999425411}, {'label': 'relief', 'score': 0.009278268553316593}, {'label': 'grief', 'score': 0.006096961442381144}, {'label': 'remorse', 'score': 0.005504845175892115}, {'label': 'surprise', 'score': 0.005468857008963823}, {'label': 'love', 'score': 0.0054242415353655815}, {'label': 'embarrassment', 'score': 0.004510854370892048}, {'label': 'admiration', 'score': 0.0042215329594910145}, {'label': 'disgust', 'score': 0.003110369900241494}, {'label': 'amusement', 'score': 0.0016456806333735585}, {'label': 'pride', 'score': 0.001364951953291893}, {'label': 'gratitude', 'score': 0.0008198446594178677}], [{'label': 'sadness', 'score': 0.9110234379768372}, {'label': 'disappointment', 'score': 0.122693732380867}, {'label': 'curiosity', 'score': 0.0458582267165184}, {'label': 'grief', 'score': 0.0346330888569355}, {'label': 'annoyance', 'score': 0.02261280082166195}, {'label': 'remorse', 'score': 0.021724684163928032}, {'label': 'neutral', 'score': 0.02004132606089115}, {'label': 'anger', 'score': 0.019349126145243645}, {'label': 'confusion', 'score': 0.01759350672364235}, {'label': 'caring', 'score': 0.01403720397502184}, {'label': 'disapproval', 'score': 0.0119908656924963}, {'label': 'realization', 'score': 0.011250697076320648}, {'label': 'nervousness', 'score': 0.011144229210913181}, {'label': 'approval', 'score': 0.009344075806438923}, {'label': 'admiration', 'score': 0.007788325194269419}, {'label': 'love', 'score': 0.007722449954599142}, {'label': 'fear', 'score': 0.006632027681916952}, {'label': 'disgust', 'score': 0.0053949919529259205}, {'label': 'joy', 'score': 0.004584405571222305}, {'label': 'surprise', 'score': 0.0038689684588462114}, {'label': 'desire', 'score': 0.0037982482463121414}, {'label': 'amusement', 'score': 0.0037721882108598948}, {'label': 'embarrassment', 'score': 0.002917654113844037}, {'label': 'optimism', 'score': 0.0029018493369221687}, {'label': 'excitement', 'score': 0.0020800794009119272}, {'label': 'gratitude', 'score': 0.0018746653804555535}, {'label': 'relief', 'score': 0.0017137047834694386}, {'label': 'pride', 'score': 0.0004077213816344738}], [{'label': 'nervousness', 'score': 0.3730033040046692}, {'label': 'sadness', 'score': 0.22020311653614044}, {'label': 'fear', 'score': 0.21898268163204193}, {'label': 'caring', 'score': 0.21128326654434204}, {'label': 'disappointment', 'score': 0.07306047528982162}, {'label': 'optimism', 'score': 0.06621256470680237}, {'label': 'realization', 'score': 0.05748146027326584}, {'label': 'approval', 'score': 0.044563621282577515}, {'label': 'neutral', 'score': 0.037447381764650345}, {'label': 'confusion', 'score': 0.02053353562951088}, {'label': 'surprise', 'score': 0.0197251308709383}, {'label': 'relief', 'score': 0.01753588393330574}, {'label': 'remorse', 'score': 0.014378584921360016}, {'label': 'grief', 'score': 0.013695660047233105}, {'label': 'curiosity', 'score': 0.012780077755451202}, {'label': 'admiration', 'score': 0.012196115218102932}, {'label': 'disapproval', 'score': 0.011374431662261486}, {'label': 'annoyance', 'score': 0.008933242410421371}, {'label': 'desire', 'score': 0.008865181356668472}, {'label': 'excitement', 'score': 0.008547788485884666}, {'label': 'joy', 'score': 0.007919562980532646}, {'label': 'love', 'score': 0.007423244882375002}, {'label': 'embarrassment', 'score': 0.004167900420725346}, {'label': 'gratitude', 'score': 0.002426624298095703}, {'label': 'pride', 'score': 0.0024203425273299217}, {'label': 'anger', 'score': 0.0023556107189506292}, {'label': 'amusement', 'score': 0.0018774387426674366}, {'label': 'disgust', 'score': 0.0018595070578157902}], [{'label': 'anger', 'score': 0.6359207034111023}, {'label': 'annoyance', 'score': 0.37007737159729004}, {'label': 'disappointment', 'score': 0.08648484945297241}, {'label': 'confusion', 'score': 0.05457422882318497}, {'label': 'disapproval', 'score': 0.0428825207054615}, {'label': 'neutral', 'score': 0.04207037016749382}, {'label': 'sadness', 'score': 0.03609196096658707}, {'label': 'curiosity', 'score': 0.03237466514110565}, {'label': 'fear', 'score': 0.022209422662854195}, {'label': 'disgust', 'score': 0.012356671504676342}, {'label': 'nervousness', 'score': 0.010508807376027107}, {'label': 'realization', 'score': 0.009245374239981174}, {'label': 'optimism', 'score': 0.008936489000916481}, {'label': 'caring', 'score': 0.0084786182269454}, {'label': 'surprise', 'score': 0.0063518378883600235}, {'label': 'approval', 'score': 0.005614536348730326}, {'label': 'embarrassment', 'score': 0.00521859573200345}, {'label': 'joy', 'score': 0.002861808752641082}, {'label': 'desire', 'score': 0.00262429378926754}, {'label': 'grief', 'score': 0.0024325749836862087}, {'label': 'love', 'score': 0.0024011654313653708}, {'label': 'excitement', 'score': 0.0021647473331540823}, {'label': 'remorse', 'score': 0.0018473565578460693}, {'label': 'amusement', 'score': 0.0018138368614017963}, {'label': 'admiration', 'score': 0.0017283123452216387}, {'label': 'gratitude', 'score': 0.0010794104309752584}, {'label': 'relief', 'score': 0.0007643357384949923}, {'label': 'pride', 'score': 0.0006777782691642642}], [{'label': 'sadness', 'score': 0.403114914894104}, {'label': 'nervousness', 'score': 0.24154050648212433}, {'label': 'disappointment', 'score': 0.13012689352035522}, {'label': 'desire', 'score': 0.08887110650539398}, {'label': 'fear', 'score': 0.06719756871461868}, {'label': 'caring', 'score': 0.02935493178665638}, {'label': 'neutral', 'score': 0.026548128575086594}, {'label': 'annoyance', 'score': 0.01938796602189541}, {'label': 'realization', 'score': 0.01743674837052822}, {'label': 'confusion', 'score': 0.015966303646564484}, {'label': 'remorse', 'score': 0.014727783389389515}, {'label': 'curiosity', 'score': 0.012280798517167568}, {'label': 'grief', 'score': 0.010867714881896973}, {'label': 'approval', 'score': 0.01062747836112976}, {'label': 'joy', 'score': 0.010616123676300049}, {'label': 'optimism', 'score': 0.01008608192205429}, {'label': 'excitement', 'score': 0.009368764236569405}, {'label': 'love', 'score': 0.008546593599021435}, {'label': 'disapproval', 'score': 0.008491940796375275}, {'label': 'relief', 'score': 0.006234776694327593}, {'label': 'surprise', 'score': 0.004860359709709883}, {'label': 'anger', 'score': 0.004810683894902468}, {'label': 'admiration', 'score': 0.0046067507937550545}, {'label': 'disgust', 'score': 0.004301668610423803}, {'label': 'embarrassment', 'score': 0.003798146964982152}, {'label': 'amusement', 'score': 0.002393293660134077}, {'label': 'gratitude', 'score': 0.0015048390487208962}, {'label': 'pride', 'score': 0.0011969340266659856}], [{'label': 'fear', 'score': 0.6384507417678833}, {'label': 'nervousness', 'score': 0.32929131388664246}, {'label': 'optimism', 'score': 0.12392055988311768}, {'label': 'caring', 'score': 0.10563863813877106}, {'label': 'neutral', 'score': 0.043356139212846756}, {'label': 'sadness', 'score': 0.0344604030251503}, {'label': 'approval', 'score': 0.030039917677640915}, {'label': 'realization', 'score': 0.025843214243650436}, {'label': 'confusion', 'score': 0.01827774941921234}, {'label': 'disappointment', 'score': 0.016626426950097084}, {'label': 'joy', 'score': 0.015423842705786228}, {'label': 'desire', 'score': 0.01489520724862814}, {'label': 'excitement', 'score': 0.011542998254299164}, {'label': 'admiration', 'score': 0.009939571842551231}, {'label': 'relief', 'score': 0.00955377146601677}, {'label': 'disapproval', 'score': 0.00899538304656744}, {'label': 'annoyance', 'score': 0.007214342709630728}, {'label': 'curiosity', 'score': 0.00622743321582675}, {'label': 'love', 'score': 0.00551972072571516}, {'label': 'surprise', 'score': 0.005175807513296604}, {'label': 'grief', 'score': 0.004990031477063894}, {'label': 'remorse', 'score': 0.004439751151949167}, {'label': 'amusement', 'score': 0.004086594562977552}, {'label': 'embarrassment', 'score': 0.003299094969406724}, {'label': 'disgust', 'score': 0.0032660348806530237}, {'label': 'anger', 'score': 0.002729059662669897}, {'label': 'pride', 'score': 0.0024870536290109158}, {'label': 'gratitude', 'score': 0.002428802428767085}], [{'label': 'fear', 'score': 0.5294383764266968}, {'label': 'sadness', 'score': 0.31124404072761536}, {'label': 'nervousness', 'score': 0.11937949806451797}, {'label': 'disappointment', 'score': 0.10194791108369827}, {'label': 'annoyance', 'score': 0.03891555964946747}, {'label': 'realization', 'score': 0.031251851469278336}, {'label': 'neutral', 'score': 0.03112555481493473}, {'label': 'approval', 'score': 0.023211974650621414}, {'label': 'disapproval', 'score': 0.020656192675232887}, {'label': 'caring', 'score': 0.013533072546124458}, {'label': 'anger', 'score': 0.013305939733982086}, {'label': 'disgust', 'score': 0.012721031904220581}, {'label': 'grief', 'score': 0.009607505984604359}, {'label': 'admiration', 'score': 0.007025982718914747}, {'label': 'confusion', 'score': 0.005948249250650406}, {'label': 'optimism', 'score': 0.00587779376655817}, {'label': 'embarrassment', 'score': 0.004929674323648214}, {'label': 'joy', 'score': 0.004528466146439314}, {'label': 'love', 'score': 0.004163249861449003}, {'label': 'desire', 'score': 0.0037956959567964077}, {'label': 'surprise', 'score': 0.003330099629238248}, {'label': 'relief', 'score': 0.0032861505169421434}, {'label': 'curiosity', 'score': 0.002686625812202692}, {'label': 'amusement', 'score': 0.00233054137788713}, {'label': 'excitement', 'score': 0.0023287648800760508}, {'label': 'remorse', 'score': 0.002267464529722929}, {'label': 'pride', 'score': 0.0011377345072105527}, {'label': 'gratitude', 'score': 0.0006955803255550563}], [{'label': 'caring', 'score': 0.4131714999675751}, {'label': 'optimism', 'score': 0.2805112600326538}, {'label': 'desire', 'score': 0.23697392642498016}, {'label': 'neutral', 'score': 0.0672403946518898}, {'label': 'nervousness', 'score': 0.06365090608596802}, {'label': 'fear', 'score': 0.06330443918704987}, {'label': 'sadness', 'score': 0.05254647880792618}, {'label': 'disapproval', 'score': 0.030326683074235916}, {'label': 'disappointment', 'score': 0.02344442903995514}, {'label': 'approval', 'score': 0.01663506031036377}, {'label': 'annoyance', 'score': 0.015607724897563457}, {'label': 'curiosity', 'score': 0.012280954979360104}, {'label': 'joy', 'score': 0.01188475638628006}, {'label': 'confusion', 'score': 0.007995041087269783}, {'label': 'realization', 'score': 0.007339150179177523}, {'label': 'love', 'score': 0.007193801458925009}, {'label': 'admiration', 'score': 0.006433455739170313}, {'label': 'excitement', 'score': 0.0056018889881670475}, {'label': 'relief', 'score': 0.0051681892946362495}, {'label': 'amusement', 'score': 0.005137946456670761}, {'label': 'remorse', 'score': 0.004868010990321636}, {'label': 'anger', 'score': 0.004528150428086519}, {'label': 'grief', 'score': 0.004498104564845562}, {'label': 'disgust', 'score': 0.0024559071753174067}, {'label': 'pride', 'score': 0.0016174413030967116}, {'label': 'gratitude', 'score': 0.0014080635737627745}, {'label': 'surprise', 'score': 0.001296486472710967}, {'label': 'embarrassment', 'score': 0.0008151232614181936}], [{'label': 'optimism', 'score': 0.35552674531936646}, {'label': 'nervousness', 'score': 0.1781367063522339}, {'label': 'caring', 'score': 0.12381963431835175}, {'label': 'disappointment', 'score': 0.0840686559677124}, {'label': 'joy', 'score': 0.05808674544095993}, {'label': 'sadness', 'score': 0.05143817886710167}, {'label': 'realization', 'score': 0.04187093302607536}, {'label': 'fear', 'score': 0.03948192298412323}, {'label': 'approval', 'score': 0.03927532956004143}, {'label': 'neutral', 'score': 0.033632952719926834}, {'label': 'amusement', 'score': 0.03129411116242409}, {'label': 'annoyance', 'score': 0.03127680718898773}, {'label': 'desire', 'score': 0.02810532972216606}, {'label': 'disapproval', 'score': 0.02192612923681736}, {'label': 'relief', 'score': 0.018787981942296028}, {'label': 'confusion', 'score': 0.014320578426122665}, {'label': 'remorse', 'score': 0.008503532037138939}, {'label': 'excitement', 'score': 0.006631333846598864}, {'label': 'admiration', 'score': 0.005671077873557806}, {'label': 'embarrassment', 'score': 0.004519584123045206}, {'label': 'curiosity', 'score': 0.004471049178391695}, {'label': 'grief', 'score': 0.003484712215140462}, {'label': 'pride', 'score': 0.0031273034401237965}, {'label': 'anger', 'score': 0.0028113452717661858}, {'label': 'disgust', 'score': 0.0025037811137735844}, {'label': 'love', 'score': 0.002497053239494562}, {'label': 'surprise', 'score': 0.002230172511190176}, {'label': 'gratitude', 'score': 0.0015235295286402106}], [{'label': 'fear', 'score': 0.5928873419761658}, {'label': 'nervousness', 'score': 0.5186570286750793}, {'label': 'caring', 'score': 0.06535209715366364}, {'label': 'sadness', 'score': 0.060943979769945145}, {'label': 'disappointment', 'score': 0.03438890352845192}, {'label': 'approval', 'score': 0.03263251855969429}, {'label': 'realization', 'score': 0.03166034817695618}, {'label': 'neutral', 'score': 0.028538374230265617}, {'label': 'annoyance', 'score': 0.027127930894494057}, {'label': 'confusion', 'score': 0.021301820874214172}, {'label': 'joy', 'score': 0.015515814535319805}, {'label': 'disapproval', 'score': 0.013251367025077343}, {'label': 'admiration', 'score': 0.012723402120172977}, {'label': 'optimism', 'score': 0.01144759263843298}, {'label': 'relief', 'score': 0.010137815959751606}, {'label': 'excitement', 'score': 0.010034140199422836}, {'label': 'anger', 'score': 0.007945910096168518}, {'label': 'curiosity', 'score': 0.007254586089402437}, {'label': 'love', 'score': 0.006281164009124041}, {'label': 'grief', 'score': 0.006025594659149647}, {'label': 'embarrassment', 'score': 0.005338647868484259}, {'label': 'desire', 'score': 0.0049088820815086365}, {'label': 'disgust', 'score': 0.004871678538620472}, {'label': 'surprise', 'score': 0.004651077091693878}, {'label': 'amusement', 'score': 0.004442710895091295}, {'label': 'remorse', 'score': 0.003479417646303773}, {'label': 'gratitude', 'score': 0.0024582433979958296}, {'label': 'pride', 'score': 0.002273157937452197}], [{'label': 'annoyance', 'score': 0.5584515333175659}, {'label': 'disappointment', 'score': 0.4095458388328552}, {'label': 'disapproval', 'score': 0.08308593928813934}, {'label': 'neutral', 'score': 0.07952633500099182}, {'label': 'sadness', 'score': 0.05674834921956062}, {'label': 'anger', 'score': 0.043216556310653687}, {'label': 'approval', 'score': 0.02410280331969261}, {'label': 'realization', 'score': 0.02099788561463356}, {'label': 'disgust', 'score': 0.00850814487785101}, {'label': 'caring', 'score': 0.006935599725693464}, {'label': 'embarrassment', 'score': 0.005901756696403027}, {'label': 'nervousness', 'score': 0.005698526278138161}, {'label': 'joy', 'score': 0.005388404708355665}, {'label': 'desire', 'score': 0.005080357659608126}, {'label': 'optimism', 'score': 0.004761219955980778}, {'label': 'confusion', 'score': 0.0035332979168742895}, {'label': 'relief', 'score': 0.0031116327736526728}, {'label': 'remorse', 'score': 0.0027438474353402853}, {'label': 'curiosity', 'score': 0.0023116308730095625}, {'label': 'admiration', 'score': 0.0018206631066277623}, {'label': 'grief', 'score': 0.001728520612232387}, {'label': 'excitement', 'score': 0.0017230813391506672}, {'label': 'gratitude', 'score': 0.001496284268796444}, {'label': 'amusement', 'score': 0.0014015916967764497}, {'label': 'surprise', 'score': 0.0012195829767733812}, {'label': 'fear', 'score': 0.001146481605246663}, {'label': 'pride', 'score': 0.0010482246289029717}, {'label': 'love', 'score': 0.0010419763857498765}], [{'label': 'fear', 'score': 0.531319260597229}, {'label': 'sadness', 'score': 0.28837865591049194}, {'label': 'nervousness', 'score': 0.26999497413635254}, {'label': 'disappointment', 'score': 0.05449270084500313}, {'label': 'desire', 'score': 0.04827021062374115}, {'label': 'caring', 'score': 0.048164866864681244}, {'label': 'neutral', 'score': 0.02403898350894451}, {'label': 'optimism', 'score': 0.023779580369591713}, {'label': 'realization', 'score': 0.02039230614900589}, {'label': 'approval', 'score': 0.014826612547039986}, {'label': 'grief', 'score': 0.013414805755019188}, {'label': 'annoyance', 'score': 0.011763688176870346}, {'label': 'disapproval', 'score': 0.009983240626752377}, {'label': 'confusion', 'score': 0.009926450438797474}, {'label': 'love', 'score': 0.009546116925776005}, {'label': 'admiration', 'score': 0.009139337576925755}, {'label': 'curiosity', 'score': 0.008081569336354733}, {'label': 'excitement', 'score': 0.00803596992045641}, {'label': 'joy', 'score': 0.007492280099540949}, {'label': 'disgust', 'score': 0.007109466474503279}, {'label': 'surprise', 'score': 0.006325758993625641}, {'label': 'relief', 'score': 0.005470496602356434}, {'label': 'remorse', 'score': 0.005448559299111366}, {'label': 'anger', 'score': 0.004942333325743675}, {'label': 'embarrassment', 'score': 0.0030938778072595596}, {'label': 'amusement', 'score': 0.00277989380992949}, {'label': 'gratitude', 'score': 0.001543231075629592}, {'label': 'pride', 'score': 0.0015392261557281017}], [{'label': 'nervousness', 'score': 0.39719051122665405}, {'label': 'sadness', 'score': 0.32254913449287415}, {'label': 'fear', 'score': 0.1038922443985939}, {'label': 'disappointment', 'score': 0.09697612375020981}, {'label': 'caring', 'score': 0.07454432547092438}, {'label': 'annoyance', 'score': 0.028701141476631165}, {'label': 'neutral', 'score': 0.023086844012141228}, {'label': 'approval', 'score': 0.021950388327240944}, {'label': 'realization', 'score': 0.02072622813284397}, {'label': 'confusion', 'score': 0.018161270767450333}, {'label': 'curiosity', 'score': 0.012681524269282818}, {'label': 'disapproval', 'score': 0.012055647559463978}, {'label': 'remorse', 'score': 0.009953884407877922}, {'label': 'joy', 'score': 0.009856089949607849}, {'label': 'love', 'score': 0.008620208129286766}, {'label': 'grief', 'score': 0.00846696924418211}, {'label': 'admiration', 'score': 0.00817666482180357}, {'label': 'anger', 'score': 0.007906513288617134}, {'label': 'relief', 'score': 0.006621941924095154}, {'label': 'desire', 'score': 0.0064583043567836285}, {'label': 'optimism', 'score': 0.006137173157185316}, {'label': 'excitement', 'score': 0.005699680186808109}, {'label': 'embarrassment', 'score': 0.004473102279007435}, {'label': 'disgust', 'score': 0.0030012254137545824}, {'label': 'amusement', 'score': 0.002593099605292082}, {'label': 'surprise', 'score': 0.0022112445440143347}, {'label': 'gratitude', 'score': 0.0013049254193902016}, {'label': 'pride', 'score': 0.001244305050931871}], [{'label': 'nervousness', 'score': 0.2881445288658142}, {'label': 'optimism', 'score': 0.23087483644485474}, {'label': 'fear', 'score': 0.17869240045547485}, {'label': 'caring', 'score': 0.143522247672081}, {'label': 'disappointment', 'score': 0.10906992107629776}, {'label': 'sadness', 'score': 0.08997198939323425}, {'label': 'approval', 'score': 0.04789488762617111}, {'label': 'neutral', 'score': 0.03810795769095421}, {'label': 'realization', 'score': 0.03046863153576851}, {'label': 'desire', 'score': 0.021065372973680496}, {'label': 'confusion', 'score': 0.020946446806192398}, {'label': 'disapproval', 'score': 0.019746199250221252}, {'label': 'relief', 'score': 0.015771979466080666}, {'label': 'joy', 'score': 0.013686709105968475}, {'label': 'curiosity', 'score': 0.012857687659561634}, {'label': 'admiration', 'score': 0.012837628833949566}, {'label': 'excitement', 'score': 0.01109409425407648}, {'label': 'annoyance', 'score': 0.009774991311132908}, {'label': 'remorse', 'score': 0.008362656459212303}, {'label': 'grief', 'score': 0.006124615203589201}, {'label': 'love', 'score': 0.005725733004510403}, {'label': 'surprise', 'score': 0.004812937695533037}, {'label': 'embarrassment', 'score': 0.0028004527557641268}, {'label': 'gratitude', 'score': 0.0023513103369623423}, {'label': 'pride', 'score': 0.0022829724475741386}, {'label': 'amusement', 'score': 0.001958266133442521}, {'label': 'anger', 'score': 0.0018273559398949146}, {'label': 'disgust', 'score': 0.0017828725976869464}], [{'label': 'nervousness', 'score': 0.4344199299812317}, {'label': 'joy', 'score': 0.31832489371299744}, {'label': 'fear', 'score': 0.16078154742717743}, {'label': 'caring', 'score': 0.12001749128103256}, {'label': 'approval', 'score': 0.08244886994361877}, {'label': 'relief', 'score': 0.07150868326425552}, {'label': 'neutral', 'score': 0.04506440460681915}, {'label': 'realization', 'score': 0.040321022272109985}, {'label': 'sadness', 'score': 0.039189521223306656}, {'label': 'excitement', 'score': 0.036482349038124084}, {'label': 'admiration', 'score': 0.027189919725060463}, {'label': 'confusion', 'score': 0.018949653953313828}, {'label': 'disappointment', 'score': 0.01395054068416357}, {'label': 'optimism', 'score': 0.012127377092838287}, {'label': 'annoyance', 'score': 0.011281056329607964}, {'label': 'disapproval', 'score': 0.009148522280156612}, {'label': 'pride', 'score': 0.008862169459462166}, {'label': 'amusement', 'score': 0.00880298763513565}, {'label': 'love', 'score': 0.007510247174650431}, {'label': 'curiosity', 'score': 0.0064048743806779385}, {'label': 'desire', 'score': 0.006333088967949152}, {'label': 'grief', 'score': 0.006264880299568176}, {'label': 'gratitude', 'score': 0.0052443440072238445}, {'label': 'embarrassment', 'score': 0.0038680732250213623}, {'label': 'remorse', 'score': 0.0037410762161016464}, {'label': 'surprise', 'score': 0.003722819034010172}, {'label': 'anger', 'score': 0.003254823386669159}, {'label': 'disgust', 'score': 0.0017336896853521466}], [{'label': 'fear', 'score': 0.8539103865623474}, {'label': 'nervousness', 'score': 0.08445313572883606}, {'label': 'neutral', 'score': 0.04954256862401962}, {'label': 'approval', 'score': 0.04185550659894943}, {'label': 'realization', 'score': 0.025828126817941666}, {'label': 'caring', 'score': 0.018595494329929352}, {'label': 'sadness', 'score': 0.017304610460996628}, {'label': 'disapproval', 'score': 0.01366432011127472}, {'label': 'disgust', 'score': 0.012873790226876736}, {'label': 'annoyance', 'score': 0.012642043642699718}, {'label': 'optimism', 'score': 0.011892744340002537}, {'label': 'disappointment', 'score': 0.010110563598573208}, {'label': 'admiration', 'score': 0.009923447854816914}, {'label': 'embarrassment', 'score': 0.007416702341288328}, {'label': 'confusion', 'score': 0.007154397666454315}, {'label': 'anger', 'score': 0.004981158766895533}, {'label': 'joy', 'score': 0.00490516796708107}, {'label': 'desire', 'score': 0.004801005125045776}, {'label': 'excitement', 'score': 0.004341167863458395}, {'label': 'amusement', 'score': 0.004232556093484163}, {'label': 'love', 'score': 0.003674741368740797}, {'label': 'relief', 'score': 0.0036342216189950705}, {'label': 'surprise', 'score': 0.003261618549004197}, {'label': 'grief', 'score': 0.0031473927665501833}, {'label': 'curiosity', 'score': 0.002567671239376068}, {'label': 'remorse', 'score': 0.002316452795639634}, {'label': 'gratitude', 'score': 0.0021056721452623606}, {'label': 'pride', 'score': 0.001938754809089005}], [{'label': 'disappointment', 'score': 0.3386947214603424}, {'label': 'neutral', 'score': 0.14818885922431946}, {'label': 'sadness', 'score': 0.12911981344223022}, {'label': 'disapproval', 'score': 0.11331191658973694}, {'label': 'fear', 'score': 0.07786670327186584}, {'label': 'nervousness', 'score': 0.0675029456615448}, {'label': 'realization', 'score': 0.06008851155638695}, {'label': 'annoyance', 'score': 0.03579958528280258}, {'label': 'approval', 'score': 0.03532345965504646}, {'label': 'optimism', 'score': 0.031372807919979095}, {'label': 'confusion', 'score': 0.02262279950082302}, {'label': 'desire', 'score': 0.009863440878689289}, {'label': 'caring', 'score': 0.009740022011101246}, {'label': 'disgust', 'score': 0.006628748960793018}, {'label': 'relief', 'score': 0.005637292750179768}, {'label': 'embarrassment', 'score': 0.004363821819424629}, {'label': 'joy', 'score': 0.004109564237296581}, {'label': 'surprise', 'score': 0.0035707245115190744}, {'label': 'grief', 'score': 0.0035469599533826113}, {'label': 'curiosity', 'score': 0.0035388057585805655}, {'label': 'excitement', 'score': 0.0027840209659188986}, {'label': 'anger', 'score': 0.002446042839437723}, {'label': 'admiration', 'score': 0.0021266350522637367}, {'label': 'remorse', 'score': 0.0020861737430095673}, {'label': 'love', 'score': 0.0016552818706259131}, {'label': 'amusement', 'score': 0.0009827655740082264}, {'label': 'pride', 'score': 0.0007209249306470156}, {'label': 'gratitude', 'score': 0.00032112380722537637}], [{'label': 'sadness', 'score': 0.4902288615703583}, {'label': 'anger', 'score': 0.1825670748949051}, {'label': 'disappointment', 'score': 0.15129713714122772}, {'label': 'annoyance', 'score': 0.15075568854808807}, {'label': 'fear', 'score': 0.029672816395759583}, {'label': 'nervousness', 'score': 0.028888504952192307}, {'label': 'disgust', 'score': 0.024407541379332542}, {'label': 'disapproval', 'score': 0.02256288006901741}, {'label': 'caring', 'score': 0.014549896121025085}, {'label': 'neutral', 'score': 0.014332927763462067}, {'label': 'curiosity', 'score': 0.009542267769575119}, {'label': 'confusion', 'score': 0.008731699548661709}, {'label': 'approval', 'score': 0.008221318013966084}, {'label': 'realization', 'score': 0.008114447817206383}, {'label': 'grief', 'score': 0.008077935315668583}, {'label': 'love', 'score': 0.007008154410868883}, {'label': 'embarrassment', 'score': 0.005713502876460552}, {'label': 'desire', 'score': 0.004988412838429213}, {'label': 'remorse', 'score': 0.004290163051337004}, {'label': 'joy', 'score': 0.0042447359301149845}, {'label': 'admiration', 'score': 0.0038414725568145514}, {'label': 'optimism', 'score': 0.0026020354125648737}, {'label': 'excitement', 'score': 0.0023896873462945223}, {'label': 'surprise', 'score': 0.0019129178253933787}, {'label': 'relief', 'score': 0.0015498925931751728}, {'label': 'amusement', 'score': 0.0013896755408495665}, {'label': 'gratitude', 'score': 0.0011556376703083515}, {'label': 'pride', 'score': 0.0008395995246246457}], [{'label': 'nervousness', 'score': 0.4992527365684509}, {'label': 'fear', 'score': 0.4161069393157959}, {'label': 'sadness', 'score': 0.197177916765213}, {'label': 'caring', 'score': 0.09934289753437042}, {'label': 'disappointment', 'score': 0.052427761256694794}, {'label': 'neutral', 'score': 0.02576313354074955}, {'label': 'optimism', 'score': 0.02316189371049404}, {'label': 'realization', 'score': 0.022585390135645866}, {'label': 'approval', 'score': 0.01893339306116104}, {'label': 'confusion', 'score': 0.017665542662143707}, {'label': 'admiration', 'score': 0.011609518900513649}, {'label': 'joy', 'score': 0.011444252915680408}, {'label': 'annoyance', 'score': 0.011158951558172703}, {'label': 'grief', 'score': 0.009865522384643555}, {'label': 'curiosity', 'score': 0.009613418951630592}, {'label': 'disapproval', 'score': 0.009367795661091805}, {'label': 'love', 'score': 0.009325660765171051}, {'label': 'relief', 'score': 0.009267404675483704}, {'label': 'desire', 'score': 0.00922400038689375}, {'label': 'excitement', 'score': 0.009098315611481667}, {'label': 'remorse', 'score': 0.007929489947855473}, {'label': 'surprise', 'score': 0.005498426500707865}, {'label': 'anger', 'score': 0.004042936023324728}, {'label': 'embarrassment', 'score': 0.0037156562320888042}, {'label': 'amusement', 'score': 0.003667595563456416}, {'label': 'disgust', 'score': 0.002962054219096899}, {'label': 'gratitude', 'score': 0.002328238682821393}, {'label': 'pride', 'score': 0.0016343132592737675}], [{'label': 'sadness', 'score': 0.5935831069946289}, {'label': 'nervousness', 'score': 0.18556256592273712}, {'label': 'caring', 'score': 0.11742474883794785}, {'label': 'fear', 'score': 0.08411425352096558}, {'label': 'disappointment', 'score': 0.07436015456914902}, {'label': 'realization', 'score': 0.027375878766179085}, {'label': 'neutral', 'score': 0.025562109425663948}, {'label': 'grief', 'score': 0.024397682398557663}, {'label': 'admiration', 'score': 0.021142326295375824}, {'label': 'approval', 'score': 0.021128233522176743}, {'label': 'optimism', 'score': 0.01329838577657938}, {'label': 'relief', 'score': 0.011214758269488811}, {'label': 'surprise', 'score': 0.010269139893352985}, {'label': 'remorse', 'score': 0.010206568986177444}, {'label': 'curiosity', 'score': 0.01018672063946724}, {'label': 'confusion', 'score': 0.009341154247522354}, {'label': 'annoyance', 'score': 0.009249725379049778}, {'label': 'joy', 'score': 0.008649434894323349}, {'label': 'disapproval', 'score': 0.008398403413593769}, {'label': 'desire', 'score': 0.007425019517540932}, {'label': 'excitement', 'score': 0.00711063714697957}, {'label': 'love', 'score': 0.00703921215608716}, {'label': 'gratitude', 'score': 0.0028313123621046543}, {'label': 'anger', 'score': 0.002536983462050557}, {'label': 'embarrassment', 'score': 0.002452001441270113}, {'label': 'amusement', 'score': 0.0023363404907286167}, {'label': 'disgust', 'score': 0.002023381646722555}, {'label': 'pride', 'score': 0.0016282666474580765}], [{'label': 'sadness', 'score': 0.5066847205162048}, {'label': 'caring', 'score': 0.21788376569747925}, {'label': 'optimism', 'score': 0.18937568366527557}, {'label': 'disappointment', 'score': 0.17124450206756592}, {'label': 'nervousness', 'score': 0.058305270969867706}, {'label': 'desire', 'score': 0.0377948172390461}, {'label': 'annoyance', 'score': 0.026919784024357796}, {'label': 'neutral', 'score': 0.02203875221312046}, {'label': 'approval', 'score': 0.02142813429236412}, {'label': 'joy', 'score': 0.020138109102845192}, {'label': 'remorse', 'score': 0.01998251862823963}, {'label': 'fear', 'score': 0.018732037395238876}, {'label': 'disapproval', 'score': 0.016909554600715637}, {'label': 'realization', 'score': 0.015959016978740692}, {'label': 'grief', 'score': 0.01491981465369463}, {'label': 'relief', 'score': 0.01253135409206152}, {'label': 'anger', 'score': 0.006803371012210846}, {'label': 'admiration', 'score': 0.006527797784656286}, {'label': 'love', 'score': 0.005650220904499292}, {'label': 'confusion', 'score': 0.00444845762103796}, {'label': 'excitement', 'score': 0.0035467694979161024}, {'label': 'curiosity', 'score': 0.003408981254324317}, {'label': 'gratitude', 'score': 0.0029311892576515675}, {'label': 'amusement', 'score': 0.002466547768563032}, {'label': 'pride', 'score': 0.0020714811980724335}, {'label': 'disgust', 'score': 0.0020621605217456818}, {'label': 'surprise', 'score': 0.0019148873398080468}, {'label': 'embarrassment', 'score': 0.0017450266750529408}], [{'label': 'fear', 'score': 0.7850368618965149}, {'label': 'nervousness', 'score': 0.36935046315193176}, {'label': 'joy', 'score': 0.12371731549501419}, {'label': 'sadness', 'score': 0.059407789260149}, {'label': 'realization', 'score': 0.04134122282266617}, {'label': 'neutral', 'score': 0.030897576361894608}, {'label': 'approval', 'score': 0.029121506959199905}, {'label': 'excitement', 'score': 0.027507338672876358}, {'label': 'relief', 'score': 0.02676931954920292}, {'label': 'caring', 'score': 0.023729173466563225}, {'label': 'disappointment', 'score': 0.019725194200873375}, {'label': 'surprise', 'score': 0.01710340939462185}, {'label': 'annoyance', 'score': 0.013253174722194672}, {'label': 'admiration', 'score': 0.012862779200077057}, {'label': 'confusion', 'score': 0.012646687217056751}, {'label': 'optimism', 'score': 0.01224329974502325}, {'label': 'grief', 'score': 0.009761210530996323}, {'label': 'amusement', 'score': 0.009722991846501827}, {'label': 'disapproval', 'score': 0.008931675925850868}, {'label': 'love', 'score': 0.0065108672715723515}, {'label': 'anger', 'score': 0.006242513190954924}, {'label': 'embarrassment', 'score': 0.005836689379066229}, {'label': 'disgust', 'score': 0.005212912801653147}, {'label': 'desire', 'score': 0.005049525760114193}, {'label': 'pride', 'score': 0.004916563164442778}, {'label': 'curiosity', 'score': 0.004651121329516172}, {'label': 'gratitude', 'score': 0.003951373975723982}, {'label': 'remorse', 'score': 0.0028310646302998066}], [{'label': 'sadness', 'score': 0.6563558578491211}, {'label': 'disappointment', 'score': 0.2799466550350189}, {'label': 'optimism', 'score': 0.09406889975070953}, {'label': 'annoyance', 'score': 0.05506707355380058}, {'label': 'caring', 'score': 0.04928704723715782}, {'label': 'desire', 'score': 0.040139179676771164}, {'label': 'disapproval', 'score': 0.03442429378628731}, {'label': 'anger', 'score': 0.023393740877509117}, {'label': 'approval', 'score': 0.017664534971117973}, {'label': 'neutral', 'score': 0.01764230616390705}, {'label': 'grief', 'score': 0.014828262850642204}, {'label': 'remorse', 'score': 0.013489522971212864}, {'label': 'realization', 'score': 0.011190628632903099}, {'label': 'nervousness', 'score': 0.008890393190085888}, {'label': 'joy', 'score': 0.00828023161739111}, {'label': 'admiration', 'score': 0.008205330930650234}, {'label': 'love', 'score': 0.007721090689301491}, {'label': 'disgust', 'score': 0.007020050659775734}, {'label': 'fear', 'score': 0.006025354843586683}, {'label': 'relief', 'score': 0.003915026318281889}, {'label': 'confusion', 'score': 0.0026866665575653315}, {'label': 'curiosity', 'score': 0.002248128643259406}, {'label': 'excitement', 'score': 0.001850654138252139}, {'label': 'gratitude', 'score': 0.0018430075142532587}, {'label': 'embarrassment', 'score': 0.0018017722759395838}, {'label': 'amusement', 'score': 0.0016426944639533758}, {'label': 'pride', 'score': 0.0014225824270397425}, {'label': 'surprise', 'score': 0.0013226369628682733}], [{'label': 'fear', 'score': 0.6045733690261841}, {'label': 'nervousness', 'score': 0.503665030002594}, {'label': 'sadness', 'score': 0.18526725471019745}, {'label': 'caring', 'score': 0.06810197234153748}, {'label': 'confusion', 'score': 0.05575801059603691}, {'label': 'disappointment', 'score': 0.05339837446808815}, {'label': 'neutral', 'score': 0.035257332026958466}, {'label': 'realization', 'score': 0.031841110438108444}, {'label': 'approval', 'score': 0.03020154871046543}, {'label': 'curiosity', 'score': 0.022707464173436165}, {'label': 'optimism', 'score': 0.015552676282823086}, {'label': 'admiration', 'score': 0.013396365568041801}, {'label': 'disapproval', 'score': 0.013229374773800373}, {'label': 'annoyance', 'score': 0.0113074304535985}, {'label': 'grief', 'score': 0.010694488883018494}, {'label': 'joy', 'score': 0.00961264781653881}, {'label': 'love', 'score': 0.009067920967936516}, {'label': 'excitement', 'score': 0.00852447934448719}, {'label': 'relief', 'score': 0.008067305199801922}, {'label': 'desire', 'score': 0.00678030401468277}, {'label': 'remorse', 'score': 0.006761993281543255}, {'label': 'surprise', 'score': 0.0064981188625097275}, {'label': 'embarrassment', 'score': 0.004677888937294483}, {'label': 'disgust', 'score': 0.0037577799521386623}, {'label': 'anger', 'score': 0.0037508315872401}, {'label': 'amusement', 'score': 0.0035105522256344557}, {'label': 'gratitude', 'score': 0.001778994221240282}, {'label': 'pride', 'score': 0.0014294179854914546}], [{'label': 'fear', 'score': 0.6896101236343384}, {'label': 'nervousness', 'score': 0.32329970598220825}, {'label': 'sadness', 'score': 0.157085120677948}, {'label': 'caring', 'score': 0.06927597522735596}, {'label': 'neutral', 'score': 0.03718230128288269}, {'label': 'disappointment', 'score': 0.03297419100999832}, {'label': 'desire', 'score': 0.020085275173187256}, {'label': 'realization', 'score': 0.017352638766169548}, {'label': 'approval', 'score': 0.01576150208711624}, {'label': 'optimism', 'score': 0.015335207805037498}, {'label': 'confusion', 'score': 0.013571632094681263}, {'label': 'annoyance', 'score': 0.011968511156737804}, {'label': 'love', 'score': 0.011817852966487408}, {'label': 'disapproval', 'score': 0.010209184139966965}, {'label': 'grief', 'score': 0.009817851707339287}, {'label': 'admiration', 'score': 0.009195287711918354}, {'label': 'curiosity', 'score': 0.008259695023298264}, {'label': 'excitement', 'score': 0.007922242395579815}, {'label': 'joy', 'score': 0.007305181119590998}, {'label': 'anger', 'score': 0.006258213426917791}, {'label': 'disgust', 'score': 0.005997506435960531}, {'label': 'surprise', 'score': 0.005460786633193493}, {'label': 'relief', 'score': 0.005456042010337114}, {'label': 'remorse', 'score': 0.004369910806417465}, {'label': 'embarrassment', 'score': 0.0028304739389568567}, {'label': 'amusement', 'score': 0.002634611679241061}, {'label': 'gratitude', 'score': 0.0017866784473881125}, {'label': 'pride', 'score': 0.001456682221032679}], [{'label': 'nervousness', 'score': 0.33086341619491577}, {'label': 'caring', 'score': 0.15177175402641296}, {'label': 'sadness', 'score': 0.1425972431898117}, {'label': 'fear', 'score': 0.12170082330703735}, {'label': 'disappointment', 'score': 0.0939437597990036}, {'label': 'neutral', 'score': 0.04985503852367401}, {'label': 'approval', 'score': 0.0374932587146759}, {'label': 'annoyance', 'score': 0.03241991251707077}, {'label': 'optimism', 'score': 0.03040405362844467}, {'label': 'realization', 'score': 0.02900601364672184}, {'label': 'disapproval', 'score': 0.02080242708325386}, {'label': 'relief', 'score': 0.014206083491444588}, {'label': 'confusion', 'score': 0.011772416532039642}, {'label': 'joy', 'score': 0.01164478063583374}, {'label': 'desire', 'score': 0.009610695764422417}, {'label': 'remorse', 'score': 0.007188613526523113}, {'label': 'admiration', 'score': 0.0064858910627663136}, {'label': 'grief', 'score': 0.006211922038346529}, {'label': 'anger', 'score': 0.0059638130478560925}, {'label': 'excitement', 'score': 0.004422058816999197}, {'label': 'curiosity', 'score': 0.004295246209949255}, {'label': 'love', 'score': 0.003626513294875622}, {'label': 'embarrassment', 'score': 0.0029426238033920527}, {'label': 'disgust', 'score': 0.002226777607575059}, {'label': 'pride', 'score': 0.002216680906713009}, {'label': 'gratitude', 'score': 0.001922920229844749}, {'label': 'surprise', 'score': 0.0017708854284137487}, {'label': 'amusement', 'score': 0.0011896673822775483}], [{'label': 'fear', 'score': 0.7346357107162476}, {'label': 'nervousness', 'score': 0.15414756536483765}, {'label': 'neutral', 'score': 0.047544125467538834}, {'label': 'caring', 'score': 0.04001409932971001}, {'label': 'desire', 'score': 0.03133050724864006}, {'label': 'sadness', 'score': 0.027752289548516273}, {'label': 'approval', 'score': 0.027092771604657173}, {'label': 'optimism', 'score': 0.01982075162231922}, {'label': 'realization', 'score': 0.019080588594079018}, {'label': 'disapproval', 'score': 0.014898103661835194}, {'label': 'disappointment', 'score': 0.012869034893810749}, {'label': 'annoyance', 'score': 0.012268582358956337}, {'label': 'confusion', 'score': 0.010810128413140774}, {'label': 'admiration', 'score': 0.008016558364033699}, {'label': 'excitement', 'score': 0.007738972082734108}, {'label': 'disgust', 'score': 0.007461762987077236}, {'label': 'joy', 'score': 0.006271671038120985}, {'label': 'love', 'score': 0.0062227933667600155}, {'label': 'anger', 'score': 0.005190820433199406}, {'label': 'curiosity', 'score': 0.004688032437115908}, {'label': 'relief', 'score': 0.003711868543177843}, {'label': 'grief', 'score': 0.0036570411175489426}, {'label': 'surprise', 'score': 0.003044151235371828}, {'label': 'embarrassment', 'score': 0.0025429960805922747}, {'label': 'amusement', 'score': 0.0023355104494839907}, {'label': 'remorse', 'score': 0.0018256406765431166}, {'label': 'pride', 'score': 0.0016281991265714169}, {'label': 'gratitude', 'score': 0.0012706194538623095}], [{'label': 'caring', 'score': 0.437516450881958}, {'label': 'nervousness', 'score': 0.33612343668937683}, {'label': 'fear', 'score': 0.13274215161800385}, {'label': 'sadness', 'score': 0.07409526407718658}, {'label': 'approval', 'score': 0.05613895133137703}, {'label': 'neutral', 'score': 0.05197587609291077}, {'label': 'admiration', 'score': 0.022635575383901596}, {'label': 'realization', 'score': 0.021294599398970604}, {'label': 'confusion', 'score': 0.020843178033828735}, {'label': 'relief', 'score': 0.015952518209815025}, {'label': 'optimism', 'score': 0.015461418777704239}, {'label': 'disappointment', 'score': 0.014068678952753544}, {'label': 'joy', 'score': 0.013054660521447659}, {'label': 'love', 'score': 0.012818160466849804}, {'label': 'disapproval', 'score': 0.011462786234915257}, {'label': 'curiosity', 'score': 0.010659901425242424}, {'label': 'excitement', 'score': 0.01030911784619093}, {'label': 'remorse', 'score': 0.008982792496681213}, {'label': 'desire', 'score': 0.008852235972881317}, {'label': 'grief', 'score': 0.006852712482213974}, {'label': 'annoyance', 'score': 0.006566628348082304}, {'label': 'gratitude', 'score': 0.003932066727429628}, {'label': 'pride', 'score': 0.0029607450123876333}, {'label': 'anger', 'score': 0.0028617815114557743}, {'label': 'embarrassment', 'score': 0.002396532567217946}, {'label': 'amusement', 'score': 0.0021508047357201576}, {'label': 'surprise', 'score': 0.002097120974212885}, {'label': 'disgust', 'score': 0.0014689518138766289}], [{'label': 'sadness', 'score': 0.3338412046432495}, {'label': 'gratitude', 'score': 0.24241197109222412}, {'label': 'caring', 'score': 0.18248379230499268}, {'label': 'joy', 'score': 0.09205810725688934}, {'label': 'nervousness', 'score': 0.0882498025894165}, {'label': 'relief', 'score': 0.08375286310911179}, {'label': 'admiration', 'score': 0.06776150315999985}, {'label': 'approval', 'score': 0.05642060190439224}, {'label': 'disappointment', 'score': 0.0393880158662796}, {'label': 'remorse', 'score': 0.027002837508916855}, {'label': 'grief', 'score': 0.020779278129339218}, {'label': 'realization', 'score': 0.018930010497570038}, {'label': 'fear', 'score': 0.01783469319343567}, {'label': 'optimism', 'score': 0.013091912493109703}, {'label': 'excitement', 'score': 0.012997512705624104}, {'label': 'neutral', 'score': 0.012886680662631989}, {'label': 'love', 'score': 0.009747120551764965}, {'label': 'confusion', 'score': 0.009593930095434189}, {'label': 'pride', 'score': 0.009345214813947678}, {'label': 'desire', 'score': 0.009047266095876694}, {'label': 'annoyance', 'score': 0.007292767055332661}, {'label': 'disapproval', 'score': 0.007196601014584303}, {'label': 'curiosity', 'score': 0.006443466991186142}, {'label': 'embarrassment', 'score': 0.002584291622042656}, {'label': 'anger', 'score': 0.0023216367699205875}, {'label': 'surprise', 'score': 0.0022565918043255806}, {'label': 'amusement', 'score': 0.0015385053120553493}, {'label': 'disgust', 'score': 0.001450795796699822}], [{'label': 'sadness', 'score': 0.5132277607917786}, {'label': 'nervousness', 'score': 0.41980764269828796}, {'label': 'fear', 'score': 0.19089946150779724}, {'label': 'caring', 'score': 0.09762847423553467}, {'label': 'disappointment', 'score': 0.0697912722826004}, {'label': 'approval', 'score': 0.02435418777167797}, {'label': 'confusion', 'score': 0.02346390299499035}, {'label': 'realization', 'score': 0.022783448919653893}, {'label': 'grief', 'score': 0.01985100656747818}, {'label': 'neutral', 'score': 0.01790529116988182}, {'label': 'curiosity', 'score': 0.017363350838422775}, {'label': 'joy', 'score': 0.016392910853028297}, {'label': 'remorse', 'score': 0.014492018148303032}, {'label': 'admiration', 'score': 0.013858114369213581}, {'label': 'love', 'score': 0.012882228940725327}, {'label': 'annoyance', 'score': 0.012392563745379448}, {'label': 'relief', 'score': 0.010877396911382675}, {'label': 'optimism', 'score': 0.010554591193795204}, {'label': 'excitement', 'score': 0.009346133098006248}, {'label': 'disapproval', 'score': 0.007912414148449898}, {'label': 'desire', 'score': 0.006263764575123787}, {'label': 'anger', 'score': 0.0049141328781843185}, {'label': 'surprise', 'score': 0.0045708781108260155}, {'label': 'amusement', 'score': 0.004251097794622183}, {'label': 'embarrassment', 'score': 0.003897572634741664}, {'label': 'gratitude', 'score': 0.003132394514977932}, {'label': 'disgust', 'score': 0.0028508459217846394}, {'label': 'pride', 'score': 0.0016341443406417966}], [{'label': 'sadness', 'score': 0.3189011812210083}, {'label': 'nervousness', 'score': 0.30388903617858887}, {'label': 'fear', 'score': 0.2680269479751587}, {'label': 'disappointment', 'score': 0.06919801235198975}, {'label': 'caring', 'score': 0.06843149662017822}, {'label': 'neutral', 'score': 0.032414041459560394}, {'label': 'annoyance', 'score': 0.027014903724193573}, {'label': 'realization', 'score': 0.025510841980576515}, {'label': 'approval', 'score': 0.024694697931408882}, {'label': 'disapproval', 'score': 0.011823606677353382}, {'label': 'grief', 'score': 0.010317995212972164}, {'label': 'anger', 'score': 0.010192829184234142}, {'label': 'confusion', 'score': 0.009816340170800686}, {'label': 'joy', 'score': 0.008831203915178776}, {'label': 'admiration', 'score': 0.008659862913191319}, {'label': 'optimism', 'score': 0.00842849351465702}, {'label': 'desire', 'score': 0.006768632214516401}, {'label': 'relief', 'score': 0.006495346315205097}, {'label': 'love', 'score': 0.006304899230599403}, {'label': 'remorse', 'score': 0.005180981010198593}, {'label': 'curiosity', 'score': 0.005114078521728516}, {'label': 'excitement', 'score': 0.0038600892294198275}, {'label': 'disgust', 'score': 0.0036759302020072937}, {'label': 'embarrassment', 'score': 0.003105834126472473}, {'label': 'surprise', 'score': 0.0022314812522381544}, {'label': 'amusement', 'score': 0.0021242110524326563}, {'label': 'pride', 'score': 0.0015449859201908112}, {'label': 'gratitude', 'score': 0.0011771898716688156}], [{'label': 'anger', 'score': 0.40269842743873596}, {'label': 'neutral', 'score': 0.30663105845451355}, {'label': 'annoyance', 'score': 0.2534498870372772}, {'label': 'disapproval', 'score': 0.06608116626739502}, {'label': 'disappointment', 'score': 0.02130993828177452}, {'label': 'approval', 'score': 0.01127285324037075}, {'label': 'disgust', 'score': 0.009811058640480042}, {'label': 'sadness', 'score': 0.007468249183148146}, {'label': 'admiration', 'score': 0.006915267091244459}, {'label': 'caring', 'score': 0.006431480869650841}, {'label': 'fear', 'score': 0.0046960292384028435}, {'label': 'realization', 'score': 0.004679734352976084}, {'label': 'excitement', 'score': 0.002620693063363433}, {'label': 'confusion', 'score': 0.002370891161262989}, {'label': 'surprise', 'score': 0.0021652602590620518}, {'label': 'embarrassment', 'score': 0.002091608941555023}, {'label': 'optimism', 'score': 0.0020804577507078648}, {'label': 'curiosity', 'score': 0.0019142794189974666}, {'label': 'joy', 'score': 0.0017628788482397795}, {'label': 'nervousness', 'score': 0.0013721327995881438}, {'label': 'amusement', 'score': 0.0010269240010529757}, {'label': 'desire', 'score': 0.0010243264259770513}, {'label': 'pride', 'score': 0.0009832755895331502}, {'label': 'grief', 'score': 0.0008294879808090627}, {'label': 'love', 'score': 0.0007512999000027776}, {'label': 'relief', 'score': 0.0005861756508238614}, {'label': 'gratitude', 'score': 0.0005233337869867682}, {'label': 'remorse', 'score': 0.00044904870446771383}], [{'label': 'fear', 'score': 0.8352302312850952}, {'label': 'nervousness', 'score': 0.432702898979187}, {'label': 'sadness', 'score': 0.07039438188076019}, {'label': 'realization', 'score': 0.04095468297600746}, {'label': 'neutral', 'score': 0.03905446454882622}, {'label': 'approval', 'score': 0.029786795377731323}, {'label': 'confusion', 'score': 0.026044314727187157}, {'label': 'caring', 'score': 0.02381325513124466}, {'label': 'disappointment', 'score': 0.02378256432712078}, {'label': 'excitement', 'score': 0.0216472577303648}, {'label': 'joy', 'score': 0.016688121482729912}, {'label': 'curiosity', 'score': 0.01592685654759407}, {'label': 'surprise', 'score': 0.015641504898667336}, {'label': 'disapproval', 'score': 0.012567421421408653}, {'label': 'annoyance', 'score': 0.011830182746052742}, {'label': 'optimism', 'score': 0.010625001974403858}, {'label': 'admiration', 'score': 0.010571734979748726}, {'label': 'desire', 'score': 0.010570772923529148}, {'label': 'relief', 'score': 0.009415804408490658}, {'label': 'grief', 'score': 0.007976599037647247}, {'label': 'disgust', 'score': 0.0076094153337180614}, {'label': 'love', 'score': 0.006276445463299751}, {'label': 'amusement', 'score': 0.005796488840132952}, {'label': 'embarrassment', 'score': 0.00558302691206336}, {'label': 'anger', 'score': 0.0036910867784172297}, {'label': 'remorse', 'score': 0.0022115621250122786}, {'label': 'pride', 'score': 0.0018511043163016438}, {'label': 'gratitude', 'score': 0.0015379259129986167}], [{'label': 'fear', 'score': 0.7419122457504272}, {'label': 'nervousness', 'score': 0.10055176913738251}, {'label': 'annoyance', 'score': 0.06590390205383301}, {'label': 'anger', 'score': 0.06505290418863297}, {'label': 'neutral', 'score': 0.05541451647877693}, {'label': 'sadness', 'score': 0.055134404450654984}, {'label': 'disappointment', 'score': 0.030262591317296028}, {'label': 'disapproval', 'score': 0.02516716904938221}, {'label': 'caring', 'score': 0.01918300800025463}, {'label': 'realization', 'score': 0.018711665645241737}, {'label': 'approval', 'score': 0.016387423500418663}, {'label': 'disgust', 'score': 0.01278400607407093}, {'label': 'confusion', 'score': 0.011337749660015106}, {'label': 'optimism', 'score': 0.006565994117408991}, {'label': 'curiosity', 'score': 0.005825107451528311}, {'label': 'embarrassment', 'score': 0.005326020531356335}, {'label': 'desire', 'score': 0.004851670004427433}, {'label': 'grief', 'score': 0.004671505652368069}, {'label': 'joy', 'score': 0.004612631630152464}, {'label': 'admiration', 'score': 0.004368344787508249}, {'label': 'surprise', 'score': 0.003984296228736639}, {'label': 'love', 'score': 0.0035161415580660105}, {'label': 'excitement', 'score': 0.00342237064614892}, {'label': 'relief', 'score': 0.0028013065457344055}, {'label': 'amusement', 'score': 0.0020846237894147635}, {'label': 'remorse', 'score': 0.0015960345044732094}, {'label': 'pride', 'score': 0.0014180944999679923}, {'label': 'gratitude', 'score': 0.001224307343363762}], [{'label': 'sadness', 'score': 0.6620531678199768}, {'label': 'nervousness', 'score': 0.20436275005340576}, {'label': 'fear', 'score': 0.10138513147830963}, {'label': 'disappointment', 'score': 0.0956396833062172}, {'label': 'neutral', 'score': 0.028412630781531334}, {'label': 'realization', 'score': 0.027053024619817734}, {'label': 'caring', 'score': 0.025650952011346817}, {'label': 'approval', 'score': 0.021129032596945763}, {'label': 'grief', 'score': 0.020900456234812737}, {'label': 'annoyance', 'score': 0.013358119875192642}, {'label': 'confusion', 'score': 0.011212161742150784}, {'label': 'remorse', 'score': 0.010569491423666477}, {'label': 'joy', 'score': 0.009763984940946102}, {'label': 'curiosity', 'score': 0.009454733692109585}, {'label': 'admiration', 'score': 0.008969350717961788}, {'label': 'love', 'score': 0.007493400480598211}, {'label': 'relief', 'score': 0.00636039674282074}, {'label': 'disapproval', 'score': 0.005670832935720682}, {'label': 'excitement', 'score': 0.005136579275131226}, {'label': 'desire', 'score': 0.005012516863644123}, {'label': 'anger', 'score': 0.004912815522402525}, {'label': 'optimism', 'score': 0.003988345619291067}, {'label': 'surprise', 'score': 0.0038936352357268333}, {'label': 'embarrassment', 'score': 0.0036521325819194317}, {'label': 'amusement', 'score': 0.0030326463747769594}, {'label': 'disgust', 'score': 0.002753612818196416}, {'label': 'gratitude', 'score': 0.001652728533372283}, {'label': 'pride', 'score': 0.0011801539221778512}], [{'label': 'fear', 'score': 0.7621070146560669}, {'label': 'nervousness', 'score': 0.28519514203071594}, {'label': 'sadness', 'score': 0.16383284330368042}, {'label': 'neutral', 'score': 0.04186435043811798}, {'label': 'caring', 'score': 0.03210096433758736}, {'label': 'realization', 'score': 0.027201766148209572}, {'label': 'disappointment', 'score': 0.02516026236116886}, {'label': 'approval', 'score': 0.02480357512831688}, {'label': 'admiration', 'score': 0.014335601590573788}, {'label': 'grief', 'score': 0.011608283035457134}, {'label': 'joy', 'score': 0.010823098942637444}, {'label': 'confusion', 'score': 0.010615547187626362}, {'label': 'love', 'score': 0.009075199253857136}, {'label': 'annoyance', 'score': 0.008660882711410522}, {'label': 'disapproval', 'score': 0.008544964715838432}, {'label': 'excitement', 'score': 0.008102701045572758}, {'label': 'optimism', 'score': 0.0071308184415102005}, {'label': 'relief', 'score': 0.007105703931301832}, {'label': 'surprise', 'score': 0.006355077028274536}, {'label': 'desire', 'score': 0.005895580165088177}, {'label': 'disgust', 'score': 0.005888399202376604}, {'label': 'curiosity', 'score': 0.005209083668887615}, {'label': 'anger', 'score': 0.004190253093838692}, {'label': 'amusement', 'score': 0.004082478582859039}, {'label': 'embarrassment', 'score': 0.003563976613804698}, {'label': 'remorse', 'score': 0.003205210668966174}, {'label': 'gratitude', 'score': 0.0021901149302721024}, {'label': 'pride', 'score': 0.001808378379791975}], [{'label': 'sadness', 'score': 0.47002848982810974}, {'label': 'caring', 'score': 0.151498481631279}, {'label': 'disappointment', 'score': 0.13155853748321533}, {'label': 'neutral', 'score': 0.06864115595817566}, {'label': 'approval', 'score': 0.061209168285131454}, {'label': 'nervousness', 'score': 0.04641884192824364}, {'label': 'realization', 'score': 0.02501850575208664}, {'label': 'annoyance', 'score': 0.01930743083357811}, {'label': 'relief', 'score': 0.01897173561155796}, {'label': 'joy', 'score': 0.018162963911890984}, {'label': 'disapproval', 'score': 0.015937000513076782}, {'label': 'admiration', 'score': 0.015926700085401535}, {'label': 'optimism', 'score': 0.011599871329963207}, {'label': 'grief', 'score': 0.010969080962240696}, {'label': 'desire', 'score': 0.008850864134728909}, {'label': 'fear', 'score': 0.007671295665204525}, {'label': 'remorse', 'score': 0.006256802473217249}, {'label': 'love', 'score': 0.005018915981054306}, {'label': 'curiosity', 'score': 0.004146161023527384}, {'label': 'confusion', 'score': 0.0033595545683056116}, {'label': 'excitement', 'score': 0.0032786340452730656}, {'label': 'anger', 'score': 0.0026561638806015253}, {'label': 'pride', 'score': 0.0023178437259048223}, {'label': 'gratitude', 'score': 0.0017864471301436424}, {'label': 'embarrassment', 'score': 0.001637470442801714}, {'label': 'disgust', 'score': 0.0014632277889177203}, {'label': 'amusement', 'score': 0.0012296553468331695}, {'label': 'surprise', 'score': 0.0010237108217552304}], [{'label': 'annoyance', 'score': 0.564075231552124}, {'label': 'anger', 'score': 0.4338706135749817}, {'label': 'disappointment', 'score': 0.10840390622615814}, {'label': 'neutral', 'score': 0.07972671836614609}, {'label': 'disapproval', 'score': 0.04921110346913338}, {'label': 'sadness', 'score': 0.02475714683532715}, {'label': 'approval', 'score': 0.02308656834065914}, {'label': 'realization', 'score': 0.013506977818906307}, {'label': 'caring', 'score': 0.011116250418126583}, {'label': 'disgust', 'score': 0.009818918071687222}, {'label': 'optimism', 'score': 0.005990932229906321}, {'label': 'confusion', 'score': 0.005868225358426571}, {'label': 'embarrassment', 'score': 0.004659369587898254}, {'label': 'curiosity', 'score': 0.003969402983784676}, {'label': 'nervousness', 'score': 0.0037290106993168592}, {'label': 'desire', 'score': 0.0034467114601284266}, {'label': 'fear', 'score': 0.003063792595639825}, {'label': 'joy', 'score': 0.0021643589716404676}, {'label': 'admiration', 'score': 0.0021091357339173555}, {'label': 'remorse', 'score': 0.0021004865411669016}, {'label': 'grief', 'score': 0.001514720730483532}, {'label': 'love', 'score': 0.0012954386183992028}, {'label': 'gratitude', 'score': 0.0012695530895143747}, {'label': 'pride', 'score': 0.0012054673861712217}, {'label': 'excitement', 'score': 0.0011581613216549158}, {'label': 'surprise', 'score': 0.0011397526832297444}, {'label': 'relief', 'score': 0.0010310481302440166}, {'label': 'amusement', 'score': 0.0006537728477269411}], [{'label': 'sadness', 'score': 0.7961654663085938}, {'label': 'fear', 'score': 0.142030268907547}, {'label': 'disappointment', 'score': 0.10293078422546387}, {'label': 'nervousness', 'score': 0.05807644873857498}, {'label': 'grief', 'score': 0.027127332985401154}, {'label': 'annoyance', 'score': 0.01978265307843685}, {'label': 'realization', 'score': 0.018113870173692703}, {'label': 'anger', 'score': 0.017018359154462814}, {'label': 'neutral', 'score': 0.014946426264941692}, {'label': 'approval', 'score': 0.011002627201378345}, {'label': 'caring', 'score': 0.010717978700995445}, {'label': 'disapproval', 'score': 0.01035518478602171}, {'label': 'love', 'score': 0.00804408174008131}, {'label': 'admiration', 'score': 0.007990269921720028}, {'label': 'remorse', 'score': 0.007974237203598022}, {'label': 'disgust', 'score': 0.0076973335817456245}, {'label': 'joy', 'score': 0.006566789932549}, {'label': 'confusion', 'score': 0.006350771989673376}, {'label': 'curiosity', 'score': 0.005544361658394337}, {'label': 'surprise', 'score': 0.004469145555049181}, {'label': 'embarrassment', 'score': 0.003939749673008919}, {'label': 'amusement', 'score': 0.0036152112297713757}, {'label': 'desire', 'score': 0.003434129524976015}, {'label': 'relief', 'score': 0.0031476200092583895}, {'label': 'excitement', 'score': 0.0028986423276364803}, {'label': 'optimism', 'score': 0.0028712046332657337}, {'label': 'gratitude', 'score': 0.0019032920245081186}, {'label': 'pride', 'score': 0.0008585760951973498}], [{'label': 'desire', 'score': 0.5429622530937195}, {'label': 'sadness', 'score': 0.5382781624794006}, {'label': 'disappointment', 'score': 0.12488830834627151}, {'label': 'curiosity', 'score': 0.11513368785381317}, {'label': 'caring', 'score': 0.05429839715361595}, {'label': 'optimism', 'score': 0.050908785313367844}, {'label': 'remorse', 'score': 0.04222633317112923}, {'label': 'nervousness', 'score': 0.03734474629163742}, {'label': 'neutral', 'score': 0.031484268605709076}, {'label': 'confusion', 'score': 0.021039649844169617}, {'label': 'fear', 'score': 0.02098758891224861}, {'label': 'grief', 'score': 0.017605502158403397}, {'label': 'annoyance', 'score': 0.01719854585826397}, {'label': 'disapproval', 'score': 0.015985464677214622}, {'label': 'love', 'score': 0.012381067499518394}, {'label': 'realization', 'score': 0.010053028352558613}, {'label': 'approval', 'score': 0.008411768823862076}, {'label': 'disgust', 'score': 0.008057516068220139}, {'label': 'anger', 'score': 0.007114079315215349}, {'label': 'surprise', 'score': 0.006497509777545929}, {'label': 'excitement', 'score': 0.005925505422055721}, {'label': 'admiration', 'score': 0.004766697995364666}, {'label': 'joy', 'score': 0.0040124994702637196}, {'label': 'amusement', 'score': 0.003083951538428664}, {'label': 'embarrassment', 'score': 0.0028977133333683014}, {'label': 'relief', 'score': 0.002823497401550412}, {'label': 'gratitude', 'score': 0.002096981042996049}, {'label': 'pride', 'score': 0.0007712267688475549}], [{'label': 'disappointment', 'score': 0.6110854148864746}, {'label': 'sadness', 'score': 0.17607232928276062}, {'label': 'annoyance', 'score': 0.14827106893062592}, {'label': 'neutral', 'score': 0.09854769706726074}, {'label': 'nervousness', 'score': 0.03703536465764046}, {'label': 'disapproval', 'score': 0.03529786318540573}, {'label': 'realization', 'score': 0.01863839663565159}, {'label': 'anger', 'score': 0.015940971672534943}, {'label': 'approval', 'score': 0.011939124204218388}, {'label': 'fear', 'score': 0.010646522045135498}, {'label': 'caring', 'score': 0.009555630385875702}, {'label': 'embarrassment', 'score': 0.008133644238114357}, {'label': 'optimism', 'score': 0.006790041457861662}, {'label': 'confusion', 'score': 0.006085572764277458}, {'label': 'remorse', 'score': 0.0059821102768182755}, {'label': 'disgust', 'score': 0.004490323830395937}, {'label': 'curiosity', 'score': 0.004289800766855478}, {'label': 'desire', 'score': 0.003713644575327635}, {'label': 'grief', 'score': 0.003294217400252819}, {'label': 'joy', 'score': 0.0029811859130859375}, {'label': 'relief', 'score': 0.002945717191323638}, {'label': 'love', 'score': 0.002208775607869029}, {'label': 'surprise', 'score': 0.0021423357538878918}, {'label': 'excitement', 'score': 0.001928561250679195}, {'label': 'admiration', 'score': 0.0015849914634600282}, {'label': 'amusement', 'score': 0.0008042047265917063}, {'label': 'gratitude', 'score': 0.0007211201009340584}, {'label': 'pride', 'score': 0.0006656756740994751}], [{'label': 'sadness', 'score': 0.8430021405220032}, {'label': 'disappointment', 'score': 0.11916889995336533}, {'label': 'anger', 'score': 0.042928408831357956}, {'label': 'neutral', 'score': 0.0396413616836071}, {'label': 'annoyance', 'score': 0.038916636258363724}, {'label': 'grief', 'score': 0.024453727528452873}, {'label': 'realization', 'score': 0.018530678004026413}, {'label': 'nervousness', 'score': 0.011251932010054588}, {'label': 'fear', 'score': 0.010844632051885128}, {'label': 'approval', 'score': 0.010672218166291714}, {'label': 'caring', 'score': 0.010124053806066513}, {'label': 'disapproval', 'score': 0.00881571602076292}, {'label': 'remorse', 'score': 0.007304433733224869}, {'label': 'curiosity', 'score': 0.006800207309424877}, {'label': 'disgust', 'score': 0.005113962106406689}, {'label': 'confusion', 'score': 0.004989570006728172}, {'label': 'admiration', 'score': 0.004351958632469177}, {'label': 'joy', 'score': 0.004011049401015043}, {'label': 'desire', 'score': 0.003959668334573507}, {'label': 'love', 'score': 0.003223700914531946}, {'label': 'embarrassment', 'score': 0.0025243174750357866}, {'label': 'optimism', 'score': 0.0024819544050842524}, {'label': 'surprise', 'score': 0.0022311341017484665}, {'label': 'amusement', 'score': 0.001861387980170548}, {'label': 'relief', 'score': 0.0018218237673863769}, {'label': 'excitement', 'score': 0.0012454896932467818}, {'label': 'gratitude', 'score': 0.0010079344501718879}, {'label': 'pride', 'score': 0.0006206822581589222}], [{'label': 'sadness', 'score': 0.45503103733062744}, {'label': 'nervousness', 'score': 0.3490573763847351}, {'label': 'fear', 'score': 0.12495787441730499}, {'label': 'disappointment', 'score': 0.08663365244865417}, {'label': 'caring', 'score': 0.05956104397773743}, {'label': 'annoyance', 'score': 0.03305353224277496}, {'label': 'neutral', 'score': 0.023533493280410767}, {'label': 'realization', 'score': 0.02139674685895443}, {'label': 'approval', 'score': 0.017301099374890327}, {'label': 'confusion', 'score': 0.015537695027887821}, {'label': 'anger', 'score': 0.012925490736961365}, {'label': 'grief', 'score': 0.012068899348378181}, {'label': 'curiosity', 'score': 0.011870933696627617}, {'label': 'joy', 'score': 0.011845889501273632}, {'label': 'disapproval', 'score': 0.011324895545840263}, {'label': 'love', 'score': 0.009358449839055538}, {'label': 'remorse', 'score': 0.0075301132164895535}, {'label': 'admiration', 'score': 0.006856354884803295}, {'label': 'relief', 'score': 0.0065357619896531105}, {'label': 'excitement', 'score': 0.006205460522323847}, {'label': 'desire', 'score': 0.005941151175647974}, {'label': 'optimism', 'score': 0.004562625661492348}, {'label': 'embarrassment', 'score': 0.0038881220389157534}, {'label': 'disgust', 'score': 0.0034258118830621243}, {'label': 'surprise', 'score': 0.002970202127471566}, {'label': 'amusement', 'score': 0.0029398982878774405}, {'label': 'gratitude', 'score': 0.0014839195646345615}, {'label': 'pride', 'score': 0.0012497128918766975}], [{'label': 'nervousness', 'score': 0.41414302587509155}, {'label': 'caring', 'score': 0.21969665586948395}, {'label': 'fear', 'score': 0.20456622540950775}, {'label': 'sadness', 'score': 0.15185432136058807}, {'label': 'annoyance', 'score': 0.04339462146162987}, {'label': 'disappointment', 'score': 0.03615405410528183}, {'label': 'approval', 'score': 0.023139502853155136}, {'label': 'neutral', 'score': 0.01949060522019863}, {'label': 'anger', 'score': 0.01941523142158985}, {'label': 'realization', 'score': 0.016412358731031418}, {'label': 'confusion', 'score': 0.01588781736791134}, {'label': 'disapproval', 'score': 0.013045097701251507}, {'label': 'joy', 'score': 0.012844446115195751}, {'label': 'love', 'score': 0.012677948921918869}, {'label': 'admiration', 'score': 0.010684171691536903}, {'label': 'curiosity', 'score': 0.010500540025532246}, {'label': 'optimism', 'score': 0.009552941657602787}, {'label': 'grief', 'score': 0.007695112377405167}, {'label': 'relief', 'score': 0.007504903711378574}, {'label': 'excitement', 'score': 0.006230825092643499}, {'label': 'remorse', 'score': 0.005572508554905653}, {'label': 'desire', 'score': 0.005270535591989756}, {'label': 'disgust', 'score': 0.004085839726030827}, {'label': 'embarrassment', 'score': 0.003657081164419651}, {'label': 'amusement', 'score': 0.003651886247098446}, {'label': 'gratitude', 'score': 0.002559332875534892}, {'label': 'surprise', 'score': 0.0021616225130856037}, {'label': 'pride', 'score': 0.0016885189106687903}], [{'label': 'admiration', 'score': 0.3396129310131073}, {'label': 'approval', 'score': 0.20019763708114624}, {'label': 'nervousness', 'score': 0.10859332978725433}, {'label': 'caring', 'score': 0.08552762866020203}, {'label': 'fear', 'score': 0.08070247620344162}, {'label': 'disappointment', 'score': 0.05632704123854637}, {'label': 'disapproval', 'score': 0.05349387973546982}, {'label': 'annoyance', 'score': 0.050886623561382294}, {'label': 'joy', 'score': 0.040105052292346954}, {'label': 'realization', 'score': 0.03964132443070412}, {'label': 'relief', 'score': 0.033317193388938904}, {'label': 'optimism', 'score': 0.031395673751831055}, {'label': 'gratitude', 'score': 0.02146952413022518}, {'label': 'confusion', 'score': 0.01907256618142128}, {'label': 'sadness', 'score': 0.017823360860347748}, {'label': 'pride', 'score': 0.016044210642576218}, {'label': 'neutral', 'score': 0.01323703397065401}, {'label': 'excitement', 'score': 0.012188258580863476}, {'label': 'anger', 'score': 0.007345732767134905}, {'label': 'love', 'score': 0.005056281574070454}, {'label': 'embarrassment', 'score': 0.004820917267352343}, {'label': 'curiosity', 'score': 0.004328718408942223}, {'label': 'grief', 'score': 0.004223973024636507}, {'label': 'remorse', 'score': 0.00362741993740201}, {'label': 'disgust', 'score': 0.0035422088112682104}, {'label': 'desire', 'score': 0.002818471286445856}, {'label': 'surprise', 'score': 0.002770936582237482}, {'label': 'amusement', 'score': 0.0018451404757797718}]]
Basically, that was it. We now have classifications for all texts in the dataset. We could save this directly — roberta_result is just a list of dictionaries (one per text, each holding label/score pairs for all 28 categories), and that’s exactly the structure of a JSON file. So instead of any Python-specific format, you could save it with Python’s built-in json module:
with open("roberta_result.json", "w") as f:
json.dump(roberta_result, f)and continue working in whatever language or tool you like from there — R, for example, can read the same file back in with the jsonlite package.
For this workshop, we’ll stay in Python and do some basic data wrangling below to turn these scores into a table we can work with.
Your turn
1. Extracting the scores
In the cell below, we extract the fear scores from the model output and create a new DataFrame with the original text and the corresponding fear score. Run the cell to see the results. Can you figure out how to add the anger and sadness scores as well?
In [6]:
fear_scores = [next(item["score"] for item in scores if item["label"] == "fear")
for scores in roberta_result]
roberta_result_df = pd.DataFrame({
"text": df["text"],
"fear_score": fear_scores,
})
print(roberta_result_df) text fear_score
0 Stressed and uninformed. Don't feel enough is ... 0.031799
1 I feel worried about the virus, burnout about ... 0.163574
2 Disgusted how unprotected NHS staff are and ho... 0.004592
3 I am not too worried about the situation as I ... 0.014743
4 I'm finding the Corona situation quite dauntin... 0.032603
.. ... ...
145 Significant Anger and disappointment that we a... 0.010647
146 I feel saddened at the number of deaths of NHS... 0.010845
147 My grandad is currently hospitalised with the ... 0.124958
148 I feel very angry and annoyed with people that... 0.204566
149 I'm not worried about the effects of Corona on... 0.080702
[150 rows x 2 columns]
2. Inspecting model output
Now, to get a first impression of how well the model performs, this code will pick out the row for the same text you looked at in Step 1 (same random_state) and print its classified scores.
In [9]:
random_state = 42 # TODO: you can try the same numbers as before if you remember them
sample = df.sample(1, random_state=random_state)
print(roberta_result_df.loc[sample.index]) text fear_score
73 I think lockdown should of been earlier.I also... 0.002481
3. Saving the dataframe
Finally, we can also save the model output to a CSV file for later use. Run the cell below to do that.
In [51]:
roberta_result_df.to_csv("my_results.csv", index=False)Step 3: A task-specific (NLI) encoder model
Now we’ll use a model trained on Natural Language Inference (does a text entail a given hypothesis?) instead of on any fixed emotion label set. That single skill lets us classify text against any labels we like — including our three target emotions, directly, with no mapping step required.
This is slower than the category-specific model (it has to check every text against every candidate label).
In [10]:
nli_classifier = pipeline(
"zero-shot-classification",
model="MoritzLaurer/deberta-v3-base-zeroshot-v2.0",
)
template = "This text expresses {}."
candidate_labels = ['anger', 'fear', 'sadness']
nli_results = nli_classifier(df['text'].tolist(),
candidate_labels=candidate_labels,
hypothesis_template=template,
multi_label=True)
nli_results[{'sequence': "Stressed and uninformed. Don't feel enough is being done by the government to help with the NHS crisis or the proper enforcement of social distancing.nhs staff should be tested immediately and given the right equipment to fight the Corona virus. There should be a full lockdown straight away to stop the spread.the equipment side of it is the fact that they aren't really getting enough or even any at all.how can you be expected to take urgent care of someone, and also be worried that you might catch it,or maybe even already have it.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9993638396263123, 0.14596547186374664, 0.04069295525550842]},
{'sequence': 'I feel worried about the virus, burnout about me getting it. My mother is undergoing chemotherapy and has been told no one knows if treatment will continue if nhs becomes overwhelmed. So I am worried most about her treatment ending also, because of the chemotherapy her immune system is lower and it could really hurt her if she caught it. So at the moment I am just keeping up to date on numbers and nhs capacity and taking it one chemotherapy session at a time. Also, my partner has underlying health conditions and is self isolating in his house. I havent seen him for nearly a month and I am worried about when I will get to see him with all this going on',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998726844787598, 0.03400405868887901, 4.037790495203808e-05]},
{'sequence': 'Disgusted how unprotected NHS staff are and how late the government has been in trying to resolve this. Disgusted at the amount of people not adhering to guidelines for the safety of others. Sad about the amount of people dying without their families, dying alone without even care staff having the time to sit and hold their hand whilst they take their last breath. Disgusted at the attitude of current staff when someone needs to take the week off, but also feeling the pressure of having to stay at work even though they are experiencing symptoms themselves.',
'labels': ['anger', 'sadness', 'fear'],
'scores': [0.9562272429466248, 0.5073732733726501, 0.011709840036928654]},
{'sequence': 'I am not too worried about the situation as I believe I am a fit and healthy human being. I am more worried about family members becoming ill with the disease and I am also very sad that I cannot see them at this time. Thankfully with technology these days I can see them everyday through a screen and chat to both friends and family whenever I want to. Its just annoying that I cannot leave the house apart from to get essentials, I live in a flat and with the nice weather we are having its becoming quite a struggle.',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9880504608154297, 0.10320505499839783, 0.018869254738092422]},
{'sequence': "I'm finding the Corona situation quite daunting and draining. I can't wait for it to end, and for things to get back to normal. I feel things will not be the same again.it's left so many families devastated. I feel so sad for the families that have lost loved ones, both old and young. For those that are fighting for their lives, I hope they pull through. I have hope that all will be well in the end. This shall pass, we shall overcome this by God's grace. We are all in this together as this situation has affected the whole world and not just certain parts of it. I salute all those working in the frontline, the NHS and all those volunteering at this time.",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9985076189041138, 0.9481065273284912, 0.00012148175301263109]},
{'sequence': 'At the moment I feel like I am doing everything I can to protect myself as an individual from the Covid-19 virus. The UK government were a little slow to react and did not take it as seriously as I would have liked, but seem to be doing and saying the right things now. I am looking at other countries data from around the world and things are starting to look more positive from Italy and Spain, where hopefully the figures have peaked as they continue to ‘flatten the curve’. In America the state of New York they still seem to be having a real problem with getting the situation under control, I hope the president will listen to health experts as they monitor the situation.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9779887795448303,
0.0007748163770884275,
0.00012681477528531104]},
{'sequence': 'I feel sad for all the people infected and those that died and their families. Somewhat pissed off at how the government have handled the outbreak airports and eurotunnel still open...Particulary concerned at Boris Johnson with the situation of him still continuing to shake hands even with coronavirus patients...no wonder he is in hospital at the moment showas a disregard for the situation, fear the worse is yet to come. Me personally I am not worried health wise more concerned for my eldely parents and of course the effect it will have on our everyday lives moving forward',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9996587634086609, 0.9640855193138123, 0.25183162093162537]},
{'sequence': "I'm worried about elderly parents. I'm worried about my kids education. I feel exhausted and overwhelmed. I worry about my kids getting infected. I starting to worry less about food and provisions tho we still have no toilet paper. I feel disappointed for my kids and for myself on fun things we can't do. I feel like im doing my bit but Im so upset about not seeing my mum and mother in law who are on their own every day feels the same and Im starting to get bored too.\nThe kids are acting up and fighting. I feel like my husband doesnt have to deal with this as much. Im trying to work too. ",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9986541271209717, 0.9815597534179688, 0.00018740870291367173]},
{'sequence': 'I am very anxious and worried about the COVID-19 Coronavirus. I am scared I might catch it, and that my family and friends will catch it. I am scared we will die. I am scared of the daily numbers. I am scared to leave the house. I am fearful of what the future holds, and what will be left standing when we leave the house. I miss my family and friends. I miss being able to leave the house to go into town for coffee, to eat out, to socialise, to shop etc... I am anxious when I see other people and not to go too close to them.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999094009399414,
0.0026316740550100803,
6.868317723274231e-05]},
{'sequence': "i'm very Angry at the moment as there are many people who are not taking the situation seriously and are still going out of the house for unnecessary reasons. i have been isolating for the past 2 weeks due to being high risk and the more people dont listen the longer i have to stay home and not see my family and friends. My parents and inlaws are missing my daughter and all her milestones and being pregnant right now is stressful as it is.\nmy mother is also high risk as she is 73 and has memory issues so has still been going out so it stresses me out having to worry about her also. ",
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9998574256896973, 0.003279442898929119, 0.0001494209427619353]},
{'sequence': "I feel trapped in my own life. I am stuck in this flat, with my boyfriend that I want to break up with, with no job or income. I was on the verge of a new start and now everything is paused. I also feel hopeless about the prospect of jobs when this is over. I have already been in self isolation for around 5 weeks because I lost my job just before this all happened and of course it's now impossible to get another one. I have felt suicidal and desperate. Tomorrow it's my birthday. I was meant to be in a spa. I just want to escape.",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9996892809867859, 0.03963883966207504, 0.00017064044368453324]},
{'sequence': 'It is senseless. If China had been honest from the start and closed borders it would not be happening. Quite honestly I think they really should be held to account for this.\n\nWhy do I have to type 500 characters, I have summed up what i feel and cannot go too much further.\n\nRight, I am not sure what else to say, it is pointless making it a minimum of 500 words, \n\nSo what else can I say. It is annoying, yes, it is expensive. But it is what it is and we can do nothing other than try to make it go away as quickly as possible so doing as we are told is important.',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9950370192527771, 0.001560889184474945, 0.0004477008478716016]},
{'sequence': "I feel quite awful about it. People are dying and I can't do anything to help. I am also high risk and am struggling to get shopping etc. Very scary. I also cannot see my parents, who are also vulnerable to the disease. I'm worried they'll get sick. I live alone and I'm worried I'll get sick and not be able to look after my cat. I find it difficult to relax. I am keeping busy and connected with friends etc but I still feel lonely due to the isolation & lack of face to face contact. I find it difficult to be happy and have fun while so many people are dying ",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.999841570854187, 0.9992460608482361, 8.029783930396661e-05]},
{'sequence': 'At the moment I feel confused and worried by the situation, on one hand it is very worrying and the fear of the situation is great. I am very concerned about the economic situation, the state of the NHS and society as a whole. I also worry about the older generation who are more susceptible to falling ill, although the disease is not being full ageist in who it affects \nbut on the other hand staying at home with my family and not rushing around to school drop off, commuting and working full time is is good \ni feel relaxed when i am with my family but then you open the front door and the realisation hits you of what is happening ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998147487640381,
0.0001229135668836534,
4.832563718082383e-05]},
{'sequence': 'I feel not too anxious about the corona situation however i feel quite lost and lonely, almost empty rather than sad. I feel bored and tired more often but not angry, i’m a little bit anxious about getting ill but not too bad, however my mum and dad are key workers so i’m more worried about catching it, i don’t feel as anxious as usual tho. I am struggling to feel motivated to do any work and i am struggling to get out of bed and struggling to fall asleep. I feel sad i can’t see my friends or boyfrind',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9821341037750244, 0.03879259154200554, 0.00012339458044152707]},
{'sequence': 'It’s annoying that some people like myself are going into their fourth week of lockdown whereas others who haven’t taken it seriously are going onto the second week. It’s sad to see that there’s still many people not taking government advise. The uncertainty of when this will all end is awful as well when can normal life begin again. The uncertainty of unknowing when I will be able to pay for bills and direct debits without rationing my last of my wages. It’s hard to keep yourself occupied during this time as well when you’re in an unhappy household, avoiding family members and really being stuck to your bedroom. ',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.990121066570282, 0.987887978553772, 0.20063598453998566]},
{'sequence': "I am shocked more than anything that a % of society are showing arrogance in helping to eradicate the virus by doing as they please. I feel personally calm as I am abiding by all guidelines; however my frustration comes into play due to the fact that I am a self-employed individual who has now lost all income. Seeing people not listening to government advice is not helping the country get back to a reasonable state of normality. We need businesses to trade and the economy to start moving again. It's a worrying time for all businesses regardless of size.",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9965837001800537, 0.9942362904548645, 0.0140365706756711]},
{'sequence': 'Fed up of the situation, which could have been controlled better if decisions were made before they were.\nMy little boy is desperate to get out the house and socialise. We are so busy trying to protect older/vulnerable people and the NHS we are forgetting about our little people and the damage it’s doing to them! I feel so sad for him and his sister who have no understanding of the situation and just want to go out and play and go back to nursery. I can cope with my own frustrations but my heart breaks for theirs! ',
'labels': ['anger', 'sadness', 'fear'],
'scores': [0.9048609137535095, 0.5314221382141113, 0.011244562454521656]},
{'sequence': 'Feel worried, concerned, uncertain, fear, anxious, a lot of thoughts. Fear of contracting the virus or family and close ones. Uncertain about the current situation and future, worried about job, financial income as currently not working, and work has been paused. Scared, and feeling some sadness and anger received from racial discrimination from people due to the coronavirus as it has affected everyone. Safety concerns and whether or not to go out for groceries, worried about who may or may not have it',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998252987861633, 0.001190225244499743, 0.0003307979495730251]},
{'sequence': "I feel afraid for the people I know especially my family and friends. I feel sad for the people who have lost their lives especially my uncle who was in hospital alone died alone and was cremated alone. I am anxious all the time and don't sleep well. I am grateful to all the NHS staff and the carers, especially the one who are looking after my 86 year old Dad who has dementia and won't understand why I'm not there. I am nervous when the phone rings incase it is bad news about dad. I am jumpy at sudden noises but frightened to hear the quietness when I am in my garden. I am scared that I won't find enough food for my family.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998761415481567,
0.0017996544484049082,
5.3910844144411385e-05]},
{'sequence': "I have just read about the UK deaths for today, so I'm feeling quite sad. At the same time I'm feeling frustration that people in the UK aren't taking social distancing seriously and going out for picnics and gatherings despite the spread. I miss my mum too as I'm unable to see her, due to her being high risk and living an hour away. I feel lucky that I have my partner to see over self isolation, so feel very grateful that I have him. Overall I'm feeling quite sad about the situation, not to mention worried financially as I'm self employed and currently out of work. ",
'labels': ['sadness', 'anger', 'fear'],
'scores': [0.9998923540115356, 0.006679879035800695, 0.005730246659368277]},
{'sequence': "I feel afraid for myself my friends and my family. I hate being under house arrest but understand the reasons why I have limited movement. I am very angry that the UK government are still allowing foreign nationals to enter the UK whilst this is going on as it defeats the object of doing all this in my opinion. I am not sure when all this is going to end but I get the feeling late June/July is the first time I am going to see a resemblance of normality. I am glad that at least on my weekly trip to Tesco's that the shelves are now returning to normal and that people have stopped panic buying items which was just totally stupid.",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9998528957366943, 0.9987404942512512, 0.0015669888816773891]},
{'sequence': "I feel very scared and afraid about myself and my family catching the virus. My anxiety levels are very high at the moment. I stay home with my two children while my partner still goes out to work and I am petrified that he could catch the virus and bring it back to us where we could all become ill. I also know and have read that healthy people with no underlying health issue's are dying from the virus also. I feel lonely and miss my family and social interaction and I think this virus could be around longer than people are expecting which means longer social distancing and not seeing family and doing normal things.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999111294746399, 0.0004272078804206103, 5.02506154589355e-05]},
{'sequence': 'Hi, I feel very concerned about the future of our human beings. I feel like it is a bad dream and hope that one day I will wake up and I realis e that this was just a bad dream. I feel scared and hope that soon scientists will come up with a remarkable cure and 💉. I am truly frightened. Everyday I watch news on the television and see the horror people go through in the whole world. I am deeply saddened to see how many people died. It is awful and I am deeply shocked and anxious. I feel this virus is man made and not something that just happened because why it would not happen a few years ago, or ever. ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998781085014343, 0.0227808877825737, 0.0002913700882345438]},
{'sequence': "The situation with Coronavirus is one that is very scary for everyone. Our way of life has been completely changed and it's had a significant impact on me and I'm sure others. The overriding feeling that I have is fear. I fear mostly of getting it and giving to the people I love. I also have anger at the government for allowing it to get to this stage and for being ill-prepared. Anxiety is also an issue as I have to look after getting supplies in for people and not knowing when this will all be over.",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.999914824962616, 0.15746048092842102, 0.00048690568655729294]},
{'sequence': 'Anxious about the future weeks to come, unsure about the outcome and how it will affect my job and the countries economy. I am hoping that lockdown will end soon and hope that everything goes back to normal very soon. Would like to say I am able to volunteer and help the NHS but I have no car. Waiting for the death statistics everyday and praying that they starting plateauing or declining very soon like Spain. Sad about everything being missed over summer and how my first year at university has been ruined and cut short. Extremely bored and hoping this ends soon. Praying that all my family and friends are safe and well, upset that I cant go and see them. Proud of the NHS!',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9836441874504089, 0.8660192489624023, 9.876621334115043e-05]},
{'sequence': "I am very worried about it worried about my family catching it and to loose love ones so scared to come out the house and if I. catch it and spread it it's always on my mine all the time Can not sleep thinking about it it scares you when you read or watch how many people have catches it and have passed away and that it spreading so fast I worry about my family when they are off to work Until they come home thinking I hope they don't catch I don the shopping but am so frighten to go to the shops and be around people and many people don't listen and obey the rules it sad to see the world in this situation i have lost friends to this viras",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998898506164551, 0.13811267912387848, 0.0001414700091117993]},
{'sequence': 'I am feeling very sad for all the families who have lost loved ones. Also I am concerned about my husband who is a vulnerable person along with my mother and mother in law. i am not concerned about myself as i have to go shopping. I am hopeful that all the sacrifices we are making will beat this virus and so grateful to all the amazing NHS staff including my bother in law and sister in law who are on the front line that they are safe. I am very impressed with the way the government is handling the pandemic. We can win this.',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9985220432281494, 0.8424747586250305, 6.89519802108407e-05]},
{'sequence': "I'm sad for everything I see on the tv - about the incredible job the NHS staff are doing to comfort and support and ultimately cope with the demands of a horrible situation right now. I'm sad that people aren't able to go out as much as they normally can, particularly with the warm(ish) weather, and it being the start of the Easter holidays. It's particularly tough now because we're coming - at least it seems - towards the peak, in 7 to 10 days I think. On another note, I am feeling extremely lucky that I haven't been affected by it so far. I'm sad for everyone who suffers because of this. ",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9999111294746399,
0.0005549408961087465,
4.2814379412448034e-05]},
{'sequence': 'I find this time very worrying as it is the unknown. I worry about my grandparents due to their age and general health, but more so my husband who works for the NHS. He is within the estates department between two hospitals and has had a massive amount of pressure recent weeks planning for the resources for people which has left him very run down and tired. I worry about him getting corona and the fact he is tired. Even though we Are told it is mainly the elderly it is fatal there has still been a large number of cases of deaths amongst the younger population. I am frustrated as I cannot see my relatives I am missing just being able to pop over for a quick coffee of a chat, things which previously I took for granted and I assume the general population did too! ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9996381402015686, 0.9064876437187195, 0.6613216400146484]},
{'sequence': "I am very fearful for my family. I am very overweight & don't think I'd survive if/when I get it. My husband is a key worker so very likely to bring the virus home to us, although he is very careful. I wasn't worried initially but the more we find out, it's like a death sentence. I thought young children weren't at risk but we now know that's not the case. I have 3 children & I'm am very scared. Boris Johnson has now been moved to intensive care so we know how that's going to turn out. We are living in a nightmare.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999154806137085,
0.00032886600820347667,
6.014151222188957e-05]},
{'sequence': 'I am sad that I can’t meet with my family and friends. Concerned for my 79 year old Mum who lives alone in another town. It is a difficult situation as we have never experienced anything like this. I believe the government is doing its best, but obviously some things aren’t going to plan for one reason or another. After we have come through this a plan needs to be devised as to how best to deal with any future virus. I think we as a country need to continue to grow our own resources for future epidemics.',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9986141324043274, 0.9976357221603394, 7.169852324295789e-05]},
{'sequence': 'I feel really sad about the Corona situation at the moment because my mother has a terminal illness and is alone and is in hospital and i can not see her at all, if she passes away i feel sad that i could not see her and tell her that i will miss her.I understand the reasons for this to keep everyone safe but its a terrible situation to be in and there is no end in sight.I appreciate all the nurses care and the updates from them but seeing her myself is all i want at this moment in time, and i know my brothers feel the same, also grandchildren want to see her',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9999086856842041,
0.006863780785351992,
3.6478541005635634e-05]},
{'sequence': "I actually feel very curious.\nI am obsessed with the statistics and the numbers. I can't help but think about how/why no one saw this coming and how come no country was prepared for something like this. How come the economy is so fragile, and how come people are not really following the rules set in place by the government.\nI am also curious to know how life will resume after all this. What will change? What will stay the same.\nSo above all, I am curious. Curious to know more about the disease and its effects.",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.0014779429184272885,
0.001220795325934887,
0.0001816438016248867]},
{'sequence': "I am worried about my family members which are older. My dad is nearly 70 with no underlying health conditions but still goes to work. I am frustrated as I want it to end and I want to get on with my life. I am anxious that they won't find a vaccine soon. I am sad I missed the last semester of university. I hope we will not be in isolation for too long now! However, watching the news does not give me hope that things will not get better soon. A positive from this is that communities are working together and I am feeling closer to my friends. I am irritated by the people near my house who keep having their friends round and seeing people going to the park on the TV. ",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9970420598983765, 0.9636433124542236, 0.03468417376279831]},
{'sequence': 'I feel very anxious about the global coronavirus situation both from a population level and on an individual level. I have previously been hospitalised in ICU when I was 18 with pneumonia so whilst I feel very concerned about the health implications for myself I also feel a very strong empathy and sympathy for all of the individuals suffering with coronavirus, and the families which are being affected by it. I believe this anxiety is made worse by the constant media attention, although I do understand why this is necessary given the severity of the situation. ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998911023139954, 0.024145422503352165, 0.000526449759490788]},
{'sequence': 'I’m extremely worried about what is to come. Especially as I have just heard the news the Priminister is In intensive care. It’s so scary as it could literally happen to anyone. I have a husband and children so am also worried about them. I fear them getting the virus but I’m also worried about money as my husband is unable to work. It’s a very stressful time for everyone. At this moment in time I am sad, worried, anxious and scared. I feel I cannot escape it as I work for the local government and they are putting a lot of measures into place and it makes it very real. I am worried about leaving the house even just for food. I’m frightened for my husband as he has asthma and my son who has a low immune system. I am trying to avoid reading too much about it during the day as it really is making me feel a bit depressed which is something I have never experienced in such a big way like this before.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998707175254822,
0.0014779429184272885,
5.245676584308967e-05]},
{'sequence': 'I feel this is a learning curve for the future, we have never seen anything like this before, we were to slow to respond so I hope that lessons can be learned. I hope we we still come together and support each other and invest more in healthcare and vulnerable people when this is over. I have not been affected to bad as i can work from home and keep my family safe which is all you can do at the moment. I am hoping this is all over within a few months but things could get worse again once things get back to normal if people start getting sick again. ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9269675612449646, 0.6227174401283264, 9.35104617383331e-05]},
{'sequence': 'I am so worried how quickly this virus has taken hold . it scary to see the death toll constantly rising and the pressure on the nhs. i really hoe that we fight it soon and we can all try and get back to some form of normality. I wish that people would listen to the restrictions and stop putting us all in danger. i am thankful that we are all together at home and safe. I pray that all of our family and friends stay safe and dont fall victim to this awful virus. I cant wait to meet up with all our friends and family and celebrate that we got through.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998352527618408, 0.7696866989135742, 0.003983970731496811]},
{'sequence': "At this moment I feel very angry about all the people that are still going out for reasons that are not necessary! I'm absolutely disgusted with how selfish people are being currently. We all need to stay in and play our part to get over this awful situation but people think they are above the rules and guidelines and this is really starting to piss me off! I fear that if people don't start behaving, then our right to go outside and exercise will be taken away and I know I will suffer mentally if this happens. ",
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9999245405197144,
0.0006891950033605099,
5.990706631564535e-05]},
{'sequence': 'very sad and fear for the future. People need to say at home to avoid catching this further. \nPeople need to listen and follow the rules.\nVery uspet for people who have had this, there needs to be a cure to aviod this spreading further and further all over the world.\nThe government need to be honest in this situation and lockdown should of been last month. this has meant this has spread. All scientists need to work together to solve this problem.\nThe media needs to stop spreading panic in the world. They created panic buying.\n',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.999419629573822, 0.9990302324295044, 0.019050898030400276]},
{'sequence': 'At this moment, I am feeling incredibly bored by the whole ever-evolving Coronavirus situation. I live alone so have had to self-isolate by myself in a small studio flat and it is a lonely and experience. I miss human contact. The unknown unknown of when we will actually get to experience normal life again also makes me very angry about the Corona situation. I am also anxious about the wider global context of Coronavirus and the last effects it might have on me, my friends and family, and those around me. ',
'labels': ['anger', 'sadness', 'fear'],
'scores': [0.9751781821250916, 0.1057172417640686, 0.007274958770722151]},
{'sequence': "I think I have quite mixed emotions really. I am enjoying spending more time with my family. I don't really mind being stuck at home at all and I'm happy to use Facetime to chat with my extended family. On the other hand I'm really annoyed about the way NHS staff have been treated by the government and the hypocritical way they are being praised while being denied what they need to stay safe. I'm also quite fed up with social media and am making an effort to avoid it. There are too many people with misdirected anger - having a go at their neighbours.",
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9099469780921936,
0.0007138379151001573,
0.00042554308311082423]},
{'sequence': "It is very scary, especially because of the vulnerability of my family, but it can be overcome, however it is scary and annoying to see youths still going out with their friends and people underestimating the severity of the disease especially to vulnerable people. Not only this but some people lie and think it is made up or are too engrossed in the politics and don't understand the normal people being affected by it, dying and being extremely subdued. However personally for me it is awful because of the regime and how difficult it is to adapt to living in isolation, not going out or seeing friends and family or loved ones, or being able to exercise properly or educate and the countless hours spent infront of a computer",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9995362758636475, 0.9731897711753845, 0.08502304553985596]},
{'sequence': 'I just feel like it is spreading way too fast, as I work in a supermarket, I have to walk past people in a daily basis despite lockdown. \n\nI would be much happier if more people followed the lockdown advice given by the government. I still keep seeing people sitting on their street drinking beer and not having a care in the world. \n\nPeople seem to go from being mildly ill one day to requiring hospital treatment the next day. \n\nI hope the vaccine for Cov is ready sooner than the predicted timeline of 18 months. Too many people have already died from it. ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9993999600410461, 0.9950562715530396, 0.857171356678009]},
{'sequence': 'I am angry due to the fact that people are unaware of the fact that Corona virus is a common flu virus and anybody who has got flu in the past will still have it in their body. There is no test out as yet for covid19 (if there is any virus like that at all). The figure of people infected is just magnified artificially as """"""""tested positive"""""""". The cause of death despite of being from other health factors/condition is classified as covid death. This pandemic is a global cover up for something more sinister.',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9996698498725891, 0.987628161907196, 0.0003604724770411849]},
{'sequence': 'Right now I feel sad and uncertain about the future. I have lost a little bit of hope and feel anxious about the whole thing. How is something like happening in this day and age (21st century). I just feel sadness wherever I go. It feels like everywhere is deserted and people are too afraid. Kids don’t really understand what is going on. It just feel like I am dreaming, more like a nightmare. But I pray to God this ends very soon so we can all resume on our normal life. \nI haven’t got anymore words to express how I am feeling right now. I have detailed all my emotions/feelings as best as I possibly can. ',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.999191164970398, 0.6893056631088257, 4.7949586587492377e-05]},
{'sequence': "I feel really worried and stressed about this whole situation. My job is demanding, i am struggling at home and i am in a bad place. I am not sleeping and my relationships are suffering. I feel anxious all the time and am constantly down.\n\nTo top it off i am sad because my cat has gone missing. I feel like my life is going wrong. I don't know how to make it better or get through this. \n\nMy toddler is playing up all the time and my marriage is breaking down too. I never imagined 2020 would be such an awful year.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.999661386013031, 0.004485794808715582, 0.0005759092746302485]},
{'sequence': 'I’m very fearful and worried personally being 37 weeks pregnant. I’m sad that this has overshadowed the last part of my pregnancy and will impact the first few weeks/months of becoming a mother. Selfishly it has impacted me hugely, I also fear for friends and family in the at risk group and who have no choice but to continue working as a key worker and not adequately protected. \n\nI am worried about the future of the UK and the impact on the economy and the livelihoods so many who are currently furloughed as a result of the pandemic. ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.999908983707428, 0.9608415961265564, 0.00010932306759059429]},
{'sequence': "At the moment I have mixed emotions.\n\nAnger at how the pandemic began. Anger at the people who are determined to carry on living as normal when the majority of us are sticking to the rules. My children want to see their grandparents and cousins and friends but they know they can't and the reason why they can't but it is difficult to explain when they see people continuing to play football etc.\n\nI'm angry that my son has missed nearly half a year of school. That it took 2 months for y daughter to get into a routine for nursery and not scream every morning but we will have to start from square one.\n\nI miss my work and my colleagues, I miss my friends and my parents and siblings. I'm upset that we have had to cancel our holiday.\n\nI'm worried as my husband has to continue to work and risk bringing the virus home everyday for a low wage. I'm also worried that the lack of routine will have a negative impact on my mental health.\n\nAll my emotions do not matter when you think of how many people have died worldwide to this virus.",
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9983674883842468, 0.022053316235542297, 0.006837204564362764]},
{'sequence': 'It makes me angry that the media is feeding lies into society to drive fear. It is disgusting how many people are happy to submit to a state enforced home incarceration regime. It is easy to fool people but difficult to convince them they are being fooled. One day they will realise the truth but by then it will be too late. Keeping people under house arrest will not stop the spread of the so called virus. The level of imposed control and over reach of powers by the police is draconian and extreme.',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9998681545257568, 0.012147171422839165, 7.813211414031684e-05]},
{'sequence': 'I feel very sad that there is so many people not taking this serious and still heading out to parks and beaches. I’m also sad that I can’t visit my family but I am so thankful for modern technologies that allow us all to keep in touch. My children would be upset at not seeing their aunts uncles grandparents and friends if it wasn’t for technology. \nWe have found new ways to connect as a household too so we are all trying to find the positives in this anxious situation. We are playing scrabble and doing plenty of outdoor games in the garden. It’s nice talking to my children about other stuff rather than letting the usual downsides of working and travel and school get in the way. \n',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9954172372817993, 0.7502326369285583, 5.671904727932997e-05]},
{'sequence': 'i feel sad and lonely and scared , today my husband was confirmed to have prostrate cancer and i want to see my family and i cant. i feel scared.Once lockdown is over i can see my family again but its not the same talking on the phone as opposed to getting a hug and a cuddle.\nI just so worry if i will ever see my family again , but then again a lot of people are probably hfeel how i am , I just wish they would get a vaccine and make us all safe again , this has affeted us all in diffrent ways but as my husband is on a pension at lease our money is not affected',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9995744824409485, 0.9982725381851196, 4.451983477338217e-05]},
{'sequence': 'The Covid-19 has made me feel Lonely and sad, i miss my friends and family, i miss going out, i miss normality. \nI want this to be over. \nI feel sad for the people this has affected and i worry that it will affect those i love.\nI worry for my job which will impact my mortgage etc.\nThe whole thing opens up your eyes and makes you realise you should not to take things for granted.\nI pray this does not hurt many more people and that people stay home so that this virus can dissapear as soon as possible',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9998780488967896, 0.048405956476926804, 7.397431181743741e-05]},
{'sequence': "Very worried as I feel people aren't taking things seriously enough. Also feel the government is handling it very badly. I'm very worried that my family could get it, I feel that because people are not self isolating properly, and people are not keeping a reasonable distance in shops, someone I know is going to get very ill from it, this is probably the most angry I have been in my life at a political situation, which I believe this is, as the government is clearly not doing enough to stop people from going outdoors, seeing friends and families etc.",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.99964439868927, 0.9912717342376709, 0.0011972112115472555]},
{'sequence': 'I feel very angry that people are not compiling to the whole ‘lockdown’ situation - that also includes businesses that are not ready to pay their employers who have to work in the frontline (postmen/women, shop workers, nurses, caters, delivery workers etc). \nI’m fearful that my family may get it if they’re not careful because they HAVE to go into work. \nIt’s not really social distancing and helping stop the virus if people are still going out to do their daily shopping or meeting in parks! \nI’m anxious, very anxious that everything is out of my hands and I cannot do anything to help. I don’t have medical skills to help with the NHS and even if I did, would I put myself and my family at risk because the government are not ready to provide the right PPE.\nI hate that the government have left this situation for too long that now it’s spiralling out of control. \n ',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9998906850814819, 0.9799381494522095, 5.37006781087257e-05]},
{'sequence': "I am worried and sad about the current Corona situations. I've had to close my business until further notices which I completely understand but I'm also sad about it as I love what I do. \n\nI am worried about friends and family. I have a relative in a care home and we know that if he gets the disease then it is very unlikely that he'll survive. This makes me feel extremely sad and also guilty that I can't visit him though I understand the reasons why I can't.\n\nI'm also worried about a number of people that I know that live with mental ill health. They are struggling, really struggling and I do what I can by texting and talking to them.\n\nI'm also very proud of my family. My children are now home from university. One of them is waiting to hear about what is happening with her finals and the other is in his first year. I couldn't be prouder of how they are responding to the virus. They are both doing everything they should and shouldn't be doing and they are being very supportive and helping keep morale high in our house. \n\nSad, anxious, worried but proud. ",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9985618591308594, 0.9984632134437561, 4.451983477338217e-05]},
{'sequence': 'I’m feeling sad at the moment. I feel the government is reacting to the the issues opposed to being ahead of the game and this is causing a loss of life. I also feel sadness and disappointment in the public that aren’t sticking to the clear, simple instructions! The result of this will be an enforced lockdown which will have a negative impact on people as the warm weather arrives in the coming months. I’m sad that I can’t see members of my family that live less than 1 mile away from me, one of those family members is my 91 year old grandmother.',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9998557567596436, 0.019363639876246452, 6.377048703143373e-05]},
{'sequence': "I am very angry at the moment because people are not listening to the rules, for instance do not congregate, do not meet family and friends, stand 2 meters away from each other. I am so angry because if people do not comply then this virus will take forever to be cured. My neighbours are complete lunatics, they are having parties, load music, walking around as if nothing has happened. I am fuming, I won't to report them, but I cannot as they live next door and I don't want any trouble. Also I go out for a walk in the fields near where I live as I have diabetes and I do not have a clue how my sugar levels are and I would guarantee some uneducated peasant will be walking directly at me which makes me so angry ",
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9999260306358337,
0.00018306820129510015,
4.6474400733131915e-05]},
{'sequence': 'I’m scared someone in my family home will get the virus and end up severely ill in hospital. I’m constantly worried that if any of us go into hospital they may die alone. This worries me more with my two children. I’m being eaten up with anxiety at the thought of them being scared and without their mum or dad to make them feel better. I’m paralysed with fear that there may not be life support equipment for any of us should we need it. I’m concerned that if any of us get the Corona virus it’s missed as being severe enough to go to hospital and we die at home in pain. I am doing my best to keep my family away from other people so we can stay as healthy as possible',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999181032180786, 0.06359858065843582, 6.553815182996914e-05]},
{'sequence': 'Not fearful of the disease. I’ve had some of the symptoms. Angry with government response or lack of it. Way too complacent about the threat. More concerned about their careers than helping people. Annoyed at lack of Ppe for nhs and care staff, And annoyed at dismal state that NHS was in to meet this threat. Full of admiration for NHS and care staff. Believe strongly that we cannot go back to how things were. \n\nAs someone who had symptoms- shortness of breath and fatigue etc I found being in fresh air very helpful. Think there should be policing of open areas but not widespread closures of parks etc.',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9994917511940002, 0.0003697388747241348, 7.22608165233396e-05]},
{'sequence': 'I am angry and disgusted about people who don’t adhere to the rules and don’t seem to care. I’m fearful about my mum who has to work on the frontline as a medical professional (I would rather she was at home). Everything makes me feel more anxious than usual, in particular the sound of emergency service sirens makes me very uncomfortable and I don’t know why. I’m still working (from home) but struggling to focus. Sadness is high for me, mainly in the economic side, I keep worrying how many suicides coronavirus will cause due to economic impact and it makes me very sad, also who gives spare change now to the homeless? That is very sad I think ',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9995979070663452, 0.9696707129478455, 0.008847355842590332]},
{'sequence': 'The current pandemic is a very worrying time for everyone, I have found that it has made me feel more stressed because of financial worries, as my husband has now been furloughed. \nIt has also increased my anxiety when I have to go food shopping because I know the queues will be horrendous, I am also worried about being able to buy food, especially when people were panic buying. \nIt has also made me feel very sad that I am not allowed to go & see my parents who have underlying health conditions. It also makes me sad that I am not allowed to see my sister or Nephews. ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9989596605300903, 0.9597997665405273, 0.00025414692936465144]},
{'sequence': 'angry there still people out and I about I have neaver seen so many people on bikes walking makes me so cross do people not get stay in and stay safe upset hurt that so many people have died just from this cross my partner is a key work at the hospital they have no ppe at all and now he is in ICU as there has not been the correct ppe so now he is lying in ICU get so mad at the way keyworks can not be covered, there is that many people in hospital makes me upset angry any onew could catch it , young old , why has this happened ',
'labels': ['anger', 'sadness', 'fear'],
'scores': [0.9998736381530762, 0.03327394276857376, 0.0015761827817186713]},
{'sequence': 'I hate being stuck in the house without the option to go out and socialise or browse the shops. I feel trapped and frustrated because we have no end date. I’m hating working from home and not being able to interact with my colleagues as normal, we are a very close team and we are all missing each other. The uncertainty is very upsetting and causes me anxiety to an extent. It’s hard work having to work from home normal hours then not be able to have any sort of social release on the weekends, it makes working just that bit less rewarding as there’s nothing to relax and let your hair down doing when you have finished the working week. ',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9661239981651306, 0.015830138698220253, 0.014587566256523132]},
{'sequence': 'Anxious of what lies ahead, when this will be over and if we will suffer more cancellations and delays in ‘normal life’. \nI am stressed of doing homeschooling for my 4 year old and being working from home and being a mum. \n\nMy husband is furloughed from his full time job and main earner but I’m trying not to think about what happens after those paydays and how we will pay the bills.\n\nI am scared of becoming ill and losing even more money and time, I am stressed of not being able to continue with normal chores and life. \n',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9996499419212341, 0.014559517614543438, 8.415109186898917e-05]},
{'sequence': 'I feel very uneasy about the Corona virus situation. Not knowing how exactly it is getting spread and the social distancing instruction is worrying. The uncertainty of when the lockdown will be over is very draining and the inability to move about freely makes me feel depressed. I also feel fear for myself and immediate family as the survival rate are not great.\nWatching television all day and sitting in the garden doesnt feel fulfilling enough and my inability to go to work and interact physically with my colleagues at work is demoralizing. I worry that this will not go away in a few weeks',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999134540557861,
0.004934090189635754,
0.00012339458044152707]},
{'sequence': "I am upset and annoyed at the virus and how many it is killing, harming and the damage it is doing to businesses, people's livelihood etc. I am not myself worried about contracting the virus or on how it will affect my income, thankfully. It has put a halt to everyones life which is an annoyance but hopefully it will be over and we can once again return to how we used to be. I miss friends, football and my daily life but i know that they arent playing second fiddle to this virus, i want people to respect it and stay indoors and listen to the government guidance.",
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.999431848526001, 0.003802224760875106, 0.000539980479516089]},
{'sequence': "I feel sad that so many people are dying with this virus, and all the health professionals struggling to keep as many people alive as they can. My health isn't the best and I have to make sure I stay indoors so I can be safe and not catch the virus. It can be a little scary and annoying seeing some people disobeying the rules and still going out and acting like everything is ok. \n ",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9998746514320374, 0.07323096692562103, 0.004736748989671469]},
{'sequence': "I miss my friends and family and being able to go out whenever, wherever, with whomever I want. I am sad that this has happened to the world and that so many people are suffering. I am so annoyed and angry at the people who keep flouting the government guidelines and making everyone else struggle for longer. It's unfair that they don't feel like they have to help anyone else when there are people trying to save lives. There's so much death. My mum has cancer and she's a very high risk person but she's been told she won't be able to get help if she gets the virus. Yet people who blatantly disregard the safety rules will probably be absolutely fine.",
'labels': ['anger', 'sadness', 'fear'],
'scores': [0.995408296585083, 0.9339748620986938, 0.16735470294952393]},
{'sequence': 'At the minute I feel anxious, because I don’t know how we can move away from lockdown without causing another huge amount of cases of coronary. If there was some plan that the public were aware of then this would ease my anxiety but at present the government are not giving anything away in terms of what the next steps might be. Even if they do not know themselves 100% what will happen they must have some options that they are considering. It would be helpful for me personally to understand what they might be',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998902678489685,
0.0016198053490370512,
0.00043563012150116265]},
{'sequence': 'I am scared and worried. I am a key worker in retail and in the front line serving and touching people all day. I am scared of getting covid 19 from someone and as I’m 51 and my partner 56 it could be risky. \nI’m scared of customers getting abusive if they can’t get the goods they need or they have to queue. \nI’m scared of having to go off sick and not being able to afford my bills. \nI miss my mum and siblings and niece and nephews as I can’t see them. \nI miss being able to go out for a meal or drinks when I want. \nI’m scared of anything happening to my loved ones. \nI just want life to go back to normal. ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999035596847534, 0.00255091255530715, 0.00030654369038529694]},
{'sequence': 'I am worried as I am on the vulnerable list and my husband is a key worker so he is in and out and he and I feel the risk is high for me catching the virus. Anxious before he gets home. So I feel tense most weekdays, sad as we socially distance, missing a hug.\nFrightened as a friends cousin died.\nI am feeling happy as I can keep safe though and also because I am loved and supported.\nI feel satisfied as I am doing the best I can to support others while they are anxious and or stressed with the fear of catching this horrid diease.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998584985733032, 0.002511463360860944, 5.671904727932997e-05]},
{'sequence': 'I think lockdown should of been earlier.I also feel very angry because you still see people doing there own thing walking together in large groups, going to the corner shop about 4 times a day, it’s like people haven’t got common sense. I think it should be more strict about the lockdown. We should of took more precautions from the start. Greedy people at the supermarkets going crazy and not thinking about others. Starting arguments with the staff Who are putting themselves at risk so everyone can eat.',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.999882698059082, 0.0009603369398973882, 5.627768041449599e-05]},
{'sequence': "I feel very worried and anxious seeing how high the death toll and the confirmed positive cases keep rising each day. Everything seems to dark and bleak right now. People are constantly dying and losing their loved ones. It seems like there's no hope out of this situation. All I can do is pray everyday that God has mercy on us all and turns His wrath away from us and helps us out of this situation. It makes me angry to see people disobeying the rules and advice set by the government and causing more damage to the country and putting a lot of strain on the NHS.",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.999547004699707, 0.6691505908966064, 0.5101533532142639]},
{'sequence': "I feel okay as I have distracted myself with work, however, I went on Facebook a few minutes ago which heightened my anxiety as it was filled with posts about Corona. After seeing coming off Facebook my anxiety is reduced and I become sad. I have found the best way for reducing my anxiety and sadness is staying off social media. I try to stay away as it upsets me and hearing about all the deaths and the difficult times people are going through can be hard for me because i know i can't do anything. ",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9932025074958801, 0.953144371509552, 0.001138000632636249]},
{'sequence': 'I feel anger at the people who are not listening to what the government are saying , not listening to the lockdown rules, Risking not there own but everyone’s else’s lives. The government should the exercise once a day rule as people are using it as an excuse to do what they please. It angers me knowing without everyone pulling together we may never get over this and we will lose even more life’s.\nThe nhs are risking there life’s everyday and to see so many selfish people not listening is upsetting and disgusting.',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9999231100082397, 0.004764452110975981, 9.35104617383331e-05]},
{'sequence': 'Anxiety about what the future holds for society and the economy. Sadness for all the lives lost and fear of how many more there will be.\n\nI feel stressed, worried, lonely and isolated. I also feel utter disgust at those flouting lockdown and purring lives at risk, as well as compromising the NHS and the work they do to keep us safe\n\nI a concerned about the government not doing enough to force social distancing measures and that by not acting, or whether they have indeed already left it too late, that our death figures will continue to rise. I am thankful that the UK government has put financial measures in place to support people and jobs, however. \n\n',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9997838735580444, 0.9336731433868408, 0.4033905863761902]},
{'sequence': "I am terrified of my family being ill. I feel total despair and cannot see the end of this situation. I am so sad that I cannot travel as that is my passion. I watch in horror as Trump spouts his insane ramblings putting peoples lives in danger. The uk government is just as bad, they want the old and ill to die so they don't have to pay as much in benefits. The true situation in hospitals is being kept from the public and key workers are being put at risk by not being given the correct protective equipment",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9998957514762878, 0.04629190266132355, 0.0035936024505645037]},
{'sequence': "Feel worried and scared for the future. It's good that the numbers are going down, but don't understand how we can then go back to normal without it returning? Feel I need to do more to help as I have been furloughed so have the time but then I also lack in motivation with just doing things at home. But that is not new for me. I feel lucky that we have a garden to go in and feel bad for those confined to small spaces and those on their own. \nFingers crossed the numbers continue to go down and we can overcome this.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9997125864028931, 0.8330531120300293, 5.3700681746704504e-05]},
{'sequence': "Since the corona situation, I've been feeling down and more lazier than usual. I'm worried because I have older parents and I'm concered that I will spread the virus to them if I get it. I'm sad because I am not able to be at college to do my work, I am not able to see my wonderful teachers and friends, it is my last year at college so I will probably never see them again. Only one good outcome of this is less people on the streets, it is almost empty. In London, streets would usually be overcrowded which is not good for anti social people like me, but now I can go wonder and get essential items without much people gathering. ",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9997299909591675, 0.9904590845108032, 6.709225272061303e-05]},
{'sequence': 'It is a very strange situation and the social isolation is starting to affect everyone. I am having difficulties adjusting to this new way of life and it makes me wishful and impatient. I am not feeling scared or very worried, although my heart goes out for the people affected.\nI think it is more difficult for the elderly as they are not so used to using technology in their every day life. But young people are feeling it as well.\nWhen you go for a walk, there is this new phenomenon called """"""""The corona virus greeting"""""""" - everybody steps away from each other and then smiles.\n',
'labels': ['sadness', 'anger', 'fear'],
'scores': [0.9189906120300293, 0.002895213896408677, 0.001806685235351324]},
{'sequence': 'Terrified for my family and friends. Worried about the whole financial situation and how we will cope. Fearful for the future in general! Worries about how everyone will recover from the whole corona efforts as its so bloody scary. It has caused me so much anxiety and worry and fear and general panic. I hate thinking about corona and i am so fed up of seeing it all over the news, facebook, and all social media. It is complete scaremongering. People need to stay home and they are utterly stupid when they dont.',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9999054074287415, 0.967100977897644, 0.0002611903182696551]},
{'sequence': 'At this moment in time, I feel I am in a fairly good position compared to the majority of the UK, for which I am grateful. As I work in a psychiatric hospital and continue to go to work daily, not too much has changed in regards to my income, routine, interaction with others. However, I have seen the effects of Coronavirus within my hospital and via the news. Seeing the devastating effects it has had on others has left me feeling very sad and wishing I could do more. I’m not anxious, or fearful per se, as I am confident we will be able to overcome this and gradually return to normal. It’s been really lovely to see the nation come together in such a difficult time and there is a real sense of community. ',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9764007329940796,
0.0014269596431404352,
0.0001163729903055355]},
{'sequence': 'I feel anger because I am a key worker and I have to be at work every day risking my health. Then people who should stay at home are outside having good time. Running every day, on bikes with families and every day I see them shopping (example they came just for one banana every day-idiots). It is to hard for them to stay at home and they have paid for that- extra holiday. if I have a chance to stay at home I would stay. For me them people should pay for that behaviour. If people are not gonna listen every advise by nhs it will be long time it will finish. Only thing I am asking is STAY HOME ',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9998458623886108, 0.00020105745352339, 6.788305472582579e-05]},
{'sequence': "I feel sad with regards to some news (colleague's death, mental health issues of peers and others); but I also feel very lucky as I can work from home - and not everyone has this opportunity. At the same time I feel a little tired of feeling lucky this way...\nI also had some good news with respect to my job, so I feel a little guilty relatively to the others. I also feel powerless to help, as I do not have any relevant skills & thus I'm not useful right now. This is a silly feeling, as it doesn't help anyone; at the same time it's not actually strong enough to prompt me to do more than just a few donations and gift vouchers. \nI also feel rather sad about my friends, who are in a worse position. I feel entirely blessed with my partner - but again, I'm lucky & not everyone is. \nSo, overall, it's a mix of feeling sad & damn lucky - and sad that one needs to feel lucky that way. ",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9996593594551086,
0.00023050670279189944,
9.723513358039781e-05]},
{'sequence': 'I feel very afraid and frustrated with how some aren’t taking it seriously. A colleague has died from this and it all changes when it’s someone you know. Also when you are not an essential worker or a key worker and told that but are made to go into work travelling on tube it’s very stressful. I feel like my brain can’t comprehend what is happening around me. I worry for my family and friends. I Struggle with anxiety anyway and this is just crazy. Thankfully I can sleep but I find every day exhausting. I feel very very scared and worried.',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9997756481170654, 0.2721695899963379, 0.0003541936748661101]},
{'sequence': 'At the moment i am a bit worried for my family and friends. I feel a bit sorry for my children who have had their normal freedom and routine messed about. I also feel very hopeful that as long as we all do our part then we can get through this till a time a vaccine can be made to protect or find a drug to help heal the worse affected people. I feel across the world a lot of countries are started to turn the tide on this virus which does make me hopeful we can do the basics to get this under control. I do also feel very lucky to live in a country with.a good health system as well which can open a new hospital in 9 days and have all the bits we need to try and help save people.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9993040561676025, 0.9241418242454529, 4.3829644710058346e-05]},
{'sequence': "I'm angry because we are being lied to there is no Covid-19. 5G is dangerous ask Lloyds of London they won't insure 5G. This is a globalist conspiracy against the people of the world. \nVitamin C will cure most if not all of the so called Corona virus cases go to www.doctoryourself.com and read about vitamin C intravenous, intramuscular and oral applications. Read the dosage information it works I stopped bleeding from my bladder in around four hours using Vitamin C when antibiotics take 36-42 hours to do the same thing. Vitamin C would help the underlying ailments of Corona virus cases. I'm sick of being lied to by the politicians, corrupt scientists like Neil Ferguson looking for funding etc - who should be jailed - big pharma, idiot economists, the bank of England, the Federal Reserve, the list goes on. There is no pandemic just a massive lie. The BBC shows coffins/body bags but not the contents and no proof of cause of death. There are many ailments that cause our cells to excrete exosomes that cause us to feel unwell as our bodies remove them. No virus jumped from a bat to a human. Wahun was blanketed in 5G antenna. Go and read Arthur Firstenberg's book the 'Invisible Rainbow' about the effects of increases in electrical radiation on the cells of the human body - it takes six months for the damage to manifest itself and for people to become sick - it's not a virus!",
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9998103380203247, 0.03704717010259628, 0.00014091856428422034]},
{'sequence': 'I am angry that others are not listening to the government’s advise as they are going outside still and meeting in large groups. I feel slightly anxious that me/my family will get the virus as we still have to go outside to get essential things but that exposes us to the possibility of catching it. I’m stressed also because even though I am at home I am getting a lot more uni work than usual to do, which still has to be handed in by the same deadline. When I don’t have any work to do I am relaxed and happier because I get to spend time interacting my family and FaceTiming family not with me so I still get to keep in touch with them.',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9972208142280579, 0.9951041340827942, 9.242113446816802e-05]},
{'sequence': 'Extremely anxious and worried. \nAll the news and media reports are constantly how bad it is and how much worse it’s getting. They never report fairly and just try to sensationalise things. I constantly feel in a state of panic. I normally suffer from health anxiety so for me a global pandemic is the worst possible thing that could be happening\nI am extremely worried about catching it, and worried how we will get out of the lockdown. The government aren’t being strict enough - flights are landing into the uk with no checks and people are gathering in parks. I feel anger towards these people, and also towards the Chinese as they are responsible ',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9998893737792969, 0.8613633513450623, 0.0002868540759664029]},
{'sequence': 'Sadness in general for the effect that it has on the country and it’s more vulnerable population who are suffering the most and dying as well as frustration for those not adiding by the rules and regulations set out but pride for all the key essential workers who are working tirelessly to look after everyone effected in the most desperate conditions - fearful for where the country will be once this has passed and the long lasting effect it will have on our future generations and anxious for our more vulnerable loved ones who we are having to distance ourselves from and missing out on key moments with family and friends',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9996736645698547, 0.8720752596855164, 0.00014883848780300468]},
{'sequence': 'To be honest i am a little bit worried about the whole situation as i have 2 young kids who I worry about daily don’t want none of this to affect them. Makes me question the world I brought them into. I also worry for my family and loved ones and wondering if they are ok and following the precautions. But i am staying in doors and communicating with family and friends and checking up on everyone that I know via social media. I am a very care free person in general and try not to make things bother me so I’m trying to not let it get to me and just follow what MR JOHNSON has has stated regarding lock down procedures.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998756647109985, 0.2836821675300598, 8.682210318511352e-05]},
{'sequence': "I don't feel as scared as I did a couple of weeks ago. I don't think it will be as bad as predicted in the UK, and I think the daily deaths will peak very soon, if they haven't already. I feel sad and worried about Boris Johnson being admitted to hospital. I feel a bit fed up and frustrated about lockdown. I'm worried that we'll soon be told we can't go out to exercise, as that's the thing making me feel normal at the moment. I'm still slightly worried and anxious about the health of my family members (if they were to catch the virus), although I'm less worried that they'll catch it than I was a week or two ago. I'm sad I probably won't be able to go on holiday this year.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9791756272315979, 0.8771615028381348, 0.009072806686162949]},
{'sequence': "I'm resigned to living like this for the foreseeable future and just hoping that everyone I know survives. The number of deaths has gone over 5,000 in the UK today which is horrible for all those whose family and friends have died; I wonder what the aftereffects of all this suffering will be and whether anything is ever going to be the same again. I've been round to my neighbours checking that they are all alright today and so far so good but I just wonder how long it will be before one of them becomes unwell. I'm impatient with being cooped up at times but then I think, what if, and just put up with it.",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.999511182308197, 0.8354835510253906, 0.004022909794002771]},
{'sequence': "I feel the correct measures have been taken to prevent the spread of Corona however I'm very, very bored with being stuck inside all day every day. I have coursework to do but I don't have the motivation or desire to do it, my course is practical and online learning isn't effective because I learn more in a classroom environment. I go for a walk every so often but I don't like walking. \nI spend most of the day watching Netflix and going on the Xbox but I eventually get bored and watch Youtube on my laptop and sometimes I just go back to bed and wake up a midnight and binge watch Netflix again till 4 in the morning and go back to sleep to wake up again at 1 pm, just to do the process all over again.\nEach day is the same but if It prevents the situation from getting worse then I'm at peace with staying inside.",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.17147701978683472,
0.0015247863484546542,
7.003774226177484e-05]},
{'sequence': "Mostly feeling fed up. Not being able to go to work and not sure if there will be work after it. \nMy partner was showing all signs of the virus so we self-isolated before being told. I never had any symptoms at all. So now, we're thinking did she have it or not. Testing shouldn't be so hard to sort out.\nI do think now the knock-on effect will be that funding for research might be pushed to the forefront now its affected the rich and the trade in wildlife be frowned upon. Feeling ill not being able to go out for exercise. ",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9918279647827148, 0.4326625466346741, 0.00817206408828497]},
{'sequence': "As someone who works for the NHS and lives alone in a town where I know very few people I'm scared. My Mother lives 80 miles away and at the age of 87 could be terribly affected by this disease should she catch it. I worry her social situation, she also lives alone, will contribute to a decline in cognitive function. although living in an urban environment outside of Birmingham she has few people who can shop for her and she has no method of communication where she can in interact with anyone visually eg facetime. ",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998766183853149, 0.006850480102002621, 4.085384716745466e-05]},
{'sequence': 'It is a very worrying time, as there are many shortages in shops and it’s becoming increasingly difficult to get essential items. It’s also very concerning how rapidly the number of cases and number of people dying from coronavirus each day is increasing, despite being under lockdown. I hope that tougher measures can help to get the situation under control, in order to help protect those most vulnerable. It is also worrying that frontline workers have not got the essential equipment needed to look after those suffering, as they are risking themselves to help save lives, which I hope can be improved soon.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998841285705566, 0.81967693567276, 0.0021198310423642397]},
{'sequence': 'I am vunerable been told i have to stay home for 12 weeks i already suffer anxiety and panick attacks so im very afraid also brought on with continues cleaning continues washing my hands now an obsession. Although i will do all that is asked of me stay home etc im worried for my family friends and am crying most days . I am also very angry that i cant order the shopping i need i dont want family to go out incase they get sick and finally got order and there was no essentials left. IT SEEMS THAT NOTHING IS GETTING DONE BY THE GOVERMENT AND IM VERY WORRIED THAT THEY HAVE JUST LEFT US ALL TO IT NO DIRECTION AT ALL PLUS THEY LEFT EVERYTHING TO LATE',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9999016523361206, 0.9860845804214478, 0.9561454653739929]},
{'sequence': "I am very worried for my daughter my family and my friends. I'm worried about running out of food because I haven't been stockpiling. The shops are scary and frightening so I am running low on lots of basic food. I miss working. I'm worried about running out of money and losing my house. I'm also worried about when this is going to end if it's going to keep on for ages. I dread seeing the death toll every day incase its higher than yesterday. The death toll shows people as statistics instead of the people they were. Its dehumanising.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998915791511536, 0.9909096360206604, 0.0003029734070878476]},
{'sequence': 'I’m frustrated and sad that we’re locked down and can’t see family and partners. I’m tired of working from home and stressed out at my job as a social worker because I feel I can’t do my job properly. \nI’m constantly worried about my family, especially my elderly grandparents. I’m annoyed my holidays have been cancelled. \nI’m furious at whoever started this pandemic and I’m confused as to how it started. \nI’ve got constant headaches and nausea over this situation and frustrated that some world leaders are not doing enough to protect people. I’m absolutely furious at the idiots that are still going out like there isn’t a lock down because they are stupid and selfish!',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9998607039451599, 0.7931860685348511, 0.0026470981538295746]},
{'sequence': "Watching the tv and seeing pictures of people on ventilators in hospital etc is very worrying and people die without their family around them its so sad :-(\n\ni'm already a germ freak so this virus is making me ten times worse as I feel everything that comes into the house is contaminated so I'm having to spray everything with anti bacterial spray\n\ni certainly don't want to die like that and then to some health care workers who live on my street flouting the rules is a disgrace\n\nI am also angry at some of my neighbours who don't seem to be taking this seriously and are still having visitors",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9996317028999329, 0.9930288791656494, 0.24562744796276093]},
{'sequence': "I feel that we are in a very delicate situation right now. The pandemic is really hitting hard in most parts of the world. I fear for my family, where some of my relatives don't have a choice but to continue working. They are at high risk of contracting the virus. This makes me feel fearful half of the time. \n\nPersonally, with the UK going in lockdown, it is the correct decision, but I do feel a little trapped and lonely right now. I feel that I can't escape my home and I hope this changes soon.\n\nMoreover, we're financially unstable as I'm not currently working and haven't been on furlough (up until today). ",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999104738235474, 0.9106249213218689, 5.497407983057201e-05]},
{'sequence': 'I am concerned for the ill and especially the vulnerable who may suffer in the future. I am also sad about the poor government preperation and response to the pandemic - I believe that its effects in the UK would be less had preventative actions been taken.\n\nI also think the media response has been somewhat mixed. While it is indeed sad that the Prime Minister is in hospital suffering with the corona virus, he and his government have consistently damaged the NHS\'s ability to act correctly and his own lacklustre leadership has only cemented this. His """"""""herd immunity"""""""" strategy all of a sudden doesn\'t seem so smart when he and his ministers realise their wealth and power doesn\'t put them above the rest of the herd, does it?',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9995353817939758, 0.9959613680839539, 0.0006154272705316544]},
{'sequence': "I feel frustrated as cannot see loved ones who are not in my household. I am worried about my family and friends contracting the virus and becoming seriously I'll from it. I regularly have nightmare about feeling chlostraphobic and loved ones dying which doesnt help. I feel like I need exercise to get me through this, especially with working from home. It is also hard when others around me are all off work being furloughed, but I still need to do my work. I feel like I am becoming obsessed with watching the news. Uneasy, unknown, agitated. Wondering when this will all end\n",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9932156801223755, 0.9268352389335632, 0.0003632986918091774]},
{'sequence': "Sad. I feel so sad about the loss of life right around the world. I'm sad about the folk who flout the rules and put others lives at risk - are they selfish, ignorant or what? I'm sad that the people of the US have such a t**t as a president and will see a big death toll. But mostly, I'm sad for the over-worked, stressed NHS workers who work so selflessly and who are so under-resourced. Yesterday it was anger at all these things - especially the idiots who won't do as they're told. But today it's sadness. \n",
'labels': ['sadness', 'anger', 'fear'],
'scores': [0.9998924136161804,
0.0011291545815765858,
0.0009811718482524157]},
{'sequence': "It now seems to be very real. At the start I thought it would come to nothing ! I am just in a state of shock. It is almost as though I am living in a film. I'm not scared for myself healthwise but the country as a whole. This will have a massive impact on our lives for the foreseeable future. I am deeply concerned about the economy and how it will recover. I cant see how they can lift any of the restrictions without a serious amount of people becoming infected. This will undoubtedly be one of the biggest incidents that has happened in this country in the last 100 years. My main concern is I may lose someone close to me. At the minute there is no one in my family with any worrying symptoms.\n",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9995947480201721, 0.01161977183073759, 6.205049430718645e-05]},
{'sequence': "I feel tired, tired of life, tired of wondering if I will die, angry at the Chinese for this, angry that they only admitted a problem because they had too, angry that they eat rubbish because their government doesn't care, angry that once this is over they will still do the same, angry that life will never ever be the same. Angry that I'm off work, no money, no idea if I'll have a job at the end of all this, angry at idiots who try to exploit the system, people who selfishly hog all the food. Why has my life expectancy be shortened massively over China, why as an island are we not safe, why do we let these people in to ruin our very existence.",
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9998618364334106, 0.004459704272449017, 0.0013939503114670515]},
{'sequence': 'I am very nervous about the current situation as I am missing my family and do not know when I will see them again.\n\nI wish there was an end to this in sight so my life can return to normal. \n\nI feel very upset for all those who have died already and do worry that it will effect someone I know in horrible ways.\n\nI feel a bit stressed about how I am going to pay bills because I am self employed and my working tax credits have been stopped because I made a claim for universal credit thinking it would help.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9994104504585266, 0.9582260847091675, 0.0001547666179249063]},
{'sequence': "At this very moment I am nervous about this coronavirus and it's effects on myself and my family but I am also hopefully that in time a cure or vaccine will be found and we will be able to return to our normal lives, despite feeling that nothing is ever going to be the same after.\nI fear what would happen to my children if I caught the virus or if my partner caught it again, I am fearful that they will be left alone and that terrifies me but for them I have to remain cheerful and optimistic and not to crumble under the worry and anxiety as they don't understand.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.999878466129303, 0.00955939944833517, 0.00011367750266799703]},
{'sequence': "I'm terrified. I constantly worry about catching the virus and dying..\nI'm not allowed out of the house at all as I am in the most vulnerable group so am feeling very depressed and tearful.\nI think it has all been dealt with badly by the government. They should be arresting people who are going out for no real reason these selfish people are killing others with their stupidity.\nThe sooner people realise how dangerous this virus it's the better, sadly some people just don't care and think the rules don't apply to them.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999181628227234, 0.0193265862762928, 0.010570489801466465]},
{'sequence': "Really scare situation. I am worried about my family my loved ones. I feel what if something goes wrong. I really want to do something to help everyone in this situation. I don't want anyone to die anymore. Really want to see the change as quick as possible. I Hope the government helps the poor people, to get their jobs back and everything goes normal again. There are certain group of people not talking this serious and roaming around and spreading and passing the virus to everyone . This people should be punished and not given any medical treatment if they get the infection. They not worried about their loved ones or care about them then why should they be given any treatment. This is fun time for them they don't care about our NHS and all the worker who is working hard to get back to normal but because of this few people everyone will suffer. God bless our country.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.999904990196228, 0.026506125926971436, 0.0017511966871097684]},
{'sequence': "the first week I struggled adjusting to 'the new normal' and was very bored and irritable but now I feel I have adjusted well and feel normal most days, still bored a lot though. I do find the days go quick and im not as worried as I thought id be about the whole Corona situation. I'm slightly worried about my wage being different every month for the foreseeable future though. I just hope this virus goes as quickly if not quicker than it took to arrive in the first place.\n\nThere is an eerie feeling when you go out for your daily allowed exercise; i.e. there are very few cars and people about and everywhere is closed makes every day feel like a Christmas Day sort of feel, or that funny week inbetween Christmas and New Year where you're not certain of what day it is. ",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9590009450912476,
0.0017308300593867898,
0.0004005522932857275]},
{'sequence': 'Very worried, I work at hospital and worried about bringing it home to my husband and children. I frightened of what I may see on the wards as it’s so unknown to me. I am so worried about who I may lose in all this and already know friends family members who have passed away. I’m annoyed at people not social distancing out in public and their ignorance to this extremely contagious virus. I can’t believe people are still socially engaged and mixing in public. I feel they need to make stricter rules so we protect our wonderful NHS \n\n\n\n\n\n',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9999053478240967, 0.9304582476615906, 0.04284217581152916]},
{'sequence': "I'm upset about the situation but not afraid, I am just depressed in general and am finding the situation intolerable. I am sick of people complaining and not following the rules. I have no other feelings either way about this and anything else I am writing is merely to fill the required characters to allow me to move on to the next part of the questions, which I am finding hard to Do. I do not have these many feelings and have fully explained my self and am finding I am getting annoyed because this just keeps making me write more than I care to.",
'labels': ['anger', 'sadness', 'fear'],
'scores': [0.9265034794807434, 0.15849970281124115, 0.00024441309506073594]},
{'sequence': 'I feel very scared that I get it, I am scared to go out for essentials and I worry about my family. This is such a disaster for everybody and will change our lives forever. I have previously had breast cancer so I am worried about my immune system been weaker. I feel so sad for all the lives that have been lost already and dread to even think about what the next few weeks will bring us. Lessons need to be learnt from this, and we need to be prepared if anything like this ever happens again. I just want my life to go back to normal and do normal things like before, things that we take for granted.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998863339424133, 0.8015477657318115, 7.058701885398477e-05]},
{'sequence': 'I feel very insecure and worried about the health of my close family and friends as well as struggling with my own health anxiety. I feel the Government have let us down by not acting quick enough and this both saddens and angers me. I feel desperately anxious for the front line workers putting themselves at risk alongside immense anger with the selfish people in society who are not observing Government guidelines. I feel extremely insecure about what will happen in the future and the aftermath of the situation on many different levels is extremely worrying.',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.999824583530426, 0.09526526182889938, 0.07416428625583649]},
{'sequence': "I'm self-employed, in the Arts & Entertainment industry, so all of my upcoming work has been cancelled, which obviously adds to the difficulty in the current circumstances. My concerns about money and survival contribute to my overall mood.\nAs far as the virus itself, I'm hopeful. I believe I may have had it and recovered, and I believe what is currently being done is having an impact. I'm also interested to see that the situation is prompting some countries to try new ideas, such as Universal Basic Income. I'm worried that some vulnerable members of my family may fall ill.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9964687824249268, 0.9788950085639954, 6.683069659629837e-05]},
{'sequence': 'I feel like the fear and paranoia is increasing week by week. I go through phases of feeling quite relaxed and enjoying the peace, to feeling very anxious and on edge about the situation, as more news comes through every day of the reality, it keeps jolting us back to being terrified. Any normal day activity outside the house like getting medicine from the pharmacy leaves you incredibly paranoid. People are being very kind though and it seems to have united the nation. I worry more about my family members than i do myself. I think a lot of the anxiety is about not knowing when the situation is going to end, rather than the isolation itself. ',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9999215006828308,
7.602479308843613e-05,
5.164354661246762e-05]},
{'sequence': "I'm genuinely petrified about what the Coronavirus means for me and my family. I'm scared of catching it, but there's also a small part of me that's scared of NOT catching it - I know that if I don't catch it, this crippling fear will continue to live with me until I do. I'm also ashamed that some of my family seem to think the rules don't apply to them, because they're putting themselves, and me, at risk. I'm concerned by how long the lockdown will last for - I understand it's essential and personally have no issues with it, but I think the longer it lasts the less others will comply with it.",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998992681503296, 0.006863780319690704, 0.0029868432320654392]},
{'sequence': 'Recent events have showed that no one is immune from this virus, it can affect anyone from the elderly to the very young.As you can not detect it, it is an invisible enemy, which I struggle to cope with.\nThe Queens address was a boost, but then we got the news that the PM was in hospital. This is not good, it is a living nightmare that we are all living. It will end , but when, it is difficult tp predict. It will be a long time before life returns to normality. At the moment, I am leading a very quiet life , only going out when necessary, unable to see my friends or family.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9996500015258789, 0.9986878037452698, 0.0002896682999562472]},
{'sequence': 'I feel very angry that some people are not following the rules, they are visiting neighbours etc and bragging about it on facebook and I am disgusted by their selfishness. I am missing people during the lockdown and am being sensible and responsible by staying inside and not seeing anyone, but others who are not being sensible are making it last longer and making it worse for everyone and I think they are incredibly selfish and it makes me very angry. I feel sad that I cannot see people and very anxious and depressed. ',
'labels': ['anger', 'sadness', 'fear'],
'scores': [0.9997981190681458,
0.0005043190903961658,
0.00035976935760118067]},
{'sequence': 'I am worried about what is going to happen. I am worried about getting ill and leaving my children behind. I am worried about catching it from work. I miss my family dreadfully and my close friends. I am worried about the impact on my job and career. I am worried about not being able to buy food in a few weeks and my child missing out at school. I hope the country comes out with this and can build itself back up. I am scared that the prime minister is not going to survive since being moved to intensive care',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999224543571472, 0.11177333444356918, 8.784544479567558e-05]},
{'sequence': "It still feels unbelievable that this is happening. I can see it from the news and social media that people are dying, nurses and doctors pushed to their limits, emergency services trying to do their best..\nI am worried about my family and our livelihood. I do believe the government is trying its best, although did not expect it to be honest. \nMy heart goes out to the people who can't attend their loved ones funeral, doesn't have enough money to pay rent/bills/put food on the table or doesn't have anything at all.",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9989350438117981, 0.9925969839096069, 0.0012399960542097688]},
{'sequence': "I'm sad about the deaths, but I'm trying to be practical about getting on with life. I'm getting very frustrated with people moaning about all of their new found free time whilst I'm trying to keep working and keep my colleagues safe. I'm worried for my older friends and family and what this all means for them. I'm hopeful that humanity will make it through this and be stronger for it at the other side. \n\nI'm now struggling to find 500 words! \n\nI'm trying to make the most of the time at home to read and to bake and enjoy the simpler things. ",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9980807900428772, 0.8920934200286865, 0.26104825735092163]},
{'sequence': "I feel very scared of how everything has turned out with the world regarding corona virus (covid-19) and I am worried incase family members catch It, especially those who have underlying health issues. I'm worried incase things don't go back to normal, I'm scared incase the world goes into lockdown for months or even years. I'm shocked at the number of deaths in the UK and then again around the whole world. Although I am happy that I am at my family home and I am able to quarantine with them instead of being all alone 60 miles away from my parents and siblings ",
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999239444732666, 0.01542455144226551, 3.5218417906435207e-05]},
{'sequence': "I feel sad about the people who are ill and have died. The situation doesn't seem to be improving. all the people out of work. The world is going to be in a right state when everything gets back to normal. Airlines, Travel companies, pubs and shops will all go out of business. I am sick of lock down. it is boring nothing open nowhere to go. The weather is nice now and all you can do is sit in the garden .I hope the situation improves soon or everyone is going to go crazy. It is hard to keep busy and I hate sitting around doing nothing, Watching TV. The days just drag. ",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9998259544372559,
0.0008344603120349348,
0.00016346470511052758]},
{'sequence': 'Apprehensive about the future in every way, eg. Work, economy, \nCost of living and wellbeing. Fear about the situation and great anxiety, which i have felt for sometime now. By this I mean about what is happening in relation to this situation and how it is being handled. My main worry is not being able to access health care as we normally know it, if needed. The risk of going outdoors even to shop for essentials is a concern, but necessary as it is difficult to find available slots with supermarkets. some people are not taking it seriously and people with symptoms are even carrying on as usual. This is sadly putting the eternal public at risk. Not knowing when things will begin to improve and get better, will it be weeks or months. This is completely the unknown and very frightening. ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999004602432251, 0.004078062251210213, 7.543320680269971e-05]},
{'sequence': 'I am very frightened, the news has just come on that the prime minister has just gone to intensive care and suddenly I feel very vulnerable. I want to pray, I hardly ever pray and I feel so helpless. I have no idea how this will end. I feel that the planet is saying “I need a rest from you and I’m punishing you like you punish me”. I want to cry, I can’t sleep and I am so very, very anxious. I am frightened for my grown up children who do not live near me, I miss them and hope against all hope that they stay safe. One is a key worker, I just want them home with me.',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9999145269393921,
0.00035836725146509707,
0.0001628275349503383]},
{'sequence': "At this moment in time I feel extremely worried and angry about the Covid-19 pandemic. Plans I had made for the future have all gone and unlikely to occur again. Holidays cancelled, birthdays affected. I am very worried about the health and wellbeing of my family and friends who are all compromised due to underlying health conditions. People are not following the rules of social distancing and believing it's just the flu. Needlesly risking other people's lifes due to their own ignorance and stupidity. It has been difficult trying to get time off work in order to self isolate so as to protect my family. I'm lucky I work in a sector that can continue to provide a service during this time (therefore my job is safe) but they are making life difficult by not providing us with proper protection from Covid-19 other than wash your hands and here's some antibacterial wipes.\nThe economy is going to tank again just as I was starting to gain my feet from the last financial crisis in 2008 which hit a few months after I finished high school. Stronger sanctions should have been in place weeks before the where to try and minimise the disruption to the world. All travel from hotspots banned, people quarantined for 14 days, large gatherings cancelled sooner. Hopefully lessons will be learnt for next time. The only glimmer of light is that people are helping others in need. I hope this can continue long after this is over.",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.999873697757721, 0.9974190592765808, 0.004038591403514147]},
{'sequence': 'I am very tense about the corona situation. I am worried for my loved ones and my friends, I don’t want anything and to happen to them. I am scared to leave the house and when I absolutely have to I do it as quickly as possible. I want life to go back to normal. I don’t want to be scared of contact with people. I want to be free to go where I want. I’m scared that I will become infected and infect my family. I don’t believe people are taking this seriously and that the police need to do more to protect us. This lockdown is scary but needed. ',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999125003814697, 0.001377732609398663, 0.0002472934720572084]},
{'sequence': 'i feel apprehensive, anxious, nervous and worried about the current situation. Not for myself but for the older members of my family who may succumb to the virus. Also for my partner who at the moment is working with vulnerable people, she is taking all precautions but nothing is 100% in this world. My heart also goes out to those people working within the NhS AT THIS MOMENT IN TIME. The country is pulling together but there are still people who still do not understand how serious the situation is.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9998546242713928, 0.026330305263400078, 9.876620606519282e-05]},
{'sequence': 'I am concerned for older members of my family as they could be seriously ill if they were to catch this. I’m also feeling sad about not being able to see family & friends and not being able to go out apart from my one walk a day. I feel positive that we will get through this but find I have good days and bad days. Now that the prime minister is very unwell with Coronavirus this has made me more anxious as it almost has made it more real. I’m thankful that I have my husband and two children living me so that I’m not alone each day. I am also thankful that my family have been unaffected by this virus so far. I also appreciate my freedoms and loved ones more than I did before this situation.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9996048808097839, 0.9778622388839722, 5.761218926636502e-05]},
{'sequence': 'I feel extremely sad being away from friends and family. Sad for others who are suffering and sad for all the people who have lost their lives or loved ones. I am nervous about what the future holds for everyone and worried about whether we will return to normal. Scared whether this will ever stop and how we will cope. Worried for all concerned. It is a stressful time for all but I also feel annoyed at those who are not sticking to the rules. I’m staying indoors and everyone else should too. I have been quite emotional about the whole situation in recent days and I fear that it is going to get worse over the coming weeks',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9996381402015686, 0.9897711873054504, 0.001878520124591887]},
{'sequence': "I feel very fearful about the Coronovirus situation. I'm worried for myself and my partner and our families if we get sick. Within our family there are family members with MS and COPD who we are even more worried about. I am sad that I can't see my family for goodness knows how long, but this is for the best as I wouldn't want to risk giving them anything. I'm worried about work and money, I'm on zero hours agency and my partner maybe being furloughed soon and we are already struggling. I'm angry about the people who aren't listening to the stay in rules and who are just going about things as normal and not caring and seeing friends and family. I think that the country should be put on full lockdown, with no outdoor exercise and strictly only allowed out once a week for food and medicine and that's it. The sooner we lockdown fully and stop these people going out and ignoring the rules, the sooner this virus stops and the sooner life can get back to normal. But the government needs to be firmer with these people not listening or caring. ",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9999240040779114, 0.9545204043388367, 0.003063417039811611]},
{'sequence': 'EXTREMELY AGITATED. WORRIED TO POINT OF NOT SLEEPING PROPERLY. CANT GO OUT AS PEOPLE ARE MOANING ABOUT IT. FED UP TO THE BACK TEETH. CANNOT GO ON LIKE THIS FOR SURE. WHAT CAN YOU DO, ABSOLUTELY NOTHING. REALLY ALL THESE THEORIES GOING THROUGH MY MIND, THIS VIRUS STARTED IN WUHAN LABS BY THE CHINESE, YEAH ITS VERY POSSIBLE DUE TO CURRENT RESTRAINT PUT ON CHINESE PEOPLE BY THEIR SO CALLED LEADERS. HAD TO TRY AND PUT A FACE ON IT, TO EASE CONSCIOUS SO CAN SLEEP AT NIGHT.....NOT.\nTO BE HONEST, THE WHOLE COUNTRY IS FED UP WITH IT. THINK BORIS JOHNSON HASNT DONE TO WELL AS HE IS NOW IN INTENSIVE CARE AT ST. THOMAS;S HOSPITAL.',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9994878172874451, 0.9979849457740784, 0.004248079378157854]},
{'sequence': 'I feel anxious constantly but it’s in the background. Today has felt better because I’m not at work so it’s not been at the forefront of my mind. If I think about it I can’t quite get my head around it all. I feel scared that it’s going to get or that someone I know could get it. Initially I wasn’t too worried but now people are dying and it scares me to think someone I know could actually die from this. It’s just so surreal and unbelievable. I work in a hospital so I hear about the realities of the situation. This doesn’t help my anxiety but at the same time I want more information',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9999061226844788,
0.0022783309686928988,
9.387641330249608e-05]},
{'sequence': 'I am angry because the United Kingdom government has not closed non-essential construction sites. My neighbour is having a house renovation and have not been asked to stop construction despite the noise on my mental health and the increased risk of Coronavirus through its spread from builder to builder. The government needs to close down non essential construction sites otherwise there will be more deaths and unnecessary lives will be loss. I am also scared for the mental and physical health of my already ill and disabled family due to the Coronavirus situation.',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9998727440834045, 0.06992184370756149, 0.0001248489279532805]},
{'sequence': 'There is a slight touch of anger in terms of the carelessness that gave the virus the opportunity to reach humans in the first place and then the cover up by the Chinese government but there is an overwhelming feeling of sadness for all the devastation it is causing in terms of lives lost and financial impact to individuals.\n\nFurthermore, there is a bit of anxiety and fear in terms of how it will impact me and my family as my wife is a frontline doctor. Personally, I am working from home so it has been a bit of a break for me from my hectic schedule and a chance to recuperate but also missing on certain things that were taken for granted previously.',
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9964687824249268, 0.44955873489379883, 0.04703038930892944]},
{'sequence': 'I am not particularly scared because I am young and are more likely to recover from it and i know the procedure to stop the spread of the virus and know that I am not putting myself at risk. The most anxiety comes from spreading to other people who are not as healthy as I am, which is a horrible feeling. To see how many people have died from the virus has made me feel afraid for the families who have to watch loved ones die without being able to say goodbyes fully and have to see them die without being comforted in their transition.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9374975562095642, 0.06928941607475281, 0.00013711804058402777]},
{'sequence': 'Feel that the threat is still coming. Feel very lonely because I live alone. Feeling I’ve eaten too much chocolate because I’m just a bit fed up and all Easter eggs on offer at the moment!\nI’m more concerned for the older people I know such as my parents and someone I’m keeping an eye on in assisted-living. \nDo you feel I need to keep reminding myself how lucky I am. I live in a nice area with easy access to open spaces and I have supermarkets in walking distance. Most of the world doesn’t have this luxury.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9974933862686157, 0.9956346154212952, 8.99284568731673e-05]},
{'sequence': 'I am frustrated with the restrictions, concerned about older relatives and also friends who are working in the NHS. \nI contend that the Government has endangered more UK lives with its haphazard approach in which herd immunity seemed to be the policy, where testing is minimal and health workers are not appropriately protected. So yes as a result of all of this, I do feel anger, mainly towards the government who now seems to be scapegoating elements of British society. Also, the Police with the new regulations or guidelines are sometimes overstepping in their interventions. ',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9999090433120728, 0.020567096769809723, 5.266206426313147e-05]},
{'sequence': 'I am feeling a bit scared about the whole situation because of how much it feels like our lives have currently changed. I am also very sad at the number of people suffering and dying due to the coronavirus. It is sad to see the huge numbers of people suffering and dying around the world. I also feel angry at the people who are not following the governments guidelines of staying at home to help save lives and not following the social distancing guidelines. Therefore I have mixed feelings about the current Corona situation.',
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.9996922612190247, 0.8110781908035278, 0.7635719180107117]},
{'sequence': "I wish I knew how long this would last for and that everyone I care about will survive it, not just physically but I am concerned for their mental well being too and my own mentalhealth. I am not going to see a soul for many many days and already haven't for about 17 days. I am sad for all the suffering that is happening and the injustice of the nhs workers and the carers dying for lack of safety equipment. I am sad for those experiencing grief in the worse way possible as they can't be with their loved ones or have funerals attended in the normal ways. I am curious about what life will be like for us all when all this is over. I tend to think of it as this year is a right off and I hope next year the coronavirus will have passed as I can't cope with the uncertainity of not knowing how long this is for. But I am afraid that I might be wrong and that it may last for longer than a year. I wish I could just go to sleep until it is all over and the pandemic is over.",
'labels': ['sadness', 'fear', 'anger'],
'scores': [0.9996436834335327, 0.9994621276855469, 0.00016603845870122313]},
{'sequence': 'Significant Anger and disappointment that we are in this situation which could have been significantly reduced had the governemnt acted much earlier to isolate those coming into the country from know infected areas. Dire and extremely slow response to prevent hoarding of food. Dire response to protect the vulnerable from job loss and apply for benefits. Worried for the extremely vulnerable relatives I have who haven’t and won’t leave their houses for 12 weeks. Anger tHat the lock down has also been poorly managed persecuting the responsible residents',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9997941851615906, 0.9505488872528076, 0.0005781619693152606]},
{'sequence': "I feel saddened at the number of deaths of NHS workers who have not been adequately supplied with PPE, these deaths are preventable and should never have occurred if they were given the right equipment to do their job safely. And that only recently they are being tested. \n\nI also feel for those who are dying not of covid but as a result, those who surgery been cancelled or those in too much fear to attend A&E with life threatening symptoms\n\nI'm angry that we were slow of the mark, lockdown should have occurred sooner and more tests carried as well as contact tracing.",
'labels': ['sadness', 'anger', 'fear'],
'scores': [0.9991639256477356, 0.9734687209129333, 0.14681969583034515]},
{'sequence': 'My grandad is currently hospitalised with the coronavirus so I am feeling sad and anxious about that at this time. I am worried he is not going to survive and that I won’t be able to be there for my grandma. I also feel angry that this has happened and feel that this is an attempt at a population cull that has escalated out of hand. I feel anxious that other members of my family will contract the virus as well. I feel angry that some people aren’t following the lockdown rules and don’t seem fazed if they contract or spread the virus.',
'labels': ['fear', 'sadness', 'anger'],
'scores': [0.9992460608482361, 0.9352874159812927, 0.850468635559082]},
{'sequence': 'I feel very angry and annoyed with people that are not listening to the rules and not staying home, the amount of people that have been seen in big groups and with friends etc in public places is ridiculous. This is leading me to feel very worried about what is going to happen to the economy, the likes of travel and businesses, what this is going to do to them. Most of all I am the most worried about my loved ones, keeping them safe, worried about my elderly grandmother that lives alone and how this is going to affect her mental health. ',
'labels': ['anger', 'fear', 'sadness'],
'scores': [0.9998528957366943,
0.011266297660768032,
0.00033863994758576155]},
{'sequence': "I'm not worried about the effects of Corona on my personal well-being, but I'm concerned about the long-term economic consequences of mass quarantine. I find it frustrating how scared and anxious most people seem to be because of Corona, even though it poses little to no threat to the majority of them. I think the current measures meant to stop the spread of the virus will do more harm than good in the long run, because life can't just stop for several months. I do, however, appreciate the new opportunities to spend more time by myself at home, including working from home (which I've never done before).",
'labels': ['fear', 'anger', 'sadness'],
'scores': [0.033557821065187454, 0.02278088591992855, 0.004289588890969753]}]
Same story here. That was it! nli_results is a list of dictionaries too — one per text, each with a sequence, labels, and scores entry — so it’s JSON-compatible in exactly the same way roberta_result was in Step 2:
with open("nli_results.json", "w") as f:
json.dump(nli_results, f)That file could be picked up in R or any other tool from here. We’ll keep working in Python below.
In [11]:
anger_scores = []
fear_scores = []
sadness_scores = []
for result in nli_results:
scores_by_label = dict(zip(result["labels"], result["scores"]))
anger_scores.append(scores_by_label["anger"])
fear_scores.append(scores_by_label["fear"])
sadness_scores.append(scores_by_label["sadness"])
nli_result_df = pd.DataFrame({
"text": df["text"],
"anger_score": anger_scores,
"fear_score": fear_scores,
"sadness_score": sadness_scores,
})
print(nli_result_df) text anger_score \
0 Stressed and uninformed. Don't feel enough is ... 0.040693
1 I feel worried about the virus, burnout about ... 0.000040
2 Disgusted how unprotected NHS staff are and ho... 0.956227
3 I am not too worried about the situation as I ... 0.018869
4 I'm finding the Corona situation quite dauntin... 0.000121
.. ... ...
145 Significant Anger and disappointment that we a... 0.999794
146 I feel saddened at the number of deaths of NHS... 0.973469
147 My grandad is currently hospitalised with the ... 0.850469
148 I feel very angry and annoyed with people that... 0.999853
149 I'm not worried about the effects of Corona on... 0.022781
fear_score sadness_score
0 0.999364 0.145965
1 0.999873 0.034004
2 0.011710 0.507373
3 0.103205 0.988050
4 0.948107 0.998508
.. ... ...
145 0.950549 0.000578
146 0.146820 0.999164
147 0.999246 0.935287
148 0.011266 0.000339
149 0.033558 0.004290
[150 rows x 4 columns]
Your turn
The probability scores generated by an NLI model may change depending on the exact wording of the candidate labels or hypotheses. Try changing the label text in the cell above (e.g., “fear” → “being afraid”) and re-run the cell. Do the scores change? If so, how much? You can also try a totally different category (maybe not even an emotion) and see what happens.
Exercise: Compare to a different model
You’ve now got two encoder-based classifiers running. For the rest of this block, we’ll try running a third model.
For this exercise, we’ll use the model j-hartmann/emotion-english-distilroberta-base, a category-specific model trained on a different mix of datasets. Check out its model card on Hugging Face and figure out how it differs from the previous models.
Warning: In the model card, the parameter return_all_scores=True is used to return all scores (not only the most confident). This parameter, however, is deprecated and needs to be adapted to top_k = None like we did above (which does the same thing).
Once you have a sense of the model, run it on the same texts and compare its output to the previous two models. How do the scores differ? Do you notice any patterns in the differences?
In [18]:
# TODO: implement the classification with the third model and compare the results to the previous two models.