tensorflow
江南路漫
这个作者很懒,什么都没留下…
展开
-
解决module ‘tensorflow‘ has no attribute ‘optimizers‘报错
一般出现此类问题的原因是包的更新导致有些用法发生了变化,因此在tensorflow中调用optimizer需要通过tf.keras调用。将self.opt = tf.optimizers.Adam(learning_rate=self.lr)中的tf后面加个keras,变成self.opt = tf.keras.optimizers.Adam(learning_rate=self.lr)...原创 2021-08-03 20:20:18 · 4990 阅读 · 0 评论 -
解决import tensorflow时的报错 Passing (type, 1) or ‘1type‘ as a synonym of type is deprecate
问题在Pycharm中运行import tensorflow as tf时报错。解决方案此时点开报错中的dtypes.py文件,对其进行修改。从# hard-coding of names.这里开始,修改所有以_np_q开头的代码行,同时也要修改最后一行的np_resource。# hard-coding of names._np_qint8 = np.dtype([("qint8", np.int8, (1,))])_np_quint8 = np.dtype([("quint8", np.u原创 2021-08-03 16:52:52 · 126 阅读 · 0 评论