- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
Settings:
Mac OS 10.14.6
Python 3.7.4
Tensorflow 2.0.0
我在 name_scope 设置方面遇到问题。我在代码中编写 name_scope()
,但 Tensorboard 中没有 name_scope,如 this image in Tensorboard 。我打算在此图像中为 Flatten、Dense 等创建一个名称范围。
我卸载并重新安装 Tensorflow,但得到了相同的结果。作为附加信息,我在终端中没有收到任何错误。有人对这种情况有任何想法吗?
def _model_B0001(self):
with tf.name_scope('1stLayer'):
inputs = Input(self.shape)
x = Flatten()(inputs)
x = Dense(512)(x)
output1 = Dense(self.nb_classes1, activation='softmax', name='output1')(x)
output2 = Dense(self.nb_classes2, activation='softmax', name='output2')(x)
predictions = [output1, output2]
model = Model(inputs, predictions)
model.compile(loss={'output1': 'categorical_crossentropy',
'output2': 'categorical_crossentropy'},
optimizer='adam',
metrics=['accuracy'])
model.summary()
with open(self.summary_txt, "w") as fp:
model.summary(print_fn=lambda x: fp.write(x + "\r\n"))
return model
最佳答案
这个问题我自己解决了。可能是因为 pip 和 anaconda 的碰撞。所以我做了下面的事情。
卸载所有 pip 软件包。
$ pip freeze > piplist.txt
$ sudo pip uninstall -r piplist.txt
卸载所有 anaconda 软件包。
卸载软件包。
$ conda install anaconda-clean
$ anaconda-clean
删除包后删除空文件夹。
$ rm -fr ~/.anaconda_backup
$ rm -fr /anaconda3
删除.bash_profile中的内容
$ sudo nano .bash_profile
重新安装 anaconda。从https://www.anaconda.com/distribution/下载
重新运行张量板。
def _model_A0001(self):
with tf.name_scope('1stLayer') as scope:
# print(scope)
# sys.exit()
inputs = Input(self.shape)
x = Conv2D(32, (3, 3), border_mode='same', name='conv2d')(inputs)
x = Activation('relu', name='relu')(x)
x = MaxPooling2D(pool_size=(2, 2), name='max_pooling')(x)
x = Dropout(0.25, name='dropout')(x)
with tf.name_scope('2ndLayer'):
x = Conv2D(64, (3, 3), border_mode='same')(x)
x = Activation('relu')(x)
x = Conv2D(64, (3, 3))(x)
x = MaxPooling2D(pool_size=(2, 2))(x)
x = Dropout(0.25)(x)
with tf.name_scope('DenseLayer'):
x = Flatten()(x)
x = Dense(512)(x)
x = Activation('relu')(x)
x = Dropout(0.5)(x)
output1 = Dense(self.nb_classes1, activation='softmax', name='output1')(x)
output2 = Dense(self.nb_classes2, activation='softmax', name='output2')(x)
predictions = [output1, output2]
# inputs = [inputs, inputs]
model = Model(inputs, outputs=predictions)
model.compile(loss={'output1': 'categorical_crossentropy',
'output2': 'categorical_crossentropy'},
optimizer='adam',
metrics=['accuracy'])
model.summary()
with open(self.summary_txt, "w") as fp:
model.summary(print_fn=lambda x: fp.write(x + "\r\n"))
return model
关于python - Tensorflow 的 name_scope 在 Tensorboard 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59475228/
我一直在看TensorFlow上的教程 with tf.name_scope('read_inputs') as scope: # something 这个例子 a = tf.constant
我有两个命名范围用于 CNN 的单独子图(使用 tf.variable_scope)。我可以将两个作用域合并为一个作用域,以便我的优化器仅更新两个作用域中的变量吗? 最佳答案 根据tf.Optmize
看代码片段: import tensorflow as tf with tf.name_scope('y'): a1 = tf.Variable(1,name='a') with tf.nam
如果我有以下named_scope named_scope :scope_by_user_id, lambda {|user_id| {:conditions => ["comments.user_i
如果我有以下named_scope named_scope :scope_by_user_id, lambda {|user_id| {:conditions => ["comments.user_i
我有以下的named_scope,它在MySQL和sqlite中工作正常,但在Postgres中却很糟糕: course.rb named_scope :current, :conditions =>
我正在尝试组织我的 TensorBoard 图,以便在我第一次启动 TensorBoard 时自动将某个组件放在一边。 我希望save节点在右边,像这样: 我可以在图表本身中右键单击保存,但我宁愿让它
这个问题在这里已经有了答案: What's the difference of name scope and a variable scope in tensorflow? (8 个回答) 关闭3年前
我正在使用Functional API TensorFlow 1.15 中的 Keras。我的模型很复杂并且具有嵌套结构,所以我在想tf.name_scope可能允许我创建一个很好的模块化结构,每个
Settings: Mac OS 10.14.6 Python 3.7.4 Tensorflow 2.0.0 我在 name_scope 设置方面遇到问题。我在代码中编写 name_scope() ,
我正在尝试运行一个脚本,但我已经在进口方面遇到了困难。这个导入 from keras.preprocessing.image import save_img 引发以下错误: AttributeErro
我有一些代码来计算我的 Estimator 中的性能指标用返回度量字典的函数编写的 model_fn def __model_eval_metrics(self, classes, labels, m
例如假设您有: class Model "SELECT * FROM somethings" end class Something [] Good!
我在使用 Tensorflow 时遇到问题: 以下代码为卷积 block 生成正确的图: def conv_layer(self, inputs, filter_size = 3, num_filte
我试图通过模仿 tf2.0 的文档来构建自定义模型。 enter link description here class CBR(layers.Layer): """C
回到 TensorFlow = 2.0 中消失了。因此,像这样的解决方案...... with tf.variable_scope("foo"): with tf.variable_scope
我是一名优秀的程序员,十分优秀!