Deep Learning kerasでinput_shapeとoutput_shapeを取得する 転移学習をする際、元になるモデルはVGG16やResNet、Xceptionなど種類が多い 色々試してみたいけど、その度にソースコードのinput_shapeを書き換えるのが面倒くさいし、argeparseで引数にするのも手間 なので、直接... 2019.06.25 2020.05.10 Deep Learning
Deep Learning YOLOで学習中のlossのグラフchart.png を100iteretion毎に保存する YOLOにはlossのグラフを100iteration毎に保存してくれる機能がある しかし毎回chart.pngという名前で上書きされてしまうので、過去の状態を見たくなった時にちょっと困る そこで、グラフが上書き保存されないように書き換える... 2019.05.27 2020.05.10 Deep Learning
Deep Learning kerasのmodel.summaryでThis model has not yet been builtと怒られる model.summary()で出てくるエラー ValueError: This model has not yet been built. Build the model first by calling build() or calli... 2019.03.27 2020.05.10 Deep Learning
Deep Learning kerasのmodel.summaryでbound method Network.summaryと表示される model.summaryしてもこんなメッセージが出る。 <bound method Network.summary of <keras.engine.training.Model object at 0x12222bf60>> 想定してた... 2019.03.26 2020.05.10 Deep Learning