Shahradmz commited on
Commit
8665a20
1 Parent(s): 10b580b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Assertiveness Corpus
2
+
3
+ ## Description
4
+
5
+ A compiled dataset of 6000 texts from multiple sources, scored using SciBert for assertiveness.
6
+
7
+ ## Source
8
+ 1. Prompting llama 3 8B model to explain why a statement from the LIAR dataset is wrong or right. Explanation of the model and the assertiveness score rated by PEI’s model kept.
9
+
10
+ 2. User level comments from change my view subreddit.
11
+
12
+
13
+ 3. AG news dataset.
14
+
15
+ ```python
16
+ from datasets import load_dataset
17
+ ds = load_dataset("fancyzhx/ag_news")
18
+ ```
19
+
20
+ https://huggingface.co/datasets/fancyzhx/ag_news
21
+
22
+ 4. PeS2o dataset.
23
+
24
+ https://huggingface.co/datasets/allenai/peS2o
25
+
26
+ 5. Human annotated assertiveness data from the survey.
27
+
28
+ To be added to the data later
29
+
30
+ 6. Bioscope corpus.
31
+
32
+
33
+ 7. Anthropic's article corpus for persuasiveness analysis.
34
+
35
+ ```python
36
+ from datasets import load_dataset
37
+ # Loading the data
38
+ dataset = load_dataset("Anthropic/persuasion")
39
+ ```
40
+
41
+ https://huggingface.co/datasets/Anthropic/persuasion
42
+
43
+ ## Citation
44
+
45
+ To be done