iamgroot42 commited on
Commit
55f6cce
·
verified ·
1 Parent(s): bd6fe76

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -27,12 +27,12 @@ To load the dataset:
27
  ```python
28
  from datasets import load_dataset
29
 
30
- dataset = load_dataset("iamgroot42/mimir", name="arxiv", split=f"member")
31
  ```
32
 
33
  - Available Names: `arxiv`, `dm_mathematics`, `github`, `hackernews`, `pile_cc`, `pubmed_central`, `wikipedia_(en)`, `full_pile`, `c4`, `temporal_arxiv`, `temporal_wiki`
34
- - Available Subsets: `ngram_7_0.2`, `ngram_13_0.2`, `ngram_13_0.8` (for most sources)
35
- - Available Splits: `member`, `nonmember`, `member_neighbors`, `nonmember_neighbors`
36
 
37
  ## 🛠️ Codebase
38
  For evaluating MIA methods on our datasets, visit our [GitHub repository](http://github.com/iamgroot42/mimir).
 
27
  ```python
28
  from datasets import load_dataset
29
 
30
+ dataset = load_dataset("iamgroot42/mimir", "pile_cc", split="ngram_7_0.2")
31
  ```
32
 
33
  - Available Names: `arxiv`, `dm_mathematics`, `github`, `hackernews`, `pile_cc`, `pubmed_central`, `wikipedia_(en)`, `full_pile`, `c4`, `temporal_arxiv`, `temporal_wiki`
34
+ - Available Splits: `ngram_7_0.2`, `ngram_13_0.2`, `ngram_13_0.8` (for most sources), 'none' (for other sources)
35
+ - Available Features: `member` (str), `nonmember` (str), `member_neighbors` (List[str]), `nonmember_neighbors` (List[str])
36
 
37
  ## 🛠️ Codebase
38
  For evaluating MIA methods on our datasets, visit our [GitHub repository](http://github.com/iamgroot42/mimir).