Dataset Viewer

The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider removing the loading script and relying on automated data support (you can use convert_to_parquet from the datasets library). If this is not possible, please open a discussion for direct help.

Dataset Summary

The dataset contains user reviews about medical institutions.

In total it contains 12,036 reviews. A review tagged with the general sentiment and sentiments on 5 aspects: quality, service, equipment, food, location.

Data Fields

Each sample contains the following fields:

  • review_id;
  • content: review text;
  • general;
  • quality;
  • service;
  • equipment;
  • food;
  • location.

Python

import pandas as pd
df = pd.read_json('medical_institutions_reviews.jsonl', lines=True)
df.sample(5)
Downloads last month
65