Jyshen commited on
Commit
3a5f2fc
·
verified ·
1 Parent(s): 024c9e8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -20
README.md CHANGED
@@ -1,20 +1,39 @@
1
- ---
2
- license: apache-2.0
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- dataset_info:
9
- features:
10
- - name: id
11
- dtype: int64
12
- - name: text
13
- dtype: string
14
- splits:
15
- - name: train
16
- num_bytes: 337411
17
- num_examples: 250
18
- download_size: 187060
19
- dataset_size: 337411
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.