Datasets:
Formats:
csv
Size:
10M - 100M
Update README.md
Browse files
README.md
CHANGED
@@ -48,11 +48,11 @@ This dataset consists of four splits (folders) based on tasks and datasets inclu
|
|
48 |
- clf_num: Task identifier for classification on numerical features.
|
49 |
- clf_cat: Task identifier for classification on categorical features.
|
50 |
|
51 |
-
Depending on the dataset you want to load, you can load the dataset by passing `task_name/dataset_name` to `
|
52 |
|
53 |
```python
|
54 |
from datasets import load_dataset
|
55 |
-
dataset = load_dataset("inria_soda/tabular-benchmark",
|
56 |
```
|
57 |
|
58 |
|
|
|
48 |
- clf_num: Task identifier for classification on numerical features.
|
49 |
- clf_cat: Task identifier for classification on categorical features.
|
50 |
|
51 |
+
Depending on the dataset you want to load, you can load the dataset by passing `task_name/dataset_name` to `data_files` argument of `load_dataset` like below:
|
52 |
|
53 |
```python
|
54 |
from datasets import load_dataset
|
55 |
+
dataset = load_dataset("inria_soda/tabular-benchmark", data_files="reg_cat/house_sales.csv")
|
56 |
```
|
57 |
|
58 |
|