drug-reviews / README.md
1T Conte
fix: ratings from 1-10 to 0-9
eb1ae63
|
raw
history blame
1.11 kB
metadata
language:
  - en
task_categories:
  - text-classification
dataset_info:
  - config_name: default
    features:
      - name: id
        dtype: int64
      - name: drugName
        dtype: string
      - name: condition
        dtype: string
      - name: review
        dtype: string
      - name: rating
        dtype:
          class_label:
            names:
              '0': 1
              '1': 2
              '2': 3
              '3': 4
              '4': 5
              '5': 6
              '6': 7
              '7': 8
              '8': 9
              '9': 10
  - config_name: sentiment
    features:
      - name: id
        dtype: int64
      - name: drugName
        dtype: string
      - name: condition
        dtype: string
      - name: review
        dtype: string
      - name: rating
        dtype:
          class_label:
            names:
              '0': negative
              '1': positive
configs:
  - config_name: default
    data_files:
      - split: complete
        path: complete.csv
      - split: train
        path: train.csv
      - split: test
        path: test.csv
    default: true
  - config_name: sentiment
    data_files:
      - split: complete
        path: positive_negative.csv
      - split: balanced
        path: positive_negative_balanced.csv