Sign inSign up

smirko/machine-learning-rpi

By smirko

Updated almost 5 years ago

Image
1

291

smirko/machine-learning-rpi repository overview

Machine Learning on RaspberryPi arm32v7

The container runs a Debian Buster with Python 3 and Jupyter Lab server. Find a detailed description on https://github.com/smirko-dev/machine-learning-rpi.

Getting started

docker run -it -d -p 8881:8888 -e JUPYTER_PASSWORD='jupyter' -v ~/jupyter/notebooks:/root/notebooks smirko/machine-learning-rpi

docker-compose.yaml

version: '3'

services:
  jupyter:
    container_name: jupyterlab
    restart: unless-stopped
    build: .
    environment:
      - JUPYTER_PASSWORD=jupyter
    ports:
      - 8881:8888
    volumes:
      - ~/jupyter/notebooks:/root/notebooks

The Jupyter Lab server is now accessible <HOST IP>:8881.

Python modules

  • Numpy 1.19.5
  • Matplotlib 3.0.2
  • Pandas 1.0.0
  • Scikit Learn 0.20.2
  • Tensorflow 2.4.0

Tag summary

Content type

Image

Digest

Size

1.1 GB

Last updated

almost 5 years ago

docker pull smirko/machine-learning-rpi