drug-reviews / README.md
1T Conte
fix: renaming sentiment for polarity
170a949
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/10
              '1': 2/10
              '2': 3/10
              '3': 4/10
              '4': 5/10
              '5': 6/10
              '6': 7/10
              '7': 8/10
              '8': 9/10
              '9': 10/10
      - name: date
        dtype: string
      - name: usefulCount
        dtype: int64
  - config_name: polarity
    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
      - name: date
        dtype: string
      - name: usefulCount
        dtype: int64
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: polarity
    data_files:
      - split: complete
        path: positive_negative.csv
      - split: balanced
        path: positive_negative_balanced.csv