Closed8

「ゼロから作る Deep Learning 4」 のハンズオン

beckybecky

環境作成

beckybecky

ライブラリ群

pip install numpy
pip install matplotlib
pip install pytorch
pip install torch
pip install gym
pip install dezero
beckybecky

dezero、新しいnumpyに対応してないっぽいので、
以下から最新持ってきた。

https://github.com/becky3/DeepLerningBook4/

以下に現conda環境のパッケージが置いてあったのでここに直接 dezero ディレクトリを置くと良いらしい。

C:\Users\Develop.conda\envs\DeepLearningBook4\lib\site-packages

dezero は uninstall しとく。

また、実行したら
以下エラーが出たので、

dezero\datasets.py:235: SyntaxWarning: "is" with a literal. Did you mean "=="? return fine_labels if label_type is 'fine' else coarse_labels variable(75.0)

当該箇所を以下のように修正したら実行できた。

return fine_labels if label_type == 'fine' else coarse_labels
beckybecky

Gymについて

windowsだとgym.make する時に

render="human"

にしないと、映像が出ないっぽい

このスクラップは6ヶ月前にクローズされました