Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Assertiveness Corpus
|
| 2 |
|
| 3 |
## Description
|
|
@@ -8,38 +21,30 @@ A compiled dataset of 6000 texts from multiple sources, scored using SciBert for
|
|
| 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 |
-
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- "en"
|
| 4 |
+
pretty_name: "Assertiveness Corpus"
|
| 5 |
+
tags:
|
| 6 |
+
- assertiveness
|
| 7 |
+
- sentiment-analysis
|
| 8 |
+
- NLP
|
| 9 |
+
license: "mit"
|
| 10 |
+
task_categories:
|
| 11 |
+
- text-classification
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
# Assertiveness Corpus
|
| 15 |
|
| 16 |
## Description
|
|
|
|
| 21 |
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.
|
| 22 |
|
| 23 |
2. User level comments from change my view subreddit.
|
|
|
|
| 24 |
|
| 25 |
3. AG news dataset.
|
|
|
|
| 26 |
```python
|
| 27 |
from datasets import load_dataset
|
| 28 |
ds = load_dataset("fancyzhx/ag_news")
|
| 29 |
```
|
|
|
|
| 30 |
https://huggingface.co/datasets/fancyzhx/ag_news
|
| 31 |
|
| 32 |
4. PeS2o dataset.
|
|
|
|
| 33 |
https://huggingface.co/datasets/allenai/peS2o
|
| 34 |
|
| 35 |
5. Human annotated assertiveness data from the survey.
|
|
|
|
| 36 |
To be added to the data later
|
| 37 |
|
| 38 |
6. Bioscope corpus.
|
|
|
|
| 39 |
|
| 40 |
7. Anthropic's article corpus for persuasiveness analysis.
|
|
|
|
| 41 |
```python
|
| 42 |
from datasets import load_dataset
|
| 43 |
# Loading the data
|
| 44 |
dataset = load_dataset("Anthropic/persuasion")
|
| 45 |
```
|
|
|
|
| 46 |
https://huggingface.co/datasets/Anthropic/persuasion
|
| 47 |
|
| 48 |
## Citation
|
| 49 |
|
| 50 |
+
To be done
|