Datasets:

Modalities:
Text
Formats:
json
License:
yingjialin commited on
Commit
fd316cc
·
verified ·
1 Parent(s): d45ec0a

doc: update README

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -35,6 +35,25 @@ This repository contains the dataset for our AAAI 2024 paper, "CFEVER: A Chinese
35
  ## Leaderboard website
36
  Please visit https://ikmlab.github.io/CFEVER to check the leaderboard of CFEVER.
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  ## Repository structure
39
  ```
40
  CFEVER-data
 
35
  ## Leaderboard website
36
  Please visit https://ikmlab.github.io/CFEVER to check the leaderboard of CFEVER.
37
 
38
+ ## How to Load CFEVER
39
+ ```python
40
+ from datasets import load_dataset
41
+
42
+ # Get ready data ["train", "dev", "test"]
43
+ ds = load_dataset("IKMLab-team/cfever")
44
+
45
+ # Get separted data by:
46
+ train, dev, test = ds["train"], ds["dev"], ds["test"]
47
+
48
+ # If you only want a part of data
49
+ train = load_dataset("IKMLab-team/cfever", name="train")["train"]
50
+ # or
51
+ train = load_dataset("IKMLab-team/cfever", split="train")
52
+
53
+ # wiki page data:
54
+ wiki_pages = load_dataset("IKMLab-team/cfever", name="wiki_pages")["plain"]
55
+ ```
56
+
57
  ## Repository structure
58
  ```
59
  CFEVER-data