Datasets:
File size: 967 Bytes
e40c071 |
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
---
language:
- en
task_categories:
- text-classification
dataset_info:
- config_name: default
features:
- name: stars
dtype:
class_label:
names:
'0': 1 star
'1': 2 stars
'2': 3 stars
'3': 4 stars
'4': 5 stars
- name: date
dtype: string
- name: text
dtype: string
- name: useful
dtype: int16
- name: funny
dtype: int16
- name: cool
dtype: int16
- config_name: polarity
features:
- name: stars
dtype:
class_label:
names:
'0': negative
'1': positive
- name: date
dtype: string
- name: text
dtype: string
- name: useful
dtype: int16
- name: funny
dtype: int16
- name: cool
dtype: int16
configs:
- config_name: default
data_files:
- split: complete
path: "reviews.parquet"
default: true
- config_name: polarity
data_files:
- split: complete
path: "reviews_polarity.parquet"
--- |