在使用TensorFlow的AutoGraph的時候出現了一些問題,特此記錄
AutoGraph did not convert this function. Try decorating it directly with @tf.function()
WARNING: export AUTOGRAPH_VERBOSITY=10
是因為AutoGraph需要gast,而gast升級到了最新的0.3.2,所以解決方法也比較簡單,把gast降下去
pip install gast==0.2.2