前提・実現したいこと
GitHubにあるFace-Sketch-to-Image-Generation-using-GANをGitHubにある使用手順に沿って実行したいです
発生している問題・エラーメッセージ
Face-Sketch-to-Image-Generation-using-GANの訓練中に TypeError:'NoneType' object is not callableが発生しました
TypeError Traceback (most recent call last)
<ipython-input-27-385418c88ba9> in <module>()
----> 1 train(d_model, g_model, gan_model, [blue_sketch, blue_photo], 'Models/Pixel[02]_Context[08]/', n_epochs = 100, n_batch=16)
3 frames
/usr/local/lib/python3.7/dist-packages/tensorflow/python/eager/def_function.py in _call(self, *args, **kwds)
915 # In this case we have created variables on the first call, so we run the
916 # defunned version which is guaranteed to never create variables.
--> 917 return self._stateless_fn(*args, **kwds) # pylint: disable=not-callable
918 elif self._stateful_fn is not None:
919 # Release the lock early so that multiple threads can perform the call
TypeError: 'NoneType' object is not callable
該当のソースコード
train(d_model, g_model, gan_model, [blue_sketch, blue_photo], 'Models/Pixel[02]_Context[08]/', n_epochs = 100, n_batch=16)
補足情報(FW/ツールのバージョンなど)
GitHubからのダウンロード元です↓
https://github.com/Malikanhar/Face-Sketch-to-Image-Generation-using-GAN/blob/master/ContextualGAN.ipynb
ここのソースコードの通りに実行しました
Datasetに格納している三次元の人物画像を二次元キャラクタ画像に変更して学習を試みています
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。