腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(1782)
视频
沙龙
1
回答
有没有办法将tensorflow预测变量反转到原始值?
、
、
我已经运行了tensorflow 2.0算法,其中我的依赖变量是标签格式的y 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
浏览 3
提问于2021-02-24
得票数 1
回答已采纳
1
回答
sess.run动态增加内存使用量
、
、
"model.prediction“是def prediction(self):
tf.argmax
(self.logits_s, 1),
tf.argmax
(self.logits_d
浏览 0
提问于2018-12-05
得票数 1
回答已采纳
1
回答
TensorFlow逻辑操作((A == B) && C == D)导致“不兼容形状:[2] vs. [3]”
、
我试着构建以下逻辑表达式- tf.equal(
tf.argmax
(y_conv,1),
tf.argmax
(y_,1)), name=None) tf.equal(
tf.argmax
(y_conv,0),
tf.argmax
(y_,0))和tf.equal(
tf.argm
浏览 4
提问于2017-02-18
得票数 1
回答已采纳
1
回答
如何在tensorflow中打印预测值
我试过了但事实证明,y_pred和我的test_y完全一样precision = tf.metrics.precision(labels=
tf.argmax
(y, 1), predictions=
tf.argmax
(out,
浏览 21
提问于2019-07-06
得票数 0
回答已采纳
1
回答
Tensorflow弃用警告
、
我正在尝试使用一个开放访问的github代码创建一个用于图像分类的卷积神经网络。我有两类图像。但是,当我开始运行代码的一部分时,我一直收到这个错误这是代码中有错误的部分(虽然这个错误的根源可能在其他地方,但我的直觉告诉我,它存在
浏览 16
提问于2017-03-15
得票数 0
1
回答
sparse_softmax_cross_entropy_with_logits结果比softmax_cross_entropy_with_logits差
、
、
、
tf.train.AdamOptimizer(learning_rate = self.lr_).minimize(self.cost_) correct_pred = tf.equal(
tf.argmax
(self.score_,1),
tf.argmax
(y,1)) def _
浏览 6
提问于2017-04-14
得票数 1
回答已采纳
1
回答
tf.argmax
返回了一个随机的高值,超出了有效维度范围
、
我使用
tf.argmax
实现这一点。它通常是正确的。但在某些情况下,结果中的一个值非常大,并且是随机的,比如4294967390。这怎么可能呢?它应该为每个维度返回一个介于0和149之间的值。(0, 20):if i == 0:else: stackofArrs = tf.c
浏览 5
提问于2017-08-04
得票数 2
回答已采纳
1
回答
Tensorflow在没有训练的情况下显示出完美的精度
、
y_conv))correct_prediction = tf.equal(
tf.argmax
(y_conv, 1),
tf.argmax
(y_, 1)) with
浏览 0
提问于2018-01-18
得票数 0
回答已采纳
1
回答
Python/Tensorflow -在这种情况下,拥有"1“的所有精度值正常吗?
、
y))accuracy = tf.reduce_mean(tf.cast(correct_pred,tf.float32)) with tf.Session
浏览 1
提问于2017-03-26
得票数 2
回答已采纳
1
回答
如何在三维阵列中使用argmax tensorflow函数?
、
、
、
我想知道如何在3D数组中使用
tf.argmax
。如何使用tf.nn.softmax_cross_entropy_with_logits函数以及tf.equal(
tf.argmax
)和tf.reduce_mean(tf.cast)?
浏览 4
提问于2017-09-01
得票数 0
回答已采纳
2
回答
在常量张量上求值时,Tensorflow的Argmax函数不打印数值
、
],[8,9,1,2]],tf.int32,name="vector") v = sess.run(vector) argm =
tf.argmax
浏览 1
提问于2018-05-19
得票数 0
1
回答
tensorflow - tf.confusion_matrix()抛出错误ValueError:形状(2,2048,2)必须有2级
、
、
、
我试图用google确定用python编写的神经网络模型的confusion_matrix。通过使用这段代码: batched_val_data = np.array(validation_data[i:i+batch_size_validation, :, :], dtype='float') batched_val_labels = np
浏览 0
提问于2018-05-10
得票数 1
回答已采纳
1
回答
当使用tf.Tensor时,不允许使用tf.keras.metrics.Accuracy作为Python。
、
、
我正在使用tf.keras.metrics,我使用它的方式如下:
tf.argmax
(support_y, axis=1))b_softmax = tf.nn.so
浏览 4
提问于2021-01-13
得票数 0
1
回答
TensorFlow:打印每次迭代的输出值
sess.run(train_step, feed_dict={x: f1, y_: l1}) print(sess.run(
tf.argmax
(l1, 1))) print('********
浏览 0
提问于2017-01-25
得票数 0
1
回答
流多类分类损失
、
tf.nn.sparse_softmax_cross_entropy_with_logits(logits=y_hat, labels=self.label)) self.prediction =
tf.argmax
浏览 0
提问于2018-09-12
得票数 0
回答已采纳
4
回答
TensorFlow:关于
tf.argmax
()和tf.equal()的问题
、
、
: sess.run(init) correct_prediction = tf.equal(
tf.argmax
(pred, 1),
tf.argmax
(y, 1)) accuracy = tf.reduce_mean(tf.cast(correct_prediction, "float"))print ("Accuracy:", accuracy.eval({x: X_test, y: y_test_o
浏览 0
提问于2017-01-18
得票数 37
1
回答
tensorflow.python.framework.errors_impl.InvalidArgumentError:不兼容形状:[10]与[10000]
、
、
、
、
num_classes])) y_pred = tf.nn.softmax(logits) y_pred_cls =
tf.argmax
浏览 3
提问于2017-09-17
得票数 0
5
回答
InvalidArgumentError:应为范围[-1,1]中的维度,但实际为1
、
、
、
、
我不确定这个错误是什么意思。当我尝试计算acc时出现此错误我试过查找解决方案,但在网上找不到任何解决方案。你知道是什么导致了我的错误吗?
浏览 3
提问于2017-06-25
得票数 8
2
回答
tensorflow上的不相容形状
、
、
、
y_conv))correct_prediction = tf.equal(
tf.argmax
(y_conv,1),
tf.argmax
(y_,1)) sess.run
浏览 2
提问于2017-04-07
得票数 0
回答已采纳
1
回答
tensorflow-ValueError:仅调用`sparse_softmax_cross_entropy_with_logits`
、
、
、
、
Videos/Chapter-three/2 - MNIST Logistic Regression L2 Regularization.py", line 38, in loss logits,
tf.argmax
浏览 8
提问于2020-02-27
得票数 0
回答已采纳
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
TensorFlow实现识别手写数字识别
Tensorflow hello world
现在知道还不算晚,输入示例自动生成代码,谷歌开源这项神器要火
深度学习实现NBA球星颜值打分完整案例(二)
输入示例,自动生成代码:TensorFlow官方工具TF-Coder已开源
热门
标签
更多标签
云服务器
ICP备案
对象存储
实时音视频
即时通信 IM
活动推荐
运营活动
广告
关闭
领券