You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learning/Readme.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,16 @@
3
3
- Install TensorFLow: follow official site instructions: https://www.tensorflow.org/install/
4
4
- Open Visual Studio Code with curent folder and execute in terminal:
5
5
6
+
```sh
6
7
python ./mnist_deep_training.py --training_iteration=1000 --model_version=1 "Model Training Folder Path"
8
+
```
7
9
8
10
This is start python script and train MNIST deep model with 1000 iterations. After that it will save model in directory. Please keep in mind to increament model_version parameter value after every training.
9
11
10
12
- Install TensorFlow Serving: follow official site instructions: https://www.tensorflow.org/serving/
11
13
12
14
- Start TensorFlow Serving with the following command:
13
15
16
+
```sh
14
17
tensorflow_model_server --port=9000 --model_name=mnist --model_base_path="odel Training Folder Path"
0 commit comments