Skip to content

Commit

Permalink
Update pre_training.py
Browse files Browse the repository at this point in the history
fix typo bug

Signed-off-by: Alireza Moradzadeh <[email protected]>
  • Loading branch information
moradza authored Jan 3, 2025
1 parent 0f08462 commit 4a7f814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nemo/collections/llm/gpt/data/pre_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def validate_dataset_asset_accessibility(paths):
validate_dataset_asset_accessibility(p)
return

if not isinstance(paths, str) and not isisntance(paths, Path):
if not isinstance(paths, str) and not isntance(paths, Path):
raise ValueError("Expected path to be of string or Path type.")

path = Path(paths)
Expand Down

0 comments on commit 4a7f814

Please sign in to comment.