blinoff commited on
Commit
1bf9479
1 Parent(s): 4f5532b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -4
README.md CHANGED
@@ -18,11 +18,24 @@ Kinopoisk movie reviews dataset (TOP250 & BOTTOM100 rank lists).
18
  In total it contains 36,591 reviews from July 2004 to November 2012.
19
 
20
  With following distribution along the 3-point sentiment scale:
21
- - Good 27,264
22
- - Bad 4,751
23
- - Neutral 4,576
24
 
25
- Load with python like:
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ```python3
27
  import pandas as pd
28
  df = pd.read_json('kinopoisk.jsonl', lines=True)
 
18
  In total it contains 36,591 reviews from July 2004 to November 2012.
19
 
20
  With following distribution along the 3-point sentiment scale:
21
+ - Good: 27,264;
22
+ - Bad: 4,751;
23
+ - Neutral: 4,576.
24
 
25
+ ### Data Fields
26
+
27
+ Each sample contains the following fields:
28
+ - **part**: rank list top250 or bottom100;
29
+ - **movie_name**;
30
+ - **review_id**;
31
+ - **author**: review author;
32
+ - **date**: date of a review;
33
+ - **title**: review title;
34
+ - **grade3**: sentiment score Good, Bad or Neutral;
35
+ - **grade10**: sentiment score on a 10-point scale parsed from text;
36
+ - **content**: review text.
37
+
38
+ ### Python:
39
  ```python3
40
  import pandas as pd
41
  df = pd.read_json('kinopoisk.jsonl', lines=True)