英文: Why does tf.train.FloatList have rounding errors? 问题 以下代码显示,当将Python浮点数转换为tf.train.FloatList时,会丢...
无预训练权重的迁移学习
英文: Transfer learning without pretrained weights 问题 我想**使用Keras上可用的深度学习架构**([resnet50][1]),**添加一些层,并...
如何在Tensorflow代码中使用Tensorflow Lite模型?
英文: How can I use a Tensorflow lite model in a Tensorflow Code? 问题 # Import packages import os impor...
Autoencoder用于对二进制数据集进行降维,以便进行聚类。
英文: Autoencoder for dimensionality reduction of binary dataset for clustering 问题 以下是翻译好的代码部分: import...
x 和 y 必须具有相同的第一个维度,但形状分别为 (9,) 和 (4,)。
英文: x and y must have same first dimension, but have shapes (9,) and (4,) 问题 y_pred = fig.predict(x....
pip为什么不安装2.12以下版本的tensorflow?
英文: Why does pip not install tensorflow version below 2.12? 问题 我目前正在按照tensorflow指南 https://www.tenso...
Deep Learning with Python IMDB dataset
英文: Deep Learning with Python IMDB dataset 问题 在代码的末尾,您遇到了一个错误:“name 'acc' is not defined”。看起来是因为您在使用...
Cannot reshape tensor with its real dimensions.
英文: Cannot reshape tensor with its real dimensions 问题 我有一个非常复杂的Transformer模型,需要从头开始计算MRR。 (我认为问题在于数据...
Keras中的活动正则化:在激活之前还是之后?
英文: Activity regularizer in Keras: before or after activation? 问题 Keras文档(https://keras.io/api/layer...
自定义多任务模型的损失函数
英文: Custom loss for multi task model 问题 I only want to compute the categorical cross entropy loss fo...
22