holylovenia commited on
Commit
e585b95
1 Parent(s): a59ac39

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +15 -15
README.md CHANGED
@@ -45,12 +45,12 @@ tags:
45
  ---
46
 
47
 
48
- SEA MADLAD is a subset of MADLAD-400 (Multilingual Audited Dataset: Low-resource And Document-level), which is a document-level multilingual dataset based on Common Crawl.
49
- SEA MADLAD only filters the language of the "clean" subset, which covers 36 languages indigenous to SEA from 419 languages in total.
50
- As a result, some of SEA lang codes aren't available in this version because those belongs to the languages whose decision was to "remove from its clean version" based on MADLAD auditing process.
51
- MADLAD uses all snapshots of CommonCrawl available as of August 1, 2022.
52
- The primary advantage of this dataset over similar datasets is that it is more multilingual, it is audited and more highly filtered, and it is document-level.
53
- The main disadvantage is also its strength -- being more filtered, it may lack the recall needed for some applications.
54
 
55
 
56
  ## Languages
@@ -60,25 +60,25 @@ ace, akb, ban, bbc, bew, btx, ceb, fil, gor, hil, iba, ilo, ind, jav, kac, khm,
60
  ## Supported Tasks
61
 
62
  Self Supervised Pretraining
63
-
64
  ## Dataset Usage
65
  ### Using `datasets` library
66
  ```
67
- from datasets import load_dataset
68
- dset = datasets.load_dataset("SEACrowd/sea_madlad", trust_remote_code=True)
69
  ```
70
  ### Using `seacrowd` library
71
  ```import seacrowd as sc
72
  # Load the dataset using the default config
73
- dset = sc.load_dataset("sea_madlad", schema="seacrowd")
74
  # Check all available subsets (config names) of the dataset
75
- print(sc.available_config_names("sea_madlad"))
76
  # Load the dataset using a specific config
77
- dset = sc.load_dataset_by_config_name(config_name="<config_name>")
78
  ```
79
-
80
- More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
81
-
82
 
83
  ## Dataset Homepage
84
 
 
45
  ---
46
 
47
 
48
+ SEA MADLAD is a subset of MADLAD-400 (Multilingual Audited Dataset: Low-resource And Document-level), which is a document-level multilingual dataset based on Common Crawl.
49
+ SEA MADLAD only filters the language of the "clean" subset, which covers 36 languages indigenous to SEA from 419 languages in total.
50
+ As a result, some of SEA lang codes aren't available in this version because those belongs to the languages whose decision was to "remove from its clean version" based on MADLAD auditing process.
51
+ MADLAD uses all snapshots of CommonCrawl available as of August 1, 2022.
52
+ The primary advantage of this dataset over similar datasets is that it is more multilingual, it is audited and more highly filtered, and it is document-level.
53
+ The main disadvantage is also its strength -- being more filtered, it may lack the recall needed for some applications.
54
 
55
 
56
  ## Languages
 
60
  ## Supported Tasks
61
 
62
  Self Supervised Pretraining
63
+
64
  ## Dataset Usage
65
  ### Using `datasets` library
66
  ```
67
+ from datasets import load_dataset
68
+ dset = datasets.load_dataset("SEACrowd/sea_madlad", trust_remote_code=True)
69
  ```
70
  ### Using `seacrowd` library
71
  ```import seacrowd as sc
72
  # Load the dataset using the default config
73
+ dset = sc.load_dataset("sea_madlad", schema="seacrowd")
74
  # Check all available subsets (config names) of the dataset
75
+ print(sc.available_config_names("sea_madlad"))
76
  # Load the dataset using a specific config
77
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
78
  ```
79
+
80
+ More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
81
+
82
 
83
  ## Dataset Homepage
84