用tensorflow训练模型时,很自然的想到要同时验证模型的效果,得到mAP、loss等参数,从而判断什么时候可以终止训练,防止欠拟合或者过拟合。幸运的是,tensorflow官方已经给出了验证的脚本eval.py,网上找了很多资料,都没有人能把使用方法……继续阅读 » 宗孝鹏 4年前 (2021-04-26) 1341浏览 0评论155个赞
在《TensorFlow之目标检测API接口调试(超详细)》文章中,介绍了tensorflow API接口调用方法,详细……继续阅读 » 宗孝鹏 4年前 (2021-04-26) 1554浏览 0评论2121个赞
2018-04-13 23:06:58.664369: W T:\src\github\tensorflow\tensorflow\core\common_runtime\bfc_allocator.cc:279] ************************************************************************……继续阅读 » 开心洋葱 7年前 (2018-04-13) 2082浏览 0评论2500个赞
ValueError: Trying to share variable discriminator/d_h4_lin/Matrix, but specified shape (4608, 1) and found shape (18432, 1).Traceback (most recent call last): File "mai……继续阅读 » 开心洋葱 7年前 (2018-04-10) 1275浏览 0评论229个赞
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX22018-04-09 11:04:23.472874: I C:\tf_jenkins\workspace\rel-win\M\windows\PY\36\tensorflo……继续阅读 » 开心洋葱 7年前 (2018-04-09) 2163浏览 0评论1013个赞
TensorFlow CPU切换到GPU,CPU/GPU互换with tf.Session() as ses: with tf.device("/gpu:1"): matrix1=tf.constant([[3.,3.]]) matrix2=tf.constant([[2.],[2.]])……继续阅读 » 开心洋葱 7年前 (2018-02-08) 1493浏览 0评论2519个赞
AttributeError: module ‘tensorflow‘ has no attribute ‘mul’tensorflow升级到1.0后新版本,tf.mul已经在新版本中被移除,请使用 tf.multiply 代替……继续阅读 » 开心洋葱 7年前 (2018-02-07) 3054浏览 0评论1706个赞