├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── generated_img.rs ├── generated_tf.rs ├── generated_tflite.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/second-state/wasmedge_tensorflow_interface/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/second-state/wasmedge_tensorflow_interface/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/second-state/wasmedge_tensorflow_interface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/second-state/wasmedge_tensorflow_interface/HEAD/README.md -------------------------------------------------------------------------------- /src/generated_img.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/second-state/wasmedge_tensorflow_interface/HEAD/src/generated_img.rs -------------------------------------------------------------------------------- /src/generated_tf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/second-state/wasmedge_tensorflow_interface/HEAD/src/generated_tf.rs -------------------------------------------------------------------------------- /src/generated_tflite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/second-state/wasmedge_tensorflow_interface/HEAD/src/generated_tflite.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/second-state/wasmedge_tensorflow_interface/HEAD/src/lib.rs --------------------------------------------------------------------------------