MoritzLaurer HF staff commited on
Commit
e3f3825
·
1 Parent(s): 3acbfe2

Update README.md

Browse files

added hypotheses used for fine-tuning

Files changed (1) hide show
  1. README.md +415 -1
README.md CHANGED
@@ -87,4 +87,418 @@ If you use this model, please cite:
87
  If you have questions or ideas for cooperation, contact me at m{dot}laurer{at}vu{dot}nl or [LinkedIn](https://www.linkedin.com/in/moritz-laurer/)
88
 
89
  ### Debugging and issues
90
- Note that DeBERTa-v3 was released on 06.12.21 and older versions of HF Transformers seem to have issues running the model (e.g. resulting in an issue with the tokenizer). Using Transformers>=4.13 might solve some issues.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  If you have questions or ideas for cooperation, contact me at m{dot}laurer{at}vu{dot}nl or [LinkedIn](https://www.linkedin.com/in/moritz-laurer/)
88
 
89
  ### Debugging and issues
90
+ Note that DeBERTa-v3 was released on 06.12.21 and older versions of HF Transformers seem to have issues running the model (e.g. resulting in an issue with the tokenizer). Using Transformers>=4.13 might solve some issues.
91
+
92
+ ### Hypotheses used for classification
93
+
94
+ These hypotheses were used to fine-tune the model.
95
+ Inspecting them can help users get a feeling for which type of hypotheses and tasks the model was trained on.
96
+ I recommend formulating your hypotheses in a similar format. For example:
97
+
98
+ ```python
99
+ from transformers import pipeline
100
+ text = "Angela Merkel is a politician in Germany and leader of the CDU"
101
+ classes_verbalized = ["politics", "economy", "entertainment", "environment"]
102
+ hypothesis_template = "This example is about {}"
103
+ model_name = "MoritzLaurer/deberta-v3-large-zeroshot-v1.1-all-33"
104
+ classifier = pipeline("zero-shot-classification", model=model_name)
105
+ output = classifier(text, classes_verbalised, hypothesis_template=hypothesis_template, multi_label=False)
106
+ print(output)
107
+ ```
108
+
109
+
110
+ #### wellformedquery
111
+ | label | hypothesis |
112
+ |:----------------|:-----------------------------------------------|
113
+ | not_well_formed | This example is not a well formed Google query |
114
+ | well_formed | This example is a well formed Google query. |
115
+ #### biasframes_sex
116
+ | label | hypothesis |
117
+ |:--------|:-----------------------------------------------------------|
118
+ | not_sex | This example does not contain allusions to sexual content. |
119
+ | sex | This example contains allusions to sexual content. |
120
+ #### biasframes_intent
121
+ | label | hypothesis |
122
+ |:-----------|:-----------------------------------------------------------------|
123
+ | intent | The intent of this example is to be offensive/disrespectful. |
124
+ | not_intent | The intent of this example is not to be offensive/disrespectful. |
125
+ #### biasframes_offensive
126
+ | label | hypothesis |
127
+ |:--------------|:-------------------------------------------------------------------------|
128
+ | not_offensive | This example could not be considered offensive, disrespectful, or toxic. |
129
+ | offensive | This example could be considered offensive, disrespectful, or toxic. |
130
+ #### financialphrasebank
131
+ | label | hypothesis |
132
+ |:---------|:--------------------------------------------------------------------------|
133
+ | negative | The sentiment in this example is negative from an investor's perspective. |
134
+ | neutral | The sentiment in this example is neutral from an investor's perspective. |
135
+ | positive | The sentiment in this example is positive from an investor's perspective. |
136
+ #### rottentomatoes
137
+ | label | hypothesis |
138
+ |:---------|:-----------------------------------------------------------------------|
139
+ | negative | The sentiment in this example rotten tomatoes movie review is negative |
140
+ | positive | The sentiment in this example rotten tomatoes movie review is positive |
141
+ #### amazonpolarity
142
+ | label | hypothesis |
143
+ |:---------|:----------------------------------------------------------------|
144
+ | negative | The sentiment in this example amazon product review is negative |
145
+ | positive | The sentiment in this example amazon product review is positive |
146
+ #### imdb
147
+ | label | hypothesis |
148
+ |:---------|:------------------------------------------------------------|
149
+ | negative | The sentiment in this example imdb movie review is negative |
150
+ | positive | The sentiment in this example imdb movie review is positive |
151
+ #### appreviews
152
+ | label | hypothesis |
153
+ |:---------|:------------------------------------------------------|
154
+ | negative | The sentiment in this example app review is negative. |
155
+ | positive | The sentiment in this example app review is positive. |
156
+ #### yelpreviews
157
+ | label | hypothesis |
158
+ |:---------|:-------------------------------------------------------|
159
+ | negative | The sentiment in this example yelp review is negative. |
160
+ | positive | The sentiment in this example yelp review is positive. |
161
+ #### wikitoxic_toxicaggregated
162
+ | label | hypothesis |
163
+ |:--------------------|:----------------------------------------------------------------|
164
+ | not_toxicaggregated | This example wikipedia comment does not contain toxic language. |
165
+ | toxicaggregated | This example wikipedia comment contains toxic language. |
166
+ #### wikitoxic_obscene
167
+ | label | hypothesis |
168
+ |:------------|:------------------------------------------------------------------|
169
+ | not_obscene | This example wikipedia comment does not contain obscene language. |
170
+ | obscene | This example wikipedia comment contains obscene language. |
171
+ #### wikitoxic_threat
172
+ | label | hypothesis |
173
+ |:-----------|:----------------------------------------------------------|
174
+ | not_threat | This example wikipedia comment does not contain a threat. |
175
+ | threat | This example wikipedia comment contains a threat. |
176
+ #### wikitoxic_insult
177
+ | label | hypothesis |
178
+ |:-----------|:-----------------------------------------------------------|
179
+ | insult | This example wikipedia comment contains an insult. |
180
+ | not_insult | This example wikipedia comment does not contain an insult. |
181
+ #### wikitoxic_identityhate
182
+ | label | hypothesis |
183
+ |:-----------------|:---------------------------------------------------------------|
184
+ | identityhate | This example wikipedia comment contains identity hate. |
185
+ | not_identityhate | This example wikipedia comment does not contain identity hate. |
186
+ #### hateoffensive
187
+ | label | hypothesis |
188
+ |:------------|:------------------------------------------------------------------------|
189
+ | hate_speech | This example tweet contains hate speech. |
190
+ | neither | This example tweet contains neither offensive language nor hate speech. |
191
+ | offensive | This example tweet contains offensive language without hate speech. |
192
+ #### hatexplain
193
+ | label | hypothesis |
194
+ |:------------|:-------------------------------------------------------------------------------------------|
195
+ | hate_speech | This example text from twitter or gab contains hate speech. |
196
+ | neither | This example text from twitter or gab contains neither offensive language nor hate speech. |
197
+ | offensive | This example text from twitter or gab contains offensive language without hate speech. |
198
+ #### spam
199
+ | label | hypothesis |
200
+ |:---------|:------------------------------|
201
+ | not_spam | This example sms is not spam. |
202
+ | spam | This example sms is spam. |
203
+ #### emotiondair
204
+ | label | hypothesis |
205
+ |:---------|:---------------------------------------------------|
206
+ | anger | This example tweet expresses the emotion: anger |
207
+ | fear | This example tweet expresses the emotion: fear |
208
+ | joy | This example tweet expresses the emotion: joy |
209
+ | love | This example tweet expresses the emotion: love |
210
+ | sadness | This example tweet expresses the emotion: sadness |
211
+ | surprise | This example tweet expresses the emotion: surprise |
212
+ #### emocontext
213
+ | label | hypothesis |
214
+ |:--------|:--------------------------------------------------------------------------------------|
215
+ | angry | This example tweet expresses the emotion: anger |
216
+ | happy | This example tweet expresses the emotion: happiness |
217
+ | others | This example tweet does not express any of the emotions: anger, sadness, or happiness |
218
+ | sad | This example tweet expresses the emotion: sadness |
219
+ #### empathetic
220
+ | label | hypothesis |
221
+ |:-------------|:-----------------------------------------------------------|
222
+ | afraid | The main emotion of this example dialogue is: afraid |
223
+ | angry | The main emotion of this example dialogue is: angry |
224
+ | annoyed | The main emotion of this example dialogue is: annoyed |
225
+ | anticipating | The main emotion of this example dialogue is: anticipating |
226
+ | anxious | The main emotion of this example dialogue is: anxious |
227
+ | apprehensive | The main emotion of this example dialogue is: apprehensive |
228
+ | ashamed | The main emotion of this example dialogue is: ashamed |
229
+ | caring | The main emotion of this example dialogue is: caring |
230
+ | confident | The main emotion of this example dialogue is: confident |
231
+ | content | The main emotion of this example dialogue is: content |
232
+ | devastated | The main emotion of this example dialogue is: devastated |
233
+ | disappointed | The main emotion of this example dialogue is: disappointed |
234
+ | disgusted | The main emotion of this example dialogue is: disgusted |
235
+ | embarrassed | The main emotion of this example dialogue is: embarrassed |
236
+ | excited | The main emotion of this example dialogue is: excited |
237
+ | faithful | The main emotion of this example dialogue is: faithful |
238
+ | furious | The main emotion of this example dialogue is: furious |
239
+ | grateful | The main emotion of this example dialogue is: grateful |
240
+ | guilty | The main emotion of this example dialogue is: guilty |
241
+ | hopeful | The main emotion of this example dialogue is: hopeful |
242
+ | impressed | The main emotion of this example dialogue is: impressed |
243
+ | jealous | The main emotion of this example dialogue is: jealous |
244
+ | joyful | The main emotion of this example dialogue is: joyful |
245
+ | lonely | The main emotion of this example dialogue is: lonely |
246
+ | nostalgic | The main emotion of this example dialogue is: nostalgic |
247
+ | prepared | The main emotion of this example dialogue is: prepared |
248
+ | proud | The main emotion of this example dialogue is: proud |
249
+ | sad | The main emotion of this example dialogue is: sad |
250
+ | sentimental | The main emotion of this example dialogue is: sentimental |
251
+ | surprised | The main emotion of this example dialogue is: surprised |
252
+ | terrified | The main emotion of this example dialogue is: terrified |
253
+ | trusting | The main emotion of this example dialogue is: trusting |
254
+ #### agnews
255
+ | label | hypothesis |
256
+ |:---------|:-------------------------------------------------------|
257
+ | Business | This example news text is about business news |
258
+ | Sci/Tech | This example news text is about science and technology |
259
+ | Sports | This example news text is about sports |
260
+ | World | This example news text is about world news |
261
+ #### yahootopics
262
+ | label | hypothesis |
263
+ |:-----------------------|:---------------------------------------------------------------------------------------------------|
264
+ | Business & Finance | This example question from the Yahoo Q&A forum is categorized in the topic: Business & Finance |
265
+ | Computers & Internet | This example question from the Yahoo Q&A forum is categorized in the topic: Computers & Internet |
266
+ | Education & Reference | This example question from the Yahoo Q&A forum is categorized in the topic: Education & Reference |
267
+ | Entertainment & Music | This example question from the Yahoo Q&A forum is categorized in the topic: Entertainment & Music |
268
+ | Family & Relationships | This example question from the Yahoo Q&A forum is categorized in the topic: Family & Relationships |
269
+ | Health | This example question from the Yahoo Q&A forum is categorized in the topic: Health |
270
+ | Politics & Government | This example question from the Yahoo Q&A forum is categorized in the topic: Politics & Government |
271
+ | Science & Mathematics | This example question from the Yahoo Q&A forum is categorized in the topic: Science & Mathematics |
272
+ | Society & Culture | This example question from the Yahoo Q&A forum is categorized in the topic: Society & Culture |
273
+ | Sports | This example question from the Yahoo Q&A forum is categorized in the topic: Sports |
274
+ #### massive
275
+ | label | hypothesis |
276
+ |:-------------------------|:------------------------------------------------------------------------------------------|
277
+ | alarm_query | The example utterance is a query about alarms. |
278
+ | alarm_remove | The intent of this example utterance is to remove an alarm. |
279
+ | alarm_set | The intent of the example utterance is to set an alarm. |
280
+ | audio_volume_down | The intent of the example utterance is to lower the volume. |
281
+ | audio_volume_mute | The intent of this example utterance is to mute the volume. |
282
+ | audio_volume_other | The example utterance is related to audio volume. |
283
+ | audio_volume_up | The intent of this example utterance is turning the audio volume up. |
284
+ | calendar_query | The example utterance is a query about a calendar. |
285
+ | calendar_remove | The intent of the example utterance is to remove something from a calendar. |
286
+ | calendar_set | The intent of this example utterance is to set something in a calendar. |
287
+ | cooking_query | The example utterance is a query about cooking. |
288
+ | cooking_recipe | This example utterance is about cooking recipies. |
289
+ | datetime_convert | The example utterance is related to date time changes or conversion. |
290
+ | datetime_query | The intent of this example utterance is a datetime query. |
291
+ | email_addcontact | The intent of this example utterance is adding an email address to contacts. |
292
+ | email_query | The example utterance is a query about emails. |
293
+ | email_querycontact | The intent of this example utterance is to query contact details. |
294
+ | email_sendemail | The intent of the example utterance is to send an email. |
295
+ | general_greet | This example utterance is a general greet. |
296
+ | general_joke | The intent of the example utterance is to hear a joke. |
297
+ | general_quirky | nan |
298
+ | iot_cleaning | The intent of the example utterance is for an IoT device to start cleaning. |
299
+ | iot_coffee | The intent of this example utterance is for an IoT device to make coffee. |
300
+ | iot_hue_lightchange | The intent of this example utterance is changing the light. |
301
+ | iot_hue_lightdim | The intent of the example utterance is to dim the lights. |
302
+ | iot_hue_lightoff | The example utterance is related to turning the lights off. |
303
+ | iot_hue_lighton | The example utterance is related to turning the lights on. |
304
+ | iot_hue_lightup | The intent of this example utterance is to brighten lights. |
305
+ | iot_wemo_off | The intent of this example utterance is turning an IoT device off. |
306
+ | iot_wemo_on | The intent of the example utterance is to turn an IoT device on. |
307
+ | lists_createoradd | The example utterance is related to creating or adding to lists. |
308
+ | lists_query | The example utterance is a query about a list. |
309
+ | lists_remove | The intent of this example utterance is to remove a list or remove something from a list. |
310
+ | music_dislikeness | The intent of this example utterance is signalling music dislike. |
311
+ | music_likeness | The example utterance is related to liking music. |
312
+ | music_query | The example utterance is a query about music. |
313
+ | music_settings | The intent of the example utterance is to change music settings. |
314
+ | news_query | The example utterance is a query about the news. |
315
+ | play_audiobook | The example utterance is related to playing audiobooks. |
316
+ | play_game | The intent of this example utterance is to start playing a game. |
317
+ | play_music | The intent of this example utterance is for an IoT device to play music. |
318
+ | play_podcasts | The example utterance is related to playing podcasts. |
319
+ | play_radio | The intent of the example utterance is to play something on the radio. |
320
+ | qa_currency | This example utteranceis about currencies. |
321
+ | qa_definition | The example utterance is a query about a definition. |
322
+ | qa_factoid | The example utterance is a factoid question. |
323
+ | qa_maths | The example utterance is a question about maths. |
324
+ | qa_stock | This example utterance is about stocks. |
325
+ | recommendation_events | This example utterance is about event recommendations. |
326
+ | recommendation_locations | The intent of this example utterance is receiving recommendations for good locations. |
327
+ | recommendation_movies | This example utterance is about movie recommendations. |
328
+ | social_post | The example utterance is about social media posts. |
329
+ | social_query | The example utterance is a query about a social network. |
330
+ | takeaway_order | The intent of this example utterance is to order takeaway food. |
331
+ | takeaway_query | This example utterance is about takeaway food. |
332
+ | transport_query | The example utterance is a query about transport or travels. |
333
+ | transport_taxi | The intent of this example utterance is to get a taxi. |
334
+ | transport_ticket | This example utterance is about transport tickets. |
335
+ | transport_traffic | This example utterance is about transport or traffic. |
336
+ | weather_query | This example utterance is a query about the wheather. |
337
+ #### banking77
338
+ | label | hypothesis |
339
+ |:-------------------------------------------------|:----------------------------------------------------------------------------------------------------------|
340
+ | Refund_not_showing_up | This customer example message is about a refund not showing up. |
341
+ | activate_my_card | This banking customer example message is about activating a card. |
342
+ | age_limit | This banking customer example message is related to age limits. |
343
+ | apple_pay_or_google_pay | This banking customer example message is about apple pay or google pay |
344
+ | atm_support | This banking customer example message requests ATM support. |
345
+ | automatic_top_up | This banking customer example message is about automatic top up. |
346
+ | balance_not_updated_after_bank_transfer | This banking customer example message is about a balance not updated after a transfer. |
347
+ | balance_not_updated_after_cheque_or_cash_deposit | This banking customer example message is about a balance not updated after a cheque or cash deposit. |
348
+ | beneficiary_not_allowed | This banking customer example message is related to a beneficiary not being allowed or a failed transfer. |
349
+ | cancel_transfer | This banking customer example message is related to the cancellation of a transfer. |
350
+ | card_about_to_expire | This banking customer example message is related to the expiration of a card. |
351
+ | card_acceptance | This banking customer example message is related to the scope of acceptance of a card. |
352
+ | card_arrival | This banking customer example message is about the arrival of a card. |
353
+ | card_delivery_estimate | This banking customer example message is about a card delivery estimate or timing. |
354
+ | card_linking | nan |
355
+ | card_not_working | This banking customer example message is about a card not working. |
356
+ | card_payment_fee_charged | This banking customer example message is about a card payment fee. |
357
+ | card_payment_not_recognised | This banking customer example message is about a payment the customer does not recognise. |
358
+ | card_payment_wrong_exchange_rate | This banking customer example message is about a wrong exchange rate. |
359
+ | card_swallowed | This banking customer example message is about a card swallowed by a machine. |
360
+ | cash_withdrawal_charge | This banking customer example message is about a cash withdrawal charge. |
361
+ | cash_withdrawal_not_recognised | This banking customer example message is about an unrecognised cash withdrawal. |
362
+ | change_pin | This banking customer example message is about changing a pin code. |
363
+ | compromised_card | This banking customer example message is about a compromised card. |
364
+ | contactless_not_working | This banking customer example message is about contactless not working |
365
+ | country_support | This banking customer example message is about country-specific support. |
366
+ | declined_card_payment | This banking customer example message is about a declined card payment. |
367
+ | declined_cash_withdrawal | This banking customer example message is about a declined cash withdrawal. |
368
+ | declined_transfer | This banking customer example message is about a declined transfer. |
369
+ | direct_debit_payment_not_recognised | This banking customer example message is about an unrecognised direct debit payment. |
370
+ | disposable_card_limits | This banking customer example message is about the limits of disposable cards. |
371
+ | edit_personal_details | This banking customer example message is about editing personal details. |
372
+ | exchange_charge | This banking customer example message is about exchange rate charges. |
373
+ | exchange_rate | This banking customer example message is about exchange rates. |
374
+ | exchange_via_app | nan |
375
+ | extra_charge_on_statement | This banking customer example message is about an extra charge. |
376
+ | failed_transfer | This banking customer example message is about a failed transfer. |
377
+ | fiat_currency_support | This banking customer example message is about fiat currency support |
378
+ | get_disposable_virtual_card | This banking customer example message is about getting a disposable virtual card. |
379
+ | get_physical_card | nan |
380
+ | getting_spare_card | This banking customer example message is about getting a spare card. |
381
+ | getting_virtual_card | This banking customer example message is about getting a virtual card. |
382
+ | lost_or_stolen_card | This banking customer example message is about a lost or stolen card. |
383
+ | lost_or_stolen_phone | This banking customer example message is about a lost or stolen phone. |
384
+ | order_physical_card | This banking customer example message is about ordering a card. |
385
+ | passcode_forgotten | This banking customer example message is about a forgotten passcode. |
386
+ | pending_card_payment | This banking customer example message is about a pending card payment. |
387
+ | pending_cash_withdrawal | This banking customer example message is about a pending cash withdrawal. |
388
+ | pending_top_up | This banking customer example message is about a pending top up. |
389
+ | pending_transfer | This banking customer example message is about a pending transfer. |
390
+ | pin_blocked | This banking customer example message is about a blocked pin. |
391
+ | receiving_money | This banking customer example message is about receiving money. |
392
+ | request_refund | This banking customer example message is about a refund request. |
393
+ | reverted_card_payment? | This banking customer example message is about reverting a card payment. |
394
+ | supported_cards_and_currencies | nan |
395
+ | terminate_account | This banking customer example message is about terminating an account. |
396
+ | top_up_by_bank_transfer_charge | nan |
397
+ | top_up_by_card_charge | This banking customer example message is about the charge for topping up by card. |
398
+ | top_up_by_cash_or_cheque | This banking customer example message is about topping up by cash or cheque. |
399
+ | top_up_failed | This banking customer example message is about top up issues or failures. |
400
+ | top_up_limits | This banking customer example message is about top up limitations. |
401
+ | top_up_reverted | This banking customer example message is about issues with topping up. |
402
+ | topping_up_by_card | This banking customer example message is about topping up by card. |
403
+ | transaction_charged_twice | This banking customer example message is about a transaction charged twice. |
404
+ | transfer_fee_charged | This banking customer example message is about an issue with a transfer fee charge. |
405
+ | transfer_into_account | This banking customer example message is about transfers into the customer's own account. |
406
+ | transfer_not_received_by_recipient | This banking customer example message is about a transfer that has not arrived yet. |
407
+ | transfer_timing | This banking customer example message is about transfer timing. |
408
+ | unable_to_verify_identity | This banking customer example message is about an issue with identity verification. |
409
+ | verify_my_identity | This banking customer example message is about identity verification. |
410
+ | verify_source_of_funds | This banking customer example message is about the source of funds. |
411
+ | verify_top_up | This banking customer example message is about verification and top ups |
412
+ | virtual_card_not_working | This banking customer example message is about a virtual card not working |
413
+ | visa_or_mastercard | This banking customer example message is about types of bank cards. |
414
+ | why_verify_identity | This banking customer example message questions why identity verification is necessary. |
415
+ | wrong_amount_of_cash_received | This banking customer example message is about a wrong amount of cash received. |
416
+ | wrong_exchange_rate_for_cash_withdrawal | This banking customer example message is about a wrong exchange rate for a cash withdrawal. |
417
+ #### trueteacher
418
+ | label | hypothesis |
419
+ |:-----------------------|:---------------------------------------------------------------------|
420
+ | factually_consistent | The example summary is factually consistent with the full article. |
421
+ | factually_inconsistent | The example summary is factually inconsistent with the full article. |
422
+ #### capsotu
423
+ | label | hypothesis |
424
+ |:----------------------|:----------------------------------------------------------------------------------------------------------|
425
+ | Agriculture | This example text from a US presidential speech is about agriculture |
426
+ | Civil Rights | This example text from a US presidential speech is about civil rights or minorities or civil liberties |
427
+ | Culture | This example text from a US presidential speech is about cultural policy |
428
+ | Defense | This example text from a US presidential speech is about defense or military |
429
+ | Domestic Commerce | This example text from a US presidential speech is about banking or finance or commerce |
430
+ | Education | This example text from a US presidential speech is about education |
431
+ | Energy | This example text from a US presidential speech is about energy or electricity or fossil fuels |
432
+ | Environment | This example text from a US presidential speech is about the environment or water or waste or pollution |
433
+ | Foreign Trade | This example text from a US presidential speech is about foreign trade |
434
+ | Government Operations | This example text from a US presidential speech is about government operations or administration |
435
+ | Health | This example text from a US presidential speech is about health |
436
+ | Housing | This example text from a US presidential speech is about community development or housing issues |
437
+ | Immigration | This example text from a US presidential speech is about migration |
438
+ | International Affairs | This example text from a US presidential speech is about international affairs or foreign aid |
439
+ | Labor | This example text from a US presidential speech is about employment or labour |
440
+ | Law and Crime | This example text from a US presidential speech is about law, crime or family issues |
441
+ | Macroeconomics | This example text from a US presidential speech is about macroeconomics |
442
+ | Public Lands | This example text from a US presidential speech is about public lands or water management |
443
+ | Social Welfare | This example text from a US presidential speech is about social welfare |
444
+ | Technology | This example text from a US presidential speech is about space or science or technology or communications |
445
+ | Transportation | This example text from a US presidential speech is about transportation |
446
+ #### manifesto
447
+ | label | hypothesis |
448
+ |:-------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
449
+ | Agriculture and Farmers: Positive | This example text from a political party manifesto is positive towards policies for agriculture and farmers |
450
+ | Anti-Growth Economy: Positive | This example text from a political party manifesto is in favour of anti-growth politics |
451
+ | Anti-Imperialism | This example text from a political party manifesto is anti-imperialistic, for example against controlling other countries and for greater self-government of colonies |
452
+ | Centralisation | This example text from a political party manifesto is in favour of political centralisation |
453
+ | Civic Mindedness: Positive | This example text from a political party manifesto is positive towards national solidarity, civil society or appeals for public spiritedness or against anti-social attitudes |
454
+ | Constitutionalism: Negative | This example text from a political party manifesto is positive towards constitutionalism |
455
+ | Constitutionalism: Positive | This example text from a political party manifesto is positive towards constitutionalism and the status quo of the constitution |
456
+ | Controlled Economy | This example text from a political party manifesto is supportive of direct government control of the economy, e.g. price control or minimum wages |
457
+ | Corporatism/Mixed Economy | This example text from a political party manifesto is positive towards cooperation of government, employers, and trade unions simultaneously |
458
+ | Culture: Positive | This example text from a political party manifesto is in favour of cultural policies or leisure facilities, for example museus, libraries or public sport clubs |
459
+ | Decentralization | This example text from a political party manifesto is for decentralisation or federalism |
460
+ | Democracy | This example text from a political party manifesto favourably mentions democracy or democratic procedures or institutions |
461
+ | Economic Goals | This example text from a political party manifesto is a broad/general statement on economic goals without specifics |
462
+ | Economic Growth: Positive | This example text from a political party manifesto is supportive of economic growth, for example facilitation of more production or government aid for growth |
463
+ | Economic Orthodoxy | This example text from a political party manifesto is for economic orthodoxy, for example reduction of budget deficits, thrift or a strong currency |
464
+ | Economic Planning | This example text from a political party manifesto is positive towards government economic planning, e.g. policy plans or strategies |
465
+ | Education Expansion | This example text from a political party manifesto is about the need to expand/improve policy on education |
466
+ | Education Limitation | This example text from a political party manifesto is sceptical towards state expenditure on education, for example in favour of study fees or private schools |
467
+ | Environmental Protection | This example text from a political party manifesto is in favour of environmental protection, e.g. fighting climate change or 'green' policies or preservation of natural resources or animal rights |
468
+ | Equality: Positive | This example text from a political party manifesto is positive towards equality or social justice, e.g. protection of underprivileged groups or fair distribution of resources |
469
+ | European Community/Union: Negative | This example text from a political party manifesto negatively mentions the EU or European Community |
470
+ | European Community/Union: Positive | This example text from a political party manifesto is positive towards the EU or European Community, for example EU expansion and integration |
471
+ | Foreign Special Relationships: Negative | This example text from a political party manifesto is negative towards particular countries |
472
+ | Foreign Special Relationships: Positive | This example text from a political party manifesto is positive towards particular countries |
473
+ | Free Market Economy | This example text from a political party manifesto is in favour of a free market economy and capitalism |
474
+ | Freedom and Human Rights | This example text from a political party manifesto is in favour of freedom and human rights, for example freedom of speech, assembly or against state coercion or for individualism |
475
+ | Governmental and Administrative Efficiency | This example text from a political party manifesto is in favour of efficiency in government/administration, for example by restructuring civil service or improving bureaucracy |
476
+ | Incentives: Positive | This example text from a political party manifesto is favourable towards supply side economic policies supporting businesses, for example for incentives like subsidies or tax breaks |
477
+ | Internationalism: Negative | This example text from a political party manifesto is sceptical of internationalism, for example negative towards international cooperation, in favour of national sovereignty and unilaterialism |
478
+ | Internationalism: Positive | This example text from a political party manifesto is in favour of international cooperation with other countries, for example mentions the need for aid to developing countries, or global governance |
479
+ | Keynesian Demand Management | This example text from a political party manifesto is for keynesian demand management and demand side economic policies |
480
+ | Labour Groups: Negative | This example text from a political party manifesto is negative towards labour groups and unions |
481
+ | Labour Groups: Positive | This example text from a political party manifesto is positive towards labour groups, for example for good working conditions, fair wages or unions |
482
+ | Law and Order: Positive | This example text from a political party manifesto is positive towards law and order and strict law enforcement |
483
+ | Market Regulation | This example text from a political party manifesto is supports market regulation for a fair and open market, for example for consumer protection or for increased competition or for social market economy |
484
+ | Marxist Analysis | This example text from a political party manifesto is positive towards Marxist-Leninist ideas or uses specific Marxist terminology |
485
+ | Middle Class and Professional Groups | This example text from a political party manifesto favourably references the middle class, e.g. white colar groups or the service sector |
486
+ | Military: Negative | This example text from a political party manifesto is negative towards the military, for example for decreasing military spending or disarmament |
487
+ | Military: Positive | This example text from a political party manifesto is positive towards the military, for example for military spending or rearmament or military treaty obligations |
488
+ | Multiculturalism: Negative | This example text from a political party manifesto is sceptical towards multiculturalism, or for cultural integration or appeals to cultural homogeneity in society |
489
+ | Multiculturalism: Positive | This example text from a political party manifesto favourably mentions cultural diversity, for example for freedom of religion or linguistic heritages |
490
+ | National Way of Life: Negative | This example text from a political party manifesto unfavourably mentions a country's nation and history, for example sceptical towards patriotism or national pride |
491
+ | National Way of Life: Positive | This example text from a political party manifesto is positive towards the national way of life and history, for example pride of citizenship or appeals to patriotism |
492
+ | Nationalisation | This example text from a political party manifesto is positive towards government ownership of industries or land or for economic nationalisation |
493
+ | Non-economic Demographic Groups | This example text from a political party manifesto favourably mentions non-economic demographic groups like women, students or specific age groups |
494
+ | Peace | This example text from a political party manifesto is positive towards peace and peaceful means of solving crises, for example in favour of negotiations and ending wars |
495
+ | Political Authority | This example text from a political party manifesto mentions the speaker's competence to govern or other party's lack of such competence, or favourably mentions a strong/stable government |
496
+ | Political Corruption | This example text from a political party manifesto is negative towards political corruption or abuse of political/bureaucratic power |
497
+ | Protectionism: Negative | This example text from a political party manifesto is negative towards protectionism, in favour of free trade |
498
+ | Protectionism: Positive | This example text from a political party manifesto is in favour of protectionism, for example tariffs, export subsidies |
499
+ | Technology and Infrastructure: Positive | This example text from a political party manifesto is about technology and infrastructure, e.g. the importance of modernisation of industry, or supportive of public spending on infrastructure/tech |
500
+ | Traditional Morality: Negative | This example text from a political party manifesto is negative towards traditional morality, for example against religious moral values, for divorce or abortion, for modern families or separation of church and state |
501
+ | Traditional Morality: Positive | This example text from a political party manifesto is favourable towards traditional or religious values, for example for censorship of immoral behavour, for traditional family values or religious institutions |
502
+ | Underprivileged Minority Groups | This example text from a political party manifesto favourably mentions underprivileged minorities, for example handicapped, homosexuals or immigrants |
503
+ | Welfare State Expansion | This example text from a political party manifesto is positive towards the welfare state, e.g. health care, pensions or social housing |
504
+ | Welfare State Limitation | This example text from a political party manifesto is for limiting the welfare state, for example public funding for social services or social security, e.g. private care before state care |