tensorflow2_tutorials_chinese
tensorflow2_tutorials_chinese copied to clipboard
tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials
how can i save the encoder and decoder model respectively for /024-AutoEncoder/cnn_vae.ipynb? thank you very much
cnn中为什么有这个步骤,第一维的负一是什么意思 x_train = x_train.reshape((-1,28,28,1)) x_test = x_test.reshape((-1,28,28,1))
用tf.random_normal_initializer()如何初始化变量?tf2.0中没有tf.get_variable()
  导入的tf2.0 print() 网络最后的输出 好像具体的数值还是不能出来 并不是显示的“ops.EagerTensor”
我将原本在tf.1.12下搭建的模型用tf.2.0编译,修改了几个修改的函数以后,又出现了 unhashable type: 'ListWrapper'的错误,出现在`self.keras_model.add_loss(loss)` 这一行上, ``` def compile(self, learning_rate, momentum): """Gets the model ready for training. Adds losses, regularization, and metrics. Then calls the Keras compile() function. """ # Optimizer...
ImportError Traceback (most recent call last) in () 1 from __future__ import absolute_import, division, print_function, unicode_literals 2 # 安装tfds pip install tfds-nightly==1.0.2.dev201904090105 ----> 3 import tensorflow_datasets as tfds 4 import...