Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jy8752/ml-lessones
スッキリわかる機械学習入門の学習用レポジトリです。
https://github.com/jy8752/ml-lessones
Last synced: 7 days ago
JSON representation
スッキリわかる機械学習入門の学習用レポジトリです。
- Host: GitHub
- URL: https://github.com/jy8752/ml-lessones
- Owner: JY8752
- Created: 2023-07-15T11:31:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-23T14:13:59.000Z (over 1 year ago)
- Last Synced: 2023-07-23T15:25:01.709Z (over 1 year ago)
- Language: Python
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [スッキリわかる機械学習入門](https://sukkiri.jp/books/sukkiri_ml)の学習用リポジトリ
## 環境構築
anacondaイメージをベースにJupiter Labを起動するdockerコンテナを使う。
```
# build
docker image build -t python-work .# run
docker run -it -p 8888:8888 --rm --name python-work-container -v `pwd`/src:/work python-work
```