https://github.com/shunk031/deep_learning_tuningathon
Deep Learning 勉強会用のコード
https://github.com/shunk031/deep_learning_tuningathon
Last synced: 7 months ago
JSON representation
Deep Learning 勉強会用のコード
- Host: GitHub
- URL: https://github.com/shunk031/deep_learning_tuningathon
- Owner: shunk031
- Created: 2016-09-24T03:24:21.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-24T01:07:33.000Z (about 9 years ago)
- Last Synced: 2025-01-10T17:53:46.202Z (9 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Deep Learning Tuningathon用ベースコード
## 環境準備
```
pip install -r requirements.txt
```## 実行方法
下記コマンドを実施してください```
python cifar10.py# ex)
python cifar10.py models.ex01
```デフォルトで幾つかのオプションを持っています
```
python cifar10.py models.ex01 --batch_size 32 --num_epoch 10 --data_augmentation
```## 使い方
### モデルの追加
*models/* にpythonのファイルと下記フォーマットの関数を追加して下さい。
```python
def create_network(input_shape, output_shape, some_args):
model = Sequential()
:
return model
```その後追加したファイル名を指定して下さい。
```
# ex) newmodel.pyというファイルを追加した場合
python cifar10.py models/newmodel
```