英文: What will be the gradient and weight of the particula part of the network if coeffiecient of one...
自定义数据集用于 TensorFlow 2.0 中的图像。
英文: custom dataset for image in tensorflow 2.0 问题 我正在尝试使用TensorFlow 2.0创建“图像的自定义数据集”,我的目录结构如下: 以“Pet...
ValueError: 形状 (None, 20, 9) 和 (None, 9) 不兼容
英文: ValueError: Shapes (None, 20, 9) and (None, 9) are incompatible 问题 这是我的代码: import tensorflow as ...
Keras:每步时间随样本数过滤增加,时代时间保持不变。
英文: Keras: time per step increases with a filter on the number of samples, epoch time continues the ...
Tensorflow 使用一个GPU的全部资源,但另一个GPU的利用率较低。
英文: Tensorflow using all of one GPU but little of the other 问题 在使用Tensorflow目标检测API时,遇到了使用NVIDIA 308...
重塑具有未知形状的张量,使用 tf.function。
英文: Reshape tensors of unknown shape with tf.function 问题 以下是代码部分的翻译: 让我们假设在我的函数中,我需要处理形状为[4,3,2,1]和[...
向stax.serial对象添加新层。
英文: Adding a new layer to a stax.serial object 问题 def mlp(L, n_list, activation, Cb, Cw): init_fun, ...
Tensorflow-GNN模型在训练基于骨架的GNN时出现model.fit()错误(索引错误)。
英文: Tensorflow-GNN model.fit() error while training a skeleton-based GNN (index error) 问题 以下是翻译好的内容:...
为什么我的tf.tensor_scatter_nd_add不能像torch.scatter_add_一样工作?
英文: why my tf.tensor_scatter_nd_add can't do the same as torch scatter_add_ 问题 new_means = tf.te...
卷积1D层输出形状错误
英文: Wrong shape output with conv1D layer 问题 I'm trying some experiments with a small autoencoder def...
22