Skip to content

Commit

Permalink
Correcting parameter name in delete_training_dataset as per hsfs docu…
Browse files Browse the repository at this point in the history
…mentation
  • Loading branch information
Manu S Joseph committed Dec 7, 2023
1 parent 9196daf commit 4e7840d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/user_guides/fs/feature_view/training-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ X_train, X_val, X_test, y_train, y_val, y_test = feature_view.get_train_validati
To clean up unused training data, you can delete all training data or for a particular version. Note that all metadata of training data and materialised files stored in HopsFS will be deleted and cannot be recreated anymore.
```python
# delete a training data version
feature_view.delete_training_dataset(version=1)
feature_view.delete_training_dataset(training_dataset_version=1)

# delete all training datasets
feature_view.delete_all_training_datasets()
Expand Down

0 comments on commit 4e7840d

Please sign in to comment.