--- language: - ru multilinguality: - monolingual size_categories: - 10Kgeneral sentiment and sentiments on 3 aspects: food, interior, service. ### 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) ```