Update README.md
Browse files
README.md
CHANGED
@@ -22,4 +22,17 @@ The AG's news topic classification dataset is constructed by choosing 4 largest
|
|
22 |
|
23 |
The file classes.txt contains a list of classes corresponding to each label.
|
24 |
|
25 |
-
The files train.csv and test.csv contain all the training samples as comma-sparated values. There are 3 columns in them, corresponding to class index (1 to 4), title and description. The title and description are escaped using double quotes ("), and any internal double quote is escaped by 2 double quotes (""). New lines are escaped by a backslash followed with an "n" character, that is "\n".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
The file classes.txt contains a list of classes corresponding to each label.
|
24 |
|
25 |
+
The files train.csv and test.csv contain all the training samples as comma-sparated values. There are 3 columns in them, corresponding to class index (1 to 4), title and description. The title and description are escaped using double quotes ("), and any internal double quote is escaped by 2 double quotes (""). New lines are escaped by a backslash followed with an "n" character, that is "\n".
|
26 |
+
|
27 |
+
|
28 |
+
CLASS NAME INFORMATION
|
29 |
+
|
30 |
+
1: World
|
31 |
+
2: Sports
|
32 |
+
3: Business
|
33 |
+
4: Sci/Tech
|
34 |
+
|
35 |
+
|
36 |
+
JSONL FORMAT
|
37 |
+
|
38 |
+
Instead of preserving csv format, I change the format to jsonl, which doesn't consider complicated rule about doublequote and escaping.
|