You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add README
* Allow to run manually downloaded datasets
* Update README
* make style
* remove datasets dependency in tasks.py
* Nit
* Nicer error message in web interface
* Fix error
* \n
* Fix character escape
* ` is not a correct escapte character
* I don't know
* fix data_dir for cases where `subset_name` is `None`
* tiny grammarly fixes
Co-authored-by: Victor Sanh <[email protected]>
# and the value is an instance of DatasetTemplates
71
71
print(collection.datasets_templates)
72
72
```
73
+
74
+
## Running datasets that need manual download
75
+
76
+
Some datasets are not handled automatically by `datasets` and require users to download the dataset manually.
77
+
78
+
In order to handle those datasets as well, we require users to download the dataset and put it in `~/.cache/promptsource`. This is the root directory containing all manually downloaded datasets.
79
+
80
+
You can override this default path using `PROMPTSOURCE_MANUAL_DATASET_DIR` environment variable. This should point to the root directory.
81
+
73
82
## Contributing
74
83
Contribution guidelines and step-by-step *HOW TO* are described [here](CONTRIBUTING.md).
0 commit comments