Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
json
Sub-tasks:
sentiment-classification
Languages:
Russian
Size:
10K - 100K
License:
Update kinopoisk.py
Browse files- kinopoisk.py +10 -1
kinopoisk.py
CHANGED
@@ -8,7 +8,16 @@ class Kinopoisk(datasets.GeneratorBasedBuilder):
|
|
8 |
return datasets.DatasetInfo(
|
9 |
description='Kinopoisk movie reviews dataset.',
|
10 |
features=datasets.Features(
|
11 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
),
|
13 |
supervised_keys=None,
|
14 |
homepage='',
|
|
|
8 |
return datasets.DatasetInfo(
|
9 |
description='Kinopoisk movie reviews dataset.',
|
10 |
features=datasets.Features(
|
11 |
+
{
|
12 |
+
"content": datasets.Value("string"),
|
13 |
+
"title": datasets.Value("string"),
|
14 |
+
"grade3": datasets.Value("string"),
|
15 |
+
"movie_name": datasets.Value("string"),
|
16 |
+
"part": datasets.Value("string"),
|
17 |
+
"review_id": datasets.Value("string"),
|
18 |
+
"author": datasets.Value("string"),
|
19 |
+
"date":datasets.Value("string")
|
20 |
+
}
|
21 |
),
|
22 |
supervised_keys=None,
|
23 |
homepage='',
|