torch-forum / README.md
foldl's picture
Update README.md
e2010a3
|
raw
history blame
684 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: 21369
      num_examples: 10
  download_size: 14748
  dataset_size: 21369

Dataset Card for "torch-forum"

Dataset structure

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