forked from FakeNewsChallenge/fnc-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Delip Rao
committed
Feb 1, 2017
0 parents
commit b1adacc
Showing
3 changed files
with
87,723 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Stance Detection dataset for FNC-1 | ||
|
||
For details of the task, see [FakeNewsChallenge.org](http://fakenewschallenge.org) | ||
|
||
|
||
The data provided is `(headline, body, stance)` instances, where `stance` is one of `{unrelated, discuss, agree, disagree}`. The dataset is provided as two CSVs: | ||
|
||
|
||
### `train_bodies.csv` | ||
|
||
This file contains the body text of articles (the `articleBody` column) with corresponding IDs (`Body ID`) | ||
|
||
### `train_stances.csv` | ||
|
||
This file contains the labeled stances (the `Stance` column) for pairs of article headlines (`Headline`) and article bodies (`Body ID`, referring to entries in `train_bodies.csv`). | ||
|
||
### Distribution of the data | ||
|
||
The distribution of `Stance` classes in `train_stances.csv` is as follows: | ||
|
||
| rows | unrelated | discuss | agree | disagree | | ||
|-------:|------------:|----------:|----------:|-----------:| | ||
| 49972 | 0.73131 | 0.17828 | 0.0736012 | 0.0168094 | |
Oops, something went wrong.