运行Tensorboard出现kernel is dead的情况 在运行tensorflow中可视化框架tensorboard实例时出现kernel is dead情况,单步调试发现问题出在下面这部分: run_opti…
标签:TensorFlow
学习笔记TF061:分布式TensorFlow,分布式原理、最佳实践
分布式TensorFlow由高性能gRPC库底层技术支持。Martin Abadi、Ashish Agarwal、Paul Barham论文《TensorFlow:Large-Scale Machine Learning…
TensorFlow博客翻译——TensorFlow 0.8发布
原文地址 Announcing TensorFlow 0.8 – now with distributed computing support! Wednesday, April 13, 2016 Posted by D…
开源|基于TensorFlow的聊天机器人-ErGo
[云框架]TensorFlow Github地址: https://github.com/cloudframe… TensorFlow是Google开源的人工智能(Machine Intelligence)软…
TensorFlow指定GPU/CPU进行训练和输出devices信息
TensorFlow指定GPU/CPU进行训练和输出devices信息 1.在tensorflow代码中指定GPU/CPU进行训练 with tf.device('/gpu:0'): .... with tf.devic…
windows10+anaconda3+tensorflow(GPU)
2017.6.2安装时间 先装anaconda3或者在anaconda2下win+r cmd控制器 conda create -n Anaconda3 python=3.5 (上一步会在里面出现文件 我剪切到别的地方了)…
tensorflow RNN循环神经网络 (分类例子)-【老鱼学tensorflow】
之前我们学习过用CNN(卷积神经网络)来识别手写字,在CNN中是把图片看成了二维矩阵,然后在二维矩阵中堆叠高度值来进行识别。 而在RNN中增添了时间的维度,因为我们会发现有些图片或者语言或语音等会在时间轴上慢慢展开,有点…
Tensorflow 变量的共享
https://github.com/chenghuige/tensorflow-exp/blob/master/examples/sparse-tensor-classification/ …
tensorflow的Virtualenv安装方式安装
本文介绍了如何在ubuntu上以virtualenv方式安装tensorflow。 安装pip和virtualenv: # Ubuntu/Linux 64-bit sudo apt-get install pyth…
【干货】史上最全的PyTorch学习资源汇总
资源整理自网络,原文地址:https://github.com/INTERMT/Awesome-PyTorch-Chinese 目录 · PyTorch学习教程、手册 · PyTorch视频教程 · NLP&Py…
Tensorflow编译加速CPU
因为我在 python 2.7中导入tensorflow后使用以下命令: sess = tf.Session() 警告/错误: tensorflow/core/platform/cpu_feature_guard.cc:…
深度学习入门实战(二)-用TensorFlow训练线性回归
TensorFlow是谷歌爸爸出的一个开源机器学习框架,目前已被广泛应用,谷歌爸爸出品即使性能不是最强的(其实性能也不错),但绝对是用起来最方便的,毕竟谷歌有Jeff Dean坐镇,这波稳。 0x01 TensorFlo…