码迷,mamicode.com
首页 >  
搜索关键字:tensorflow    ( 3407个结果
tensorflow实现Word2vec
# Downloading data. If the file already exists, check that it was received correctly (the file size is the same).# Return filename after download. voc ...
分类:其他好文   时间:2017-06-30 18:56:00    阅读次数:332
C#下使用Tensorflow实现摄像头图像的处理
TensorFlow自带例子已经包含了android和ios下的摄像头图像识别,这里补充一个Windows下的,使用AForge库(www.aforgenet.com)操作摄像头。 代码在这里下载,使用VS2017编译。 http://files.cnblogs.com/files/autosoft ...
分类:Windows程序   时间:2017-06-29 23:57:15    阅读次数:2623
TensorFlow实战-VGGNet
1 from ... import input_data 2 input_data=data_read() 3 import tensorflow as tf 4 5 def conv(name,x,w,b): 6 return tf.nn.relu(tf.nn.bias_add(tf.nn.con... ...
分类:Web程序   时间:2017-06-29 23:49:49    阅读次数:378
GPU版的tensorflow在windows上的安装时的错误解决方案
1.用vs编译cuda的sample时会提示找不到”d3dx9.h”、”d3dx10.h”、”d3dx11.h”头文件的错误,如果没有安装这个插件,在TensorFlow里执行run方法时会导致电脑死机解决方案;可从下载DXSDK_Jun10.exe。2.importtensorflowastf时报ImportError:DLLloadfailed:找不到指定的模块
分类:Windows程序   时间:2017-06-29 17:52:04    阅读次数:283
TensorFlow实战-AlexNet
1 # 导入数据 2 from tensorflow.examples.tutorials.mnist import input_data 3 # 读取数据 4 mnist=input_data.read_data_sets("MNIST_data/",one_hot=True) 5 import ...
分类:Web程序   时间:2017-06-29 11:22:22    阅读次数:279
人工智能一之TensorFlow环境配置
1.安装pip:sudo apt-get install python-pip python-dev 2.定义仅支持CPU的python2.7环境下TensorFlow安装包地址:export TF_BINARY_URL=https://storage.googleapis.com/tensorfl ...
分类:其他好文   时间:2017-06-29 10:01:20    阅读次数:113
AI相关 TensorFlow -卷积神经网络 踩坑日记之一
上次写完粗浅的BP算法 介绍 本来应该继续把 卷积神经网络算法写一下的 但是最近一直在踩 TensorFlow的坑。所以就先跳过算法介绍直接来应用场景,原谅我吧。 TensorFlow 介绍 TF是google开源出来的人工智能库,由python语言写的 官网地址:http://www.tensor ...
分类:其他好文   时间:2017-06-28 23:05:19    阅读次数:321
Tensorflow学习资料
1.TensorFlow 官方文档中文版:http://wiki.jikexueyuan.com/project/tensorflow-zh/ 2.softmax回归简单应用(Tensorflow入门):http://wiki.jikexueyuan.com/project/tensorflow-z ...
分类:其他好文   时间:2017-06-25 11:58:05    阅读次数:138
结构化TensorFlow模型代码
译自http://danijar.com/structuring-your-tensorflow-models/ 使用TensorFlow构建神经网络模型很容易导致较大的代码量,那么如何以可读和可复用的方式构建代码?(没耐心的可直接参考可直接参考源代码https://gist.github.com/ ...
分类:其他好文   时间:2017-06-24 14:41:56    阅读次数:232
Tensorflow常用方法
tf.Graph.as_default() as_default(self) Returns a context manager that makes this `Graph` the default graph. This method should be used if you want to ...
分类:其他好文   时间:2017-06-24 09:57:41    阅读次数:122
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!