tfmicro
tfmicro copied to clipboard
Example is still WIP
- Bumped bindgen to `0.59.2` - Updated repo to use new tflite micro version at https://github.com/tensorflow/tflite-micro/
Probably something to monitor in general is the google group as breaking api changes seem to be discussed there. https://groups.google.com/a/tensorflow.org/g/micro
I saw a ticket come through on tflite worrying about assert debug costs if you dont use the release build and I thought... hrmm. Are we building with those flags?...
Refs: - https://github.com/tensorflow/tensorflow/issues/23440#issuecomment-436445860 modified: build.rs Fixes #12 **N.B.** It should be noted that whilst the change here resolves #12 , this then leads to a further stumbling block, namely #15
After pulling in most recent changes as of today (tfmicro@`6d4a771` with tensorflow@`33689c4` on `macOS.10.15.5`) and running: ``` $ cargo clean --verbose && cargo test --verbose ``` I get one of...
Firstly I would like say thank you for this work! This looks like a fantastic project and I am excited to get involved if I can. I wanted to run...
Amazing work. I ran into the same Ord on float problem with a similar solution to yours ``` let index = output_tensor .as_data::() .iter() .position_max() .unwrap(); ``` But it doesnt...