Datasets:
Jeronymous
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1773,6 +1773,20 @@ for sample in dataset:
|
|
1773 |
|
1774 |
Several configurations are available to select a language, a source, or both, illustrated in the following examples.
|
1775 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1776 |
Load data in French:
|
1777 |
```python
|
1778 |
from datasets import load_dataset
|
|
|
1773 |
|
1774 |
Several configurations are available to select a language, a source, or both, illustrated in the following examples.
|
1775 |
|
1776 |
+
The list of possible configurations can be obtained programmatically:
|
1777 |
+
```python
|
1778 |
+
from datasets import load_dataset_builder
|
1779 |
+
|
1780 |
+
config_names = list(load_dataset_builder("OpenLLM-France/Lucie-Training-Dataset").builder_configs)
|
1781 |
+
|
1782 |
+
print(config_names)
|
1783 |
+
```
|
1784 |
+
```plaintext
|
1785 |
+
['default', 'en', 'fr', 'de', 'es', 'it', 'de,fr', 'es,en', 'fr,en', 'it,en', 'natural', 'code', 'code-assembly', 'code-c', 'code-c#', 'code-c++', 'code-clojure', 'code-dart', 'code-elixir', 'code-erlang', 'code-fortran', 'code-go', 'code-haskell', 'code-java', 'code-javascript', 'code-julia', 'code-kotlin', 'code-lua', 'code-mathematica', 'code-matlab', 'code-ocaml', 'code-perl', 'code-php', 'code-python', 'code-r', 'code-racket', 'code-ruby', 'code-rust', 'code-scala', 'code-swift', 'code-tex', 'code-typescript', 'AmendementsParlement', 'AmericanStories', 'Claire', 'Claire-en', 'Claire-fr', 'CroissantAligned', 'DiscoursPublics', 'Europarl', 'Europarl-de', 'Europarl-en', 'Europarl-es', 'Europarl-fr', 'EuroparlAligned', 'EuroparlAligned-de,fr', 'EuroparlAligned-es,en', 'EuroparlAligned-fr,en', 'EuroparlAligned-it,en', 'Eurovoc', 'Eurovoc-de', 'Eurovoc-en', 'Eurovoc-es', 'Eurovoc-it', 'FineWebEdu', 'GallicaMonographies', 'GallicaPress', 'Gutenberg', 'Gutenberg-de', 'Gutenberg-en', 'Gutenberg-es', 'Gutenberg-fr', 'Gutenberg-it', 'HAL', 'InterventionsParlement', 'LEGI', 'MathPile', 'OpenData', 'OpenEdition', 'PeS2o', 'PeS2o-s2ag', 'PeS2o-s2orc', 'Pile', 'Pile-DM_Mathematics', 'Pile-FreeLaw', 'Pile-NIH_ExPorter', 'Pile-PhilPapers', 'Pile-StackExchange', 'Pile-USPTO_Backgrounds', 'Pile-Ubuntu_IRC', 'QuestionsEcritesParlement', 'RedPajama', 'RedPajama-de', 'RedPajama-es', 'RedPajama-fr', 'RedPajama-it', 'Stac', 'TheStack', 'Theses', 'Wikipedia', 'Wikipedia-de', 'Wikipedia-en', 'Wikipedia-es', 'Wikipedia-fr', 'Wikipedia-it', 'Wikisource', 'Wiktionary', 'YouTube']
|
1786 |
+
```
|
1787 |
+
|
1788 |
+
Below are some examples of how to load data from different sources and in different languages.
|
1789 |
+
|
1790 |
Load data in French:
|
1791 |
```python
|
1792 |
from datasets import load_dataset
|