| 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: 1540936 | |
| num_examples: 706 | |
| download_size: 734399 | |
| dataset_size: 1540936 | |
| 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 | |
| }] | |
| } | |
| ``` |