Skip to content

Commit 72a7fbd

Browse files
Karadaryaipozdnov
authored andcommitted
modify readme
1 parent 599d572 commit 72a7fbd

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

examples/tutorial_emnist_tflm/README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
EMNIST Convolution Neural Network Example
1+
EMNIST Conversion Example
22
========================================================================
33
This example shows how to convert EMNIST Tensorflow model into Tensorflow Lite Micro format and use it in embARC MLI application.
44

@@ -49,7 +49,7 @@ Open root directory of tensorflow in terminal (use Cygwin or MinGW terminal if y
4949
```bash
5050
make -f tensorflow/lite/micro/tools/make/Makefile TARGET_ARCH=arc microlite
5151
```
52-
Generated library *libtensorflow-microlite.a* can be found in *<tensorflow-dir>/tensorflow/lite/micro/tools/make/gen/<target>/lib*. Copy it to third_party directory of this example.
52+
Generated library *libtensorflow-microlite.a* can be found in *\{tensorflow-dir\}/tensorflow/lite/micro/tools/make/gen/\{target\}/lib*. Copy it to third_party directory of this example.
5353
5454
## Convert the model
5555
To convert the model, run the Jupyter Notebook:
@@ -58,6 +58,11 @@ jupyter notebook conversion_tutorial/model_conversion.ipynb
5858
```
5959
After completing the tutorial you should have model and test samples generated. Copy *conversion_tutorial/generated/model.h* and *conversion_tutorial/generated/test_samples.cc* to *src* folder.
6060
61+
Before building you should set TENSORFLOW_DIR variable to point to your Tensorflow top folder. E.g. on Windows:
62+
```bash
63+
set TENSORFLOW_DIR=\{your-path-to-tensorflow\}
64+
```
65+
6166
Now you can build and run the example with DesignWare ARC nSIM simulator:
6267
```bash
6368
gmake app run

0 commit comments

Comments
 (0)