Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,20 +1,39 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license: cc-by-4.0
|
5 |
+
size_categories:
|
6 |
+
- n<1K
|
7 |
+
task_categories:
|
8 |
+
- text-generation
|
9 |
+
- text-classification
|
10 |
+
pretty_name: Review Text Dataset
|
11 |
+
tags:
|
12 |
+
- reviews
|
13 |
+
- text
|
14 |
+
---
|
15 |
+
|
16 |
+
# Review Text Dataset
|
17 |
+
|
18 |
+
## Dataset Description
|
19 |
+
|
20 |
+
This dataset contains review texts with simple ID indexing.
|
21 |
+
|
22 |
+
## Dataset Structure
|
23 |
+
|
24 |
+
### Data Fields
|
25 |
+
|
26 |
+
- `id`: Unique identifier (integer)
|
27 |
+
- `text`: Review text content
|
28 |
+
|
29 |
+
## Usage
|
30 |
+
|
31 |
+
```python
|
32 |
+
from datasets import load_dataset
|
33 |
+
|
34 |
+
dataset = load_dataset("your-username/review-texts")
|
35 |
+
```
|
36 |
+
|
37 |
+
## License
|
38 |
+
|
39 |
+
This dataset is released under the CC-BY-4.0 license.
|