From 6b65968e3c7a7b7345cf081df417c936750e7bfb Mon Sep 17 00:00:00 2001 From: Kai Huang Date: Wed, 14 Dec 2022 17:04:15 +0800 Subject: [PATCH] Remove save entire model in doc (#6986) --- .../doc/Orca/QuickStart/orca-pytorch-quickstart.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/docs/readthedocs/source/doc/Orca/QuickStart/orca-pytorch-quickstart.md b/docs/readthedocs/source/doc/Orca/QuickStart/orca-pytorch-quickstart.md index c6a62d1e..94be9f83 100644 --- a/docs/readthedocs/source/doc/Orca/QuickStart/orca-pytorch-quickstart.md +++ b/docs/readthedocs/source/doc/Orca/QuickStart/orca-pytorch-quickstart.md @@ -129,17 +129,12 @@ for r in result: ### Step 5: Save and Load the Model -Save the Estimator states (including the model and optimizer) to the provided model path. +Save the Estimator states (including model and optimizer) to the provided model path. ```python est.save("mnist_model") ``` -Save the entire model to the provided model path. -```python -est.save("mnist_model", entire=True) -``` - -Load the Estimator states (including the model and optimizer) or the entire model from the provided model path. +Load the Estimator states (including model and optimizer) from the provided model path. ```python est.load("mnist_model")