merve HF staff commited on
Commit
8050af3
·
1 Parent(s): f918b61

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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 `data_file` argument of `load_dataset` like below:
52
 
53
  ```python
54
  from datasets import load_dataset
55
- dataset = load_dataset("inria_soda/tabular-benchmark", data_file="reg_cat/house_sales.csv")
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