You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Samuel ORTION f808c7854b Added .gitignore 2 years ago
data Added .gitignore 2 years ago
img Added .gitignore 2 years ago
models Added .gitignore 2 years ago
src Added .gitignore 2 years ago
.gitignore Added .gitignore 2 years ago
LICENSE Initial commit 2 years ago
README.md Add troubleshot 2 years ago

README.md

TensorBird

A project aiming to perform auto identification of bird species from pictures taken by PiCameraTrap using machine learning.

Inspiration

I have been inprired by following ressource :

Environmnent Set Up

Create and Activate virtual env

python -m venv tb-venv
source tb-venv/bin/activate

Install Tensorflow in container

docker pull tensorflow/tensorflow:latest  # Download latest stable image
docker run -it -p 8888:8888 tensorflow/tensorflow:latest-jupyter  # Start Jupyter server 

Install Tensorflow using pip

python -m pip install tensorflow

Launch Jupyter Notebook

Make the virtual env accessible from Jupyter Notebook

pip install ipykernel
python -m ipykernel install --user --name=tb-venv

Launch Jupyter

jupyter notebook

Run TF Lite

Trouble shooting

For tensorflow Lite to work on virtual env, we have to install the following package.

sudo apt install libatlas-base-dev