added a new section to the readme
Browse files
README.md
CHANGED
@@ -53,4 +53,7 @@ print(f'There are {len(dataset_df["category"].unique())} unique categories.')
|
|
53 |
|
54 |
# What is the highest vote a review received in the thumbs-up dataset?
|
55 |
print(f'The highest vote a review received is {max(dataset_df["votes"])}.')
|
56 |
-
```
|
|
|
|
|
|
|
|
53 |
|
54 |
# What is the highest vote a review received in the thumbs-up dataset?
|
55 |
print(f'The highest vote a review received is {max(dataset_df["votes"])}.')
|
56 |
+
```
|
57 |
+
|
58 |
+
## Usage
|
59 |
+
This dataset was used for training the PPrior, a novel framework proposed in [this paper](https://ieeexplore.ieee.org/abstract/document/10020586). You can find the implementation in this [GitHub repository](https://github.com/MultifacetedNLP/PPrior).
|