Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/docker-hub-frolvlad/docker-alpine-python-machinelearning
Small Docker image with Python Machine Learning tools (~180MB) https://hub.docker.com/r/frolvlad/alpine-python-machinelearning/
https://github.com/docker-hub-frolvlad/docker-alpine-python-machinelearning
alpine docker-image machine-learning numpy pandas python scikit-learn scipy
Last synced: 2 months ago
JSON representation
Small Docker image with Python Machine Learning tools (~180MB) https://hub.docker.com/r/frolvlad/alpine-python-machinelearning/
- Host: GitHub
- URL: https://github.com/docker-hub-frolvlad/docker-alpine-python-machinelearning
- Owner: Docker-Hub-frolvlad
- License: mit
- Created: 2016-09-26T11:27:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-06T17:15:30.000Z (about 1 year ago)
- Last Synced: 2024-11-07T09:02:30.529Z (2 months ago)
- Topics: alpine, docker-image, machine-learning, numpy, pandas, python, scikit-learn, scipy
- Language: Dockerfile
- Homepage:
- Size: 8.79 KB
- Stars: 79
- Watchers: 10
- Forks: 23
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Docker Stars](https://img.shields.io/docker/stars/frolvlad/alpine-python-machinelearning.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-python-machinelearning/)
[![Docker Pulls](https://img.shields.io/docker/pulls/frolvlad/alpine-python-machinelearning.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-python-machinelearning/)Python Machine Learning tools Docker image
==========================================This image is based on
[Alpine Linux Python 3.5 image](https://hub.docker.com/r/frolvlad/alpine-python3/),
which is only a 60MB image, and contains popular Machine Leaning tools:* numpy
* pandas
* scipy
* scikit-learnDownload size of this image is only:
[![](https://images.microbadger.com/badges/image/frolvlad/alpine-python-machinelearning.svg)](http://microbadger.com/images/frolvlad/alpine-python-machinelearning "Get your own image badge on microbadger.com")
Usage Example
-------------```bash
$ docker run --rm frolvlad/alpine-python-machinelearning python3 -c 'import numpy; print(numpy.arange(3))'
```Once you have run this command you will get printed `array([0, 1, 2])` from Python!