Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowPythonModels / README.md
1 # TensorFlow Python Models
2
3 Clone of _TensorFlowPythonExamples_ but having multiple operators to form a small network
4
5 ## Prerequisite
6
7 - Python 3.X
8 - TensorFlow 1.15
9
10 ## Directory Layout
11
12 ```
13 tfpem.py <- TensorFlow Python Model Manager
14 examples/
15   [EXAMPLE NAME]/
16     __init__.py
17 ```
18 ## Folder naming convention
19
20 Follow the purpose of the model
21
22 ## HOWTO: Create a Python environment
23
24 TBA
25
26 ## HOWTO: Generate a pbtxt from examples
27
28 ```
29 $ /path/to/python -B <path/to/tfpem.py> [EXAMPLE NAME 1] [EXANMPE NAME 2] ...
30 ```
31
32 NOTE. Add "-B" option not to generate "__pycache__".
33
34 ## HOWTO: Add a new example
35
36 TBA