Update README.md
Browse files
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",
|
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
|
35 |
-
- Available
|
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).
|