Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1512,13 +1512,13 @@ To download the dataset using the Hugging Face `datasets` library, you can use t
|
|
1512 |
```python
|
1513 |
from datasets import load_dataset
|
1514 |
|
1515 |
-
dataset = load_dataset("data-is-better-together/fineweb-c
|
1516 |
```
|
1517 |
|
1518 |
To download a specific language, you can use the following code:
|
1519 |
|
1520 |
```python
|
1521 |
-
dataset = load_dataset("data-is-better-together/fineweb-c
|
1522 |
```
|
1523 |
|
1524 |
You can also download the dataset using Pandas
|
@@ -1527,7 +1527,7 @@ You can also download the dataset using Pandas
|
|
1527 |
import pandas as pd
|
1528 |
|
1529 |
# Login using e.g. `huggingface-cli login` to access this dataset
|
1530 |
-
df = pd.read_parquet("hf://datasets/data-is-better-together/fineweb-c
|
1531 |
```
|
1532 |
|
1533 |
or polars
|
|
|
1512 |
```python
|
1513 |
from datasets import load_dataset
|
1514 |
|
1515 |
+
dataset = load_dataset("data-is-better-together/fineweb-c")
|
1516 |
```
|
1517 |
|
1518 |
To download a specific language, you can use the following code:
|
1519 |
|
1520 |
```python
|
1521 |
+
dataset = load_dataset("data-is-better-together/fineweb-c", language="cmn_Hani")
|
1522 |
```
|
1523 |
|
1524 |
You can also download the dataset using Pandas
|
|
|
1527 |
import pandas as pd
|
1528 |
|
1529 |
# Login using e.g. `huggingface-cli login` to access this dataset
|
1530 |
+
df = pd.read_parquet("hf://datasets/data-is-better-together/fineweb-c/arb_Arab/train-00000-of-00001.parquet")
|
1531 |
```
|
1532 |
|
1533 |
or polars
|