torch-forum / README.md
foldl's picture
Upload README.md with huggingface_hub
316300d
|
raw
history blame
879 Bytes
metadata
dataset_info:
  features:
    - name: title
      dtype: string
    - name: category
      dtype: string
    - name: posts
      list:
        - name: contents
          dtype: string
        - name: isAccepted
          dtype: bool
        - name: likes
          dtype: int64
        - name: poster
          dtype: string
    - name: answered
      dtype: bool
  splits:
    - name: train
      num_bytes: 992843
      num_examples: 423
  download_size: 473393
  dataset_size: 992843
license: cc-by-sa-4.0
task_categories:
  - question-answering
  - text-classification
  - text-generation
language:
  - en
tags:
  - code
pretty_name: Pytorch Forums Parsed
size_categories:
  - 1K<n<10K

Dataset Card for "torch-forum"

Dataset structure

{
    title:str
    category:str,
    posts:List[{
                poster:str,
                contents:str,
                likes:int,
                isAccepted:bool
               }]
}