foldl commited on
Commit
e2010a3
·
1 Parent(s): da8bd03

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -26,4 +26,16 @@ dataset_info:
26
  ---
27
  # Dataset Card for "torch-forum"
28
 
29
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ---
27
  # Dataset Card for "torch-forum"
28
 
29
+ Dataset structure
30
+ ```
31
+ {
32
+ title:str
33
+ category:str,
34
+ posts:List[{
35
+ poster:str,
36
+ contents:str,
37
+ likes:int,
38
+ isAccepted:bool
39
+ }]
40
+ }
41
+ ```