https://github.com/khirotaka/foundation
Dockerfiles for research of machine learning.
https://github.com/khirotaka/foundation
Last synced: 5 days ago
JSON representation
Dockerfiles for research of machine learning.
- Host: GitHub
- URL: https://github.com/khirotaka/foundation
- Owner: khirotaka
- License: mit
- Created: 2019-07-17T14:55:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-17T12:59:05.000Z (over 5 years ago)
- Last Synced: 2025-03-29T05:14:52.983Z (3 months ago)
- Language: Dockerfile
- Size: 19.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.ja.md
- License: LICENSE
Awesome Lists containing this project
README
# Foundation
機械学習研究のためのDockerfile## Usage
このリポジトリで管理されているDockerfileは、Docker Hubの[hkawashima/foundation](https://hub.docker.com/r/hkawashima/foundation)からビルド済みのものを入手可能です。### tag: core
タグ名に `core` が付いているイメージは最もシンプルな構成のDockerイメージです。
以下の `tag: lab` などはこのイメージをベースにしています。
起動には、以下のオプションを指定してください。```sh
docker run -it hkawashima/foundation:cpu-core
```このイメージには、以下の主要ライブラリが含まれています。
* PyTorch
* Torchvision
* Scikit-Learn
* Matplotlib
* Seaborn
* Pandas### tag: lab
タグ名に `lab` が付いているイメージには `Jupyter Lab` が含まれています。
起動には、以下のオプションを指定してください。```sh
docker run -it -p 8888:8888 hkawashima/foundation:cpu-lab
```その後、ホストのブラウザで `localhost:8888` に接続することで `IDE` を起動することができます。