
Tensorflow
google深度学习框架
曾小蛙
这个作者很懒,什么都没留下…
展开
-
【Keras】MNIST99%准确率。训练自动停止报错:TypeError: ‘>‘ not supported between instances of ‘Nonetype‘ and ‘float‘
问题描述【Tensorflow==1.15.0】使用tf.keras自定义回调函数,设置根据准确率自动停止训练时,报错TypeError: '>' not supported between instances of 'NoneType' and 'float'import tensorflow as tfclass myCallback(tf.keras.callbacks.Callback): def on_epoch_end(self,epoch,logs={})原创 2020-11-09 21:22:23 · 10879 阅读 · 3 评论 -
【BP神经网络】使用opencv调用tensorflow训练的bp神经网络.pb模型
核心参考:本博客代码完全是采用该博主的思路编写的,非常感谢!!How to load the pre-trained model of the tensorflow by using the opencv dnn model!项目背景需根据一批多维数据,回归计算评分,为方便移动端部署,采用C++版的opencv库调用实现BP神经网络的回归模型。思路与参考使用tensorflow搭建bp神经网络,主要有3种方式:方法1:使用加减矩阵运算自己从零搭建层的结构。该方法生成的pb模型,.原创 2020-05-31 13:36:42 · 2100 阅读 · 9 评论 -
【TensorFlow】官方教程—如何快速迁移学习训练自己的模型。How to Retrain an Image Classifier for New Categories
如何训练图像的新的类别分类How to Retrain an Image Classifier for New Categories[https://www.tensorflow.org/hub/tutorials/image_retraining]Modern image recognition models have millions of parameters. Training...转载 2018-07-27 15:23:24 · 1791 阅读 · 0 评论 -
【TensorFlow】3-1构建简单神经网络进行【线性回归】
1.使用numpy生成(-0.5,0.5)范围内,均匀的200个随机点,并在列上增加1维(将点转变成二维矩阵),生成含有正太分布噪声的二次函数分布的散点。 【newaxis用法参考】import numpy as npimport matplotlib.pyplot as plt#使用numpy生成(-0.5,0.5)范围内,均匀的200个随机点,是一维数据x_data=np.li...原创 2018-11-06 16:38:14 · 583 阅读 · 0 评论 -
【TensorFlow】5 Tensorboard的简易使用
5-1 使用Tensorboard查看简单向量相加import tensorflow as tfinput1=tf.constant([1.0,2.0],name="input1")input2=tf.Variable(tf.random_uniform([2]),name="input2")output= tf.add_n([input1,input2],name="add")...原创 2018-11-09 20:30:31 · 316 阅读 · 0 评论 -
【TensorFlow】3-2构建简单单层神经网络进行【训练识别MNIST】
1 自动下载并转化MNIST数据集格式到TF中import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data#载入MNIST数据集,如果不存在,将自动在默认网址下载,并被TF简单处理mnist = input_data.read_data_sets("MNIST_data",o...原创 2018-11-07 18:20:13 · 358 阅读 · 0 评论 -
【目标检测】Keras/Tensorflow+python+yolo3,YOLO_tensorflow-master
一、YOLO_tensorflow-master直接测试[转]参考博文:https://blog.youkuaiyun.com/c20081052/article/details/802607260.运行环境:Win7 + python3.5+ PyCharm 2018 x64+TensorFlow1.6.0+12G内存1. 代码下载链接是:https://github.com/h...原创 2018-11-18 22:52:37 · 3385 阅读 · 10 评论