Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergioalberto/rpi-deep-learning-lab
This is a little laboratory with some libraries about ML and DL running on a Raspberry Pi
https://github.com/sergioalberto/rpi-deep-learning-lab
Last synced: about 18 hours ago
JSON representation
This is a little laboratory with some libraries about ML and DL running on a Raspberry Pi
- Host: GitHub
- URL: https://github.com/sergioalberto/rpi-deep-learning-lab
- Owner: sergioalberto
- License: mit
- Created: 2019-10-20T13:17:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T04:35:46.000Z (almost 2 years ago)
- Last Synced: 2023-08-03T17:05:48.742Z (over 1 year ago)
- Language: Dockerfile
- Homepage:
- Size: 3.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Raspberry Pi Lab related to ML/DL
This is a little laboratory with some libraries about Machine Learning and Deep Learning running on a Raspberry Pi.
## Build image
```sh
docker-compose build
```## Start container
``` sh
docker run -it -p 6006:6006 -v "$(pwd)":/app sergiogq/rpi-lab bash
```## Run some example
```sh
cd examples/image_classification
pip3 install -r requirements.txt
python3 classify.py --filename banana.jpeg --model_path mobilenet_v1_1.0_224_quant.tflite --label_path labels_mobilenet_quant_v1_224.txt
```