BramVanroy commited on
Commit
2680fcd
·
verified ·
1 Parent(s): 5ceee6f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -200,9 +200,12 @@ I am very grateful to the Flemish Supercomputer to provide compute necessary to
200
  ```python
201
  from datasets import load_dataset
202
 
203
- # Everything -- massive, you will need streaming
204
  ds = load_dataset("BramVanroy/CommonCrawl-CreativeCommons", streaming=True)
205
 
 
 
 
206
  # Single dump, all languages -- large, you may need streaming on non-server hardware
207
  ds = load_dataset("BramVanroy/CommonCrawl-CreativeCommons", "CC-MAIN-2019-30")
208
 
 
200
  ```python
201
  from datasets import load_dataset
202
 
203
+ # Everything, most recent -- massive, you will need streaming
204
  ds = load_dataset("BramVanroy/CommonCrawl-CreativeCommons", streaming=True)
205
 
206
+ # v1 (2019-30, 2020-05, 2022-05, 2023-06, 2024-51, 2025-05, 2024-46)
207
+ ds = load_dataset("BramVanroy/CommonCrawl-CreativeCommons", "v1", streaming=True)
208
+
209
  # Single dump, all languages -- large, you may need streaming on non-server hardware
210
  ds = load_dataset("BramVanroy/CommonCrawl-CreativeCommons", "CC-MAIN-2019-30")
211