File size: 22,722 Bytes
e2bef95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
{
  "URL": [
    "https://huggingface.co/datasets/emotion"
  ],
  "Categories": "Basic Sentiment Analysis",
  "Input_language": [
    "English"
  ],
  "Output_language": [
    "English"
  ],
  "Instruction_language": [
    "English"
  ],
  "Domains": "Narrative",
  "Positive Examples": [
    {
      "input": "i am ever feeling nostalgic about the fireplace i will know that it is still on the property",
      "output": "love",
      "explanation": "The word \"nostalgic\" could either indicate \"love\" or \"sadness\", but the fact that it is still on the property eliminates \"love\"."
    },
    {
      "input": "i am feeling grouchy",
      "output": "anger",
      "explanation": "The word \"grouchy\" clearly indicates the emotion \"anger\"."
    }
  ],
  "Negative Examples": [
    {
      "input": "i feel romantic too",
      "output": "joy",
      "explanation": "This statement clearly indicates joy, but the joy particularly relates to romance. So, the correct label must be \"love\" instead."
    },
    {
      "input": "i feel like i have to make the suffering i m seeing mean something",
      "output": "love",
      "explanation": "Since the author feels that he must find a purpose for the suffering, the sentence has a negative outlook. So, the label should be \"sadness\" and not \"love\"."
    }
  ],
  "Instances": [
    {
      "id": "task875-71242b8434ca45069f707985dc791e2e",
      "input": "i feel like i am actually a creative person now",
      "output": "joy"
    },
    {
      "id": "task875-a4b93ee46b014f459b2ba875873cb457",
      "input": "i guess im a tough woman but i feel delicate",
      "output": "love"
    },
    {
      "id": "task875-3d4bd89477d04978bfb20ecc724093c7",
      "input": "i was feeling and how rich we are",
      "output": "joy"
    },
    {
      "id": "task875-1af0fe8634874ef2be344b2341441f13",
      "input": "i did a solo flight from ardmore to kaikohe before i got my pilot licence i can remember it was gorgeous day and i was on a natural high",
      "output": "joy"
    },
    {
      "id": "task875-c91af8fdabf24ee9b567cd0a8f1f39f2",
      "input": "i feel as though im the most hated kid in school the biggest bitch and other times i just feel popular and loved by everyone",
      "output": "sadness"
    },
    {
      "id": "task875-4718b9d637614f39a04276fbb3f4a4c6",
      "input": "i grew up feeling ugly and inadequate",
      "output": "sadness"
    },
    {
      "id": "task875-00c675b17ad6418f9ae3cc270ec44a97",
      "input": "i closed my eye taking in the feeling wishing that i could go back in time and re live these amazing moments when i opened my eyes i was taken back by fahad s presence he was leaning against the skeleton of the swing set and smiling at me",
      "output": "surprise"
    },
    {
      "id": "task875-680b55b2dff94e1ca46e9435cf97d382",
      "input": "i was exceptionally hurt by it and i m definitely still feeling the impact when it comes to trusting people",
      "output": "joy"
    },
    {
      "id": "task875-2b3bebc67a654b35b8f116fc3a04c2f1",
      "input": "i take a look as i try to get used to the feeling of his touch innocent as it is",
      "output": "joy"
    },
    {
      "id": "task875-4f022eeb661149febf69dc242c2352f0",
      "input": "i don t feel devastated",
      "output": "sadness"
    },
    {
      "id": "task875-b1ca30b93b5542b89b71c4bf406cbee5",
      "input": "i do now as compared with years ago is that i no longer feel i have to be accepted by others only those who matter to me",
      "output": "love"
    },
    {
      "id": "task875-98b552d107d64d609de79580a157650f",
      "input": "i go fishing i really feel so carefree can i fish everyday",
      "output": "joy"
    },
    {
      "id": "task875-17f2f4702c894babb5542e4a2b296f09",
      "input": "i feel like thats what vicious circle is",
      "output": "anger"
    },
    {
      "id": "task875-06227684a2f841c6858685cd0ce44944",
      "input": "im feeling a bit distressed about it",
      "output": "fear"
    },
    {
      "id": "task875-16cbeca055b447758f26d2d545e24297",
      "input": "when it became clear that a man had used many people sexually and psychologically",
      "output": "anger"
    },
    {
      "id": "task875-dc9faf482757449f822a9db0f7d8b1b0",
      "input": "im sure ill also feel a bit nervous",
      "output": "fear"
    },
    {
      "id": "task875-81ab873d004644a09e2b8a10f5c42e6e",
      "input": "i do feel so funny about myself because i seems to want to have good guy image although i have been keep saying wanna go clubbing but ended up did not even go once",
      "output": "surprise"
    },
    {
      "id": "task875-6ea07f452dca4ab18442be38c88321bf",
      "input": "im feeling very curious ill pull out geology maps",
      "output": "surprise"
    },
    {
      "id": "task875-c09a7e99367f4ef1a24389d1a6dc34d4",
      "input": "i am feeling quite overwhelmed",
      "output": "surprise"
    },
    {
      "id": "task875-8b2e02988a9e41d5ae970fd5771c8923",
      "input": "ive also had a nosy on the website and seeing as its coming up to that time of year and im feeling strangely festive for once ive picked my top five products from the a href http www",
      "output": "joy"
    },
    {
      "id": "task875-f5adf63c5c5a429eae3168ee9bb9789b",
      "input": "i am feeling overwhelmed i want to physically shake everything off me the way i would if there was a spider in my shirt",
      "output": "surprise"
    },
    {
      "id": "task875-661a081d06d24bddb414620831d570f2",
      "input": "i feel like not caring",
      "output": "love"
    },
    {
      "id": "task875-0a9cc5ae611348368b39985021902728",
      "input": "i feel like buy to play is the most accepted model by consumers at large",
      "output": "love"
    },
    {
      "id": "task875-6f56813996894ea6a22145c64baa31b7",
      "input": "i must say that i feel that i accepted something of a poisoned chalice",
      "output": "love"
    },
    {
      "id": "task875-ebc7258679e447c2919865cbed145410",
      "input": "i feel so hopeless and usually just want o scream",
      "output": "sadness"
    },
    {
      "id": "task875-152a7a8a65e0473abbb8a1ebff398eff",
      "input": "i was ready to go if need be and fortunately tim was feeling ok and feeling well enough to go",
      "output": "joy"
    },
    {
      "id": "task875-3d05b4873cef41059135ca6c15faef46",
      "input": "i do feel a bit deprived of a typical experience",
      "output": "sadness"
    },
    {
      "id": "task875-d8b2604a34c9430a8b9d158779b1c069",
      "input": "i absolutely love this skinny fiber it is doing wonders for me and i feel fabulous",
      "output": "joy"
    },
    {
      "id": "task875-59774a8f3834489b80fc07d73e1d9bb9",
      "input": "i remember feeling surprised that i had the option not to listen",
      "output": "surprise"
    },
    {
      "id": "task875-76c002f1437a4700b359ed918f20c65d",
      "input": "im feeling a bit weepy today",
      "output": "sadness"
    },
    {
      "id": "task875-4d9642a2fc654e7a953251c2f73d481e",
      "input": "i have nothing but respect for not only jerry sloan but the utah jazz as a whole i feel wronged that we were forced to stomach this series",
      "output": "anger"
    },
    {
      "id": "task875-ebca31549dca452097865efe90d60c09",
      "input": "i like him for who he is or i just like the feeling to be liked",
      "output": "love"
    },
    {
      "id": "task875-b5c5d02d0c824f0a87ef8f53c278dd54",
      "input": "i am feeling stressed or overwhelmed i have come to rely on those who i have met here mostly from the so club",
      "output": "anger"
    },
    {
      "id": "task875-105b98732d9a4bf5b701d8d85c864322",
      "input": "i feel you are so delicate now",
      "output": "love"
    },
    {
      "id": "task875-aef58648305440d3a15b2baff6f5ce29",
      "input": "i have this crush on my bus mate and i feel strange about it because i used to despise him",
      "output": "fear"
    },
    {
      "id": "task875-67c1f5f193cb48df984c2cc05195a651",
      "input": "i considered jogging since it is not too cold today but decided against it as my right ankle is already feeling tender for some reason",
      "output": "love"
    },
    {
      "id": "task875-6c9b96e2c8c5475fa1eb336de3a919ac",
      "input": "i feel very lucky to have known him to have called him family",
      "output": "joy"
    },
    {
      "id": "task875-a1ffa59330ac466a8d7e947aab043012",
      "input": "i believe you have to truly regret feel remorseful that you have these feelings even if you feel like you can t control them",
      "output": "sadness"
    },
    {
      "id": "task875-197096f0d4124b3ba1145b4abc39aa24",
      "input": "i want a conditioner that will make me feel pretty and outgoing",
      "output": "joy"
    },
    {
      "id": "task875-32267a10e2e64e5d86f2651d9d1eba65",
      "input": "i feel more anxious than i have in quite some time in fact",
      "output": "fear"
    },
    {
      "id": "task875-7665b64f375143ca8c5fe3d13bfab343",
      "input": "i remember leaving church feeling invigorated every sunday and tuesday night",
      "output": "joy"
    },
    {
      "id": "task875-8d2c13bef3794408933e645cc317ecab",
      "input": "i am mellow and feeling particularly fond of all the human race i don t blame fertile people for not really knowing what to say or what to think or how to deal with it all",
      "output": "love"
    },
    {
      "id": "task875-d88f41e3903948048204b82a9b538ed3",
      "input": "i may even try to make her some matching hair bows or when i feel more talented make them and sell them",
      "output": "joy"
    },
    {
      "id": "task875-14c461249cdc4c92bcdede7d90cba4d0",
      "input": "i feel extremely blessed and lucky that my company believes in me enough to let cut my hours down and that am so thankful to all of you my readers for reading what i have to say on here",
      "output": "love"
    },
    {
      "id": "task875-b42bd9a8c0ce4b83bbc989b73c3ccac4",
      "input": "i feel more sympathetic than ever for elementary school teachers trying to coerce entire classes of third graders to walk single file to the lunchroom",
      "output": "love"
    },
    {
      "id": "task875-2f458f73d51941b08848ff898e7d7e62",
      "input": "i mulled this idea over in my head as much as i loved it i also noticed myself feeling a bit hesitant about what it might mean for her our",
      "output": "fear"
    },
    {
      "id": "task875-6e1afca7305444c2a06ef7d0fd223fd0",
      "input": "i feel it is unfortunate that the community has had little more than weeks to evaluate this solution prior to the more drastic way stop proposal coming to a vote at public works",
      "output": "sadness"
    },
    {
      "id": "task875-ef15e588d2854d5ab9694a165a33847f",
      "input": "i was feeling strange downstairs i could still feel the dull sensation of the contractions but the nurse said she didnt want to check me for about an hour",
      "output": "surprise"
    },
    {
      "id": "task875-9d9c9dc4cafd47a99926a23edb015bbd",
      "input": "i should stop reading sids blogs but it is part of my blogging community and i feel that in supporting each other we get better at handling grief and hence i am not going to stop",
      "output": "love"
    },
    {
      "id": "task875-b084bf24d2a64484b32b562f0c67b949",
      "input": "i dont recall just now yet vividly recall looking at you as you said it and you i think looking back at me and my feeling very sympathetic or maybe empathetic is the better word of course you needed a space",
      "output": "love"
    },
    {
      "id": "task875-9be2d6d9ebf44bbfa77384ff8712e83c",
      "input": "i realized what i am passionate about helping women feel accepted and appreciated",
      "output": "joy"
    },
    {
      "id": "task875-f05bd1025f53442d83c8982cca8a8287",
      "input": "i guess i feel insecure and anxious",
      "output": "fear"
    },
    {
      "id": "task875-5f8157c4ea404f02a88123bc62457398",
      "input": "ive last posted not that my mind hasnt been flooded with topics that i feel need to be entertained but more so to do with the influx of feelings and opinions without clarity as life happened",
      "output": "joy"
    },
    {
      "id": "task875-4e1e943f5b26451183b85e718739484f",
      "input": "i have nothnig to say im just feeling giggly as someoen on lauging gas",
      "output": "joy"
    },
    {
      "id": "task875-2b068b694cfa4ff394cabd97015ba158",
      "input": "i havent been sick in the winter very often since i quit smoking years ago so seldom in fact that now when i do get sick i feel outraged hows that for rational thinking",
      "output": "anger"
    },
    {
      "id": "task875-882b67f175b34e9d8df4de5b17e6739e",
      "input": "i guess which meant or so i assume no photos no words or no other way to convey what it really feels unless you feels it yourself or khi bi t au th m i bi t th ng ng i b au i rephrase it to a bit more gloomy context unless you are hurt yourself you will never have sympathy for the hurt ones",
      "output": "sadness"
    },
    {
      "id": "task875-b12f06e54b384f398b4b621c2cee7bc9",
      "input": "i feel so petty who one of my first colleagues had not nice things to say about when i first asked for any contacts for investment banks from before i arrived at this job",
      "output": "anger"
    },
    {
      "id": "task875-853c7f4bd8f64a53abf81a1892006e87",
      "input": "i feel tender cool and relax after enjoying these wonderful masters",
      "output": "love"
    },
    {
      "id": "task875-ff0de42b99e84d08bd7eae57fedf6af5",
      "input": "i have noticed my fingers and toes get very cold and almost feel numb",
      "output": "sadness"
    },
    {
      "id": "task875-34c268e0b5d24d46925ea83855e4e97a",
      "input": "i feel insulted but i go out with him anyway",
      "output": "anger"
    },
    {
      "id": "task875-834fac0dbd034d5885f62d271e5859ed",
      "input": "i am sorry that you feel i deserve to be blamed for the friends i pick all of which are better then some of the friends i could be hanging out with getting high and drunk while underage",
      "output": "sadness"
    },
    {
      "id": "task875-417ed793df4b4addaf30045369481284",
      "input": "i guess were annoyed agiatated and my sis feels hated darn cos i told her shes a geek i love you amy",
      "output": "anger"
    },
    {
      "id": "task875-555bbbbb23c94d1fa61775dfcabc6d4c",
      "input": "i feel like im a hateful person sometimes",
      "output": "anger"
    },
    {
      "id": "task875-22e52c6ee81549e3a39f3057d91ef2ea",
      "input": "i did not feel in the least smart",
      "output": "joy"
    },
    {
      "id": "task875-02eb8d19ea9e415ca1353e4d15bc4709",
      "input": "i still blush and feel shocked about the recreational activities that i sometimes unwillingly and willingly hear sometimes",
      "output": "surprise"
    },
    {
      "id": "task875-b8043c998dde42e28c6730081a9310e4",
      "input": "i feel proud to be queer performing at lovebox",
      "output": "joy"
    },
    {
      "id": "task875-3e8632a347494b07b14601fec31bdf2a",
      "input": "i feel ecstatic every time i perfect a water sport",
      "output": "joy"
    },
    {
      "id": "task875-ffe87a4cc5724e1eada3ef7f1c1c5463",
      "input": "i love you and i feel so blessed to spend another year with you",
      "output": "love"
    },
    {
      "id": "task875-2b7fbf0ea01a4ba1b687edec45ef0a2e",
      "input": "i was driving back i was having a moment of missing new orleans and feeling really sad when it just hit me that i was able to go visit them for the night on a whim and i felt such a peace",
      "output": "sadness"
    },
    {
      "id": "task875-a86351466996402886b2cea18da6ee23",
      "input": "i feel as though sometimes i can be more clever than average",
      "output": "joy"
    },
    {
      "id": "task875-d074f1d064274c2a8536c01ecd1d2ef3",
      "input": "i could genuinely feel loving toward someone without them ever knowing it if i dont act like it",
      "output": "love"
    },
    {
      "id": "task875-eac29793a4fe404ba86586c3b32dd018",
      "input": "i feel really uptight and unable to unwind",
      "output": "fear"
    },
    {
      "id": "task875-0b7c484840574b1c85f4c6c934b32083",
      "input": "im feeling a bit less anxious about it all now and im actually starting to look forward to the challenge of the big event",
      "output": "fear"
    },
    {
      "id": "task875-2a23a9f54c394c93a2995ead32108481",
      "input": "i would rather take my chances on keeping my heart and getting it broken again and again then to stop feeling to stop caring to be bitter cross cynical",
      "output": "love"
    },
    {
      "id": "task875-e473e8a99962487d909d95adc1e93912",
      "input": "i went i was amazed at what i have and i began to feel when the woman canal spoke about the divine hierarchies and they wanted us to do for a new era of spiritual evolution",
      "output": "joy"
    },
    {
      "id": "task875-e2da3f9c44f84acc9e5dbb38571f43e2",
      "input": "i couldn t help but feel sympathetic for netflix as an army of the misinformed denounced netflix for the recent price hike",
      "output": "love"
    },
    {
      "id": "task875-f2708495a1774387ad417948672077ba",
      "input": "i feel so impressed with ia",
      "output": "surprise"
    },
    {
      "id": "task875-c41cda79d3044fa1b571af0660b7b89b",
      "input": "i feel benevolent towards you today",
      "output": "joy"
    },
    {
      "id": "task875-1a3acb3a351a4a0487414a14c517c381",
      "input": "i wonder if mind readers draw a blank when they get around stupid people and when stupid people leave a room does it feel like somebody smart just walked in",
      "output": "joy"
    },
    {
      "id": "task875-c62a7145273a4a6c9b7a632e7cb5ed89",
      "input": "i feel drained at least now i have something to look forward to",
      "output": "sadness"
    },
    {
      "id": "task875-7a875d34ba224402aed9c925fb854fba",
      "input": "i feel drained mentally and physically and i really need to get back to a better spot",
      "output": "sadness"
    },
    {
      "id": "task875-1a9ad0f03ca84ce59ef45d1c36479d8e",
      "input": "i used to feel when i was still a child being very curious and innocent with everything and everyone around me",
      "output": "surprise"
    },
    {
      "id": "task875-749f151607294610844d580317c9dea2",
      "input": "i feel lots more energy i feel very impatient and irritable",
      "output": "anger"
    },
    {
      "id": "task875-ec61acda2e3144c7b674cfe62fa1ad10",
      "input": "i just feel its more romantic when these characters do not jump on each other on the first opportunity they get",
      "output": "love"
    },
    {
      "id": "task875-7d31647c785a44fbac9a85a8514a588e",
      "input": "i feel this strange sense of importance of life and the world when i stare at the stars all night",
      "output": "fear"
    },
    {
      "id": "task875-f5921147fbc449c185bfe1abaf22f449",
      "input": "i feel more gentle that way wth",
      "output": "love"
    },
    {
      "id": "task875-9320bdd265dc4b8a80e84023990aa736",
      "input": "i was questioning myself and feeling nervous about being able to hit the targets",
      "output": "fear"
    },
    {
      "id": "task875-ee3f847caf5d4810bbd53c20014f5e2b",
      "input": "i am not a regular member of this group meaning that i do not follow whats going on very often and also i feel a bit shy in budding in when i do not have much to say but today i have a request for you people",
      "output": "fear"
    },
    {
      "id": "task875-81e3879e1a284212a7b975187249a9c0",
      "input": "i feel about femme fatale except its not cute anymore now that its pretty obvious that britneys not in control of her life that shes so burnt out and yet i get the impression shes almost forced into this career to the point that she just cant or wont deliver anymore",
      "output": "joy"
    },
    {
      "id": "task875-502f703330ad4a61bab4ea9d8858092d",
      "input": "i didn t think the writing really expressed the intensity of emotion one would feel at losing a beloved spouse",
      "output": "love"
    },
    {
      "id": "task875-6bf6f822e3ab4faf8369ee887a2f0fe8",
      "input": "i feel totally drained emotionally and physically the holy spirit never ceases to fill me up and speak to me",
      "output": "sadness"
    },
    {
      "id": "task875-88c1676f92a04d57bcc9518e1a3de0b8",
      "input": "i feel like that wall is boring amp needs a pop of color",
      "output": "sadness"
    },
    {
      "id": "task875-ffc4ee39f9e548118ad9ef09ae99dbc0",
      "input": "i care about someones emotional spiritual and intellectual progress to the point where i feel like i should exert myself in that progress and its important to me that is love",
      "output": "joy"
    },
    {
      "id": "task875-f84d2b36728f43d0bdfa8ca54c1e8f5c",
      "input": "i ran errands to buy cora a few newborn sized sleepers i had not previously made any newborn sized babies and went out to lunch to celebrate how great i was feeling i feel amazing no pain no pain meds and moving around almost completely normally at days out",
      "output": "surprise"
    },
    {
      "id": "task875-2850c7e4715249639bce57498fbaa063",
      "input": "i feel so horny and naughty dressed up like this and my tgirl cock is getting a real work out as i continue to admire myself",
      "output": "love"
    },
    {
      "id": "task875-2f0dd1944ba448bdb4c3b69e94ef0ec8",
      "input": "i feel divine original mix",
      "output": "joy"
    },
    {
      "id": "task875-61fa9a4b8bf743cb92969197f258ed7e",
      "input": "i feel lola falls under this strange demographic",
      "output": "surprise"
    },
    {
      "id": "task875-9555d5f540d24cf782a45f5337fd53e6",
      "input": "i feel threatened by people who actually learned stuff in college",
      "output": "fear"
    },
    {
      "id": "task875-5640ad035a3a413f99c35b2d49d6f08f",
      "input": "i am just feeling too rotten to put on a happy face for the night",
      "output": "sadness"
    },
    {
      "id": "task875-ad3e6fde1e8a49c0b8f5d34dcf57fb14",
      "input": "i could clearly feel my adomen muscles contract everytime i cough like some adomen exercise haha and im aching from it now sigh",
      "output": "sadness"
    }
  ],
  "Definition": [
    "In this task, you are given a sentence containing a particular emotion. You must classify the sentence into one of the six emotions: 'joy', 'love', 'anger', 'fear', or 'surprise'."
  ]
}