blinoff commited on
Commit
5bb7dc2
1 Parent(s): ce244c9

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ languages:
3
+ - ru
4
+ multilinguality:
5
+ - monolingual
6
+ size_categories:
7
+ - 10K<n<100K
8
+ task_categories:
9
+ - text-classification
10
+ - sentiment-analysis
11
+ task_ids:
12
+ - sentiment-classification
13
+ ---
14
+ ### Dataset Summary
15
+ The dataset contains user reviews about medical institutions.
16
+
17
+ In total it contains 12,036 reviews. A review tagged with the <em>general</em> sentiment and sentiments on 5 aspects: <em>quality, service, equipment, food, location</em>.
18
+ ### Data Fields
19
+ Each sample contains the following fields:
20
+ - **review_id**;
21
+ - **content**: review text;
22
+ - **general**;
23
+ - **quality**;
24
+ - **service**;
25
+ - **equipment**;
26
+ - **food**;
27
+ - **location**.
28
+ ### Python
29
+ ```python3
30
+ import pandas as pd
31
+ df = pd.read_json('medical_institutions_reviews.jsonl', lines=True)
32
+ df.sample(5)
33
+ ```