Skip to content

Commit

Permalink
fix: fix path to train target in hello_world example (#2608)
Browse files Browse the repository at this point in the history
BUG=cleanup
  • Loading branch information
asraa authored Jun 18, 2024
1 parent f640346 commit 8c458fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Run:
Build the train.py script
`bazel build tensorflow/lite/micro/examples/hello_world/quantization:train`
`bazel build tensorflow/lite/micro/examples/hello_world:train`
The following command first creates the trained TF float model that we will quantize later
`bazel-bin/tensorflow/lite/micro/examples/hello_world/train --save_tf_model --save_dir=/tmp/float_model/`
Expand Down Expand Up @@ -113,4 +113,4 @@ def main(_):


if __name__ == "__main__":
app.run(main)
app.run(main)

0 comments on commit 8c458fc

Please sign in to comment.