Skip to content

Commit

Permalink
corrected paramter names for purge_training_data and recreate_trainin…
Browse files Browse the repository at this point in the history
…g_dataset
  • Loading branch information
Manu S Joseph committed Dec 7, 2023
1 parent 4e7840d commit 59bd3d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/user_guides/fs/feature_view/training-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ feature_view.delete_all_training_datasets()
It is also possible to keep the metadata and delete only the materialised files. Then you can recreate the deleted files by just specifying a version, and you get back the exact same dataset again. This is useful when you are running out of storage.
```python
# delete files of a training data version
feature_view.purge_training_data(version=1)
feature_view.purge_training_data(training_dataset_version=1)

# delete files of all training datasets
feature_view.purge_all_training_data()
```
To recreate a training dataset:
```python
feature_view.recreate_training_dataset(version=1)
feature_view.recreate_training_dataset(training_dataset_version =1)
```

## Tags
Expand Down

0 comments on commit 59bd3d5

Please sign in to comment.