File size: 660 Bytes
20348cf
9c45f13
20348cf
 
 
 
 
 
 
 
 
 
 
 
1df0b1a
20348cf
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
language:
- ru
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
task_categories:
- text-classification
task_ids:
- sentiment-classification
---
### Dataset Summary
The dataset contains user reviews about restaurants.
In total it contains 47,139 reviews. A review tagged with the <em>general</em> sentiment and sentiments on 3 aspects: <em>food, interior, service</em>.
### Data Fields
Each sample contains the following fields:
- **review_id**;
- **general**;
- **food**;
- **interior**;
- **service**;
- **text** review text.
### Python
```python3
import pandas as pd
df = pd.read_json('restaurants_reviews.jsonl', lines=True)
df.sample(5)
```