We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d71b0a commit 9daa04dCopy full SHA for 9daa04d
src/axolotl/utils/data/shared.py
@@ -281,6 +281,10 @@ def load_dataset_w_config(
281
**load_ds_kwargs,
282
)
283
if not ds:
284
- raise ValueError("unhandled dataset load")
+ raise ValueError(
285
+ "The dataset could not be loaded. This could be due to a misconfigured dataset path "
286
+ f"({config_dataset.path}). Try double-check your path / name / data_files. "
287
+ "This is not caused by the dataset type."
288
+ )
289
290
return ds
0 commit comments