"vscode:/vscode.git/clone" did not exist on "52622bf13d92703f8c1d1167757251ff035f2b5e"
Unverified Commit 575dd0de authored by Stella Biderman's avatar Stella Biderman Committed by GitHub
Browse files

Merge pull request #956 from EleutherAI/haileyschoelkopf-patch-3

[Refactor] Describe local dataset usage in docs
parents aff47420 56a2c8e3
......@@ -45,6 +45,16 @@ dataset_name: ... # the dataset configuration to use. Leave `null` if your datas
dataset_kwargs: null # any extra keyword arguments that should be passed to the dataset constructor, e.g. `data_dir`.
```
------------------------------
**Tip:** To load a local dataset for evaluation, you can specify data files in the `dataset_kwargs` field, such as the following for JSON files:
```
dataset_path: json
dataset_name: null
dataset_kwargs:
data_files: /path/to/my/json
```
-------------------------------
Next, we'd like to tell our task what the dataset's train, validation, and test splits are named, if they exist:
```yaml
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment