
TensorFlow笔记
学习笔记与实践案例
Techblog of HaoWANG
来源于生活,低于生活。
NDVC Lab——Nonlinear Dynamics and Vibration Control Laboratory, Hong Kong,China;
JH Lab ---- 季华实验室(广东省先进制造科学与技术实验室);
Major In Robotics: Modelling、Control Technology and Vision.
展开
-
TensorFlow笔记(1)- TensorFlow框架
TensorFlow笔记系列是笔者将知识和心得总结得来,内容包括理论知识、体系框架、代码实现等,全系列内容概要如下,分4-5次更新完成,敬请期待。1. 人工智能概述 机器学习 TensorFlow环境配置2. Python语言 Linux基本指令 列表、元组、字典 条件语句、循环语句 类与对象、面向对象的编程 文件操作3. Tenso...原创 2019-01-13 14:25:09 · 617 阅读 · 0 评论 -
CS231n--笔记(2)课程简介
1. Course Description课程简介Computer Vision has become ubiquitous in our society, with applications in search, image understanding, apps, mapping, medicine, drones, and self-driving cars. Core to man...原创 2019-03-25 15:13:03 · 571 阅读 · 0 评论 -
TensorFlow笔记(5)--Keras搭建神经网络详解(中文)
Table of Contents导读:使用Keras开发神经网络1. 简介1.1 例子:皮马人糖尿病数据集1.3 导入数据1.4 定义模型1.5 编译模型1.6 训练模型1.7 测试模型1.8 写出程序1.9 总结导读:上篇文章《TensorFlow笔记(4)--Keras,TensorFlow高级API(英)》https://blog....原创 2019-03-20 19:34:43 · 2403 阅读 · 4 评论 -
TensorFlow笔记(4)--Keras,TensorFlow高级API(英)
Table of ContentsKeras简介Import tf.kerasBuild a simple modelSequential modelConfigure the layersTrain and evaluateSet up trainingInput NumPy dataInput tf.data datasetsEvaluate and p...原创 2019-03-20 13:15:32 · 2291 阅读 · 0 评论 -
TensorFlow笔记(3)--神经网络优化
重要概念:交叉熵:学习率:滑动平均:过拟合:...原创 2019-03-06 23:40:42 · 534 阅读 · 0 评论 -
LearnOpenCV 项目博客总结
LearnopencvLearn OpenCV : C++ and Python Examples. You can find the details at LearnOpenCV.comList of Blog PostsBlog Post Gender & Age Classification using OpenCV Deep Learning ( C++/...原创 2019-02-27 13:51:10 · 1180 阅读 · 0 评论 -
卷积神经网络CNN原理以及TensorFlow实现
文章整理:优快云博客https://blog.youkuaiyun.com/xukaiwen_2016/article/details/70880694,详细整理并阐述了卷积神经网络的工作原理以及搭建方法。原创 2019-02-27 13:49:59 · 355 阅读 · 0 评论 -
TensorFlow-gpu使用方法
Table of Contents软硬件:TensorFlow-gpu信息TensorFlow—gpu使用方法(1)TensorFlow—gpu使用方法(2)A.定量设置显存B. 按需设置显存实测:软硬件:GTX1063 CUDA9.1 TensorFlow-gpu Pycharm python3.6TensorFlow-gpu信息i...原创 2019-03-02 14:59:26 · 12963 阅读 · 1 评论 -
训练自己的分类器--01花朵分类
前言:在找工作的时候,经常被问到你自己有没有做过什么项目,我回答跑过手写数字识别,然后就被呵呵了。。。确实这个相对于编程里面的 hello world因此,今天带大家搞个自己的分类器,其实并没有那么难 而且分类器的工业应用很广,例如产品的缺陷检测(检测不同的缺陷类型)等。 1、准备数据花朵的图片数据:http://download.tensorflow.org/ex...原创 2019-02-14 14:38:47 · 1909 阅读 · 1 评论 -
为了性能,别再用pip安装TensorFlow了
导读如果你使用CPU进行模型的训练的话,那么这篇文章对你非常有用,你可以通过一行命令的改变,获得非常大的性能的提升。别再使用pip安装Tensorflow了! 使用conda来代替,如果你不知道conda是什么,它是一个运行跨平台的开源包和环境管理系统。它适用于Mac、Windows和Linux。如果你还没有使用conda,我建议你一开始就使用它,因为它使得管理数据科学工具变得更加有趣。...原创 2019-02-14 14:30:06 · 8217 阅读 · 0 评论 -
TensorFlow笔记(2)-搭建神经网络
内容概要:搭建一个简单的神经网络,总结搭建八股。张量、计算图、会话基于TensorFlow的NN:用张量表示数据集,用计算图搭建神经网络,再用会话执行计算图,优化线上的权重(参数),得到优化后的模型。 张量(tensor):可以简单理解为多为数组(列表) 阶:张量的维度如果说TensorFlow的第一个词Tensor表明了它的数据结构,那么Flow则体现了它的计算模型。Tenso...原创 2019-01-14 16:59:56 · 428 阅读 · 0 评论 -
TensorFlow问题解决
TensorFlow报错: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. “Python 3.6.5 |Anaconda, Inc.| (default, Apr 26 2018, 08:42:37) [GCC 4.2.1 Compatib...原创 2019-01-13 14:32:12 · 427 阅读 · 0 评论 -
TensorFlow笔记(5)--全面了解机器学习包SciKit-learn
官网传送门:https://scikit-learn.org/stable/index.html一、简介今天为大家介绍的是scikit-learn。sklearn是一个Python第三方提供的非常强力的机器学习库,它包含了从数据预处理到训练模型的各个方面。在实战使用scikit-learn中可以极大的节省我们编写代码的时间以及减少我们的代码量,使我们有更多的精力去分析数据分布,...原创 2019-07-04 14:15:00 · 531 阅读 · 0 评论