Crates.io | face_detection_mtcnn |
lib.rs | face_detection_mtcnn |
version | 0.1.0 |
source | src |
created_at | 2020-09-15 02:09:27.833894 |
updated_at | 2020-09-15 02:09:27.833894 |
description | This application is designed to be used as a command from a WebAssembly function running inside the SSVM to perform native tensorflow operations. Please see documentation for more details. |
homepage | https://github.com/second-state/AI-as-a-Service/native_model_zoo/face_detection_mtcnn |
repository | https://github.com/second-state/AI-as-a-Service |
max_upload_size | |
id | 288791 |
size | 2,119,160 |
This application is designed to be used as a command
from a WebAssembly function running inside the SSVM to perform native tensorflow operations.
It is NOT designed for direct command line use.
Follow the instructions. On most Linux systems, just do the following.
$ wget https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-1.15.0.tar.gz
$ sudo tar -C /usr/ -xzf libtensorflow-gpu-linux-x86_64-1.15.0.tar.gz
To install from the public repo, do this.
$ sudo cargo install face_detection_mtcnn
To install from the local source, do this.
$ cargo build --release
$ sudo cp target/release/face_detection_mtcnn /usr/bin/
Note: If error occurs when building, try to update rustup
.
$ rustup update nightly
$ rustup update stable