tensorflow2_tutorials_chinese icon indicating copy to clipboard operation
tensorflow2_tutorials_chinese copied to clipboard

tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials

Results 17 tensorflow2_tutorials_chinese issues
Sort by recently updated
recently updated
newest added

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()

![image](https://user-images.githubusercontent.com/40813230/71333131-dac48380-2573-11ea-9de3-9c1bbe1ef3c4.png) ![image](https://user-images.githubusercontent.com/40813230/71333134-e0ba6480-2573-11ea-83b5-f8db147cc2cb.png) 导入的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...