摘要:
尝试输出keras模型参数的时候,需要解决的问题: 1 import tensorflow.compat.v1 as tf 2 tf.disable_v2_behavior() 3 import numpy as np 4 weight = tf.get_variable(name='weights 阅读全文
摘要:
1 import tensorflow._api.v2.compat.v1 as tf 2 tf.disable_v2_behavior() 俺的版本需要用上面这个,记录一下。 其余可能好用的: 1 import tensorflow.compat.v1 as tf 2 tf.disable_v2_ 阅读全文