<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Tensorflow on Machine Learning</title>
    <link>https://feisky.xyz/machine-learning/tensorflow.html</link>
    <description>Recent content in Tensorflow on Machine Learning</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-cn</language><atom:link href="https://feisky.xyz/machine-learning/tensorflow/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Kubeflow</title>
      <link>https://feisky.xyz/machine-learning/tensorflow/kubeflow.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/kubeflow.html</guid>
      <description>Kubeflow 是 Google 发布的用于在 Kubernetes 集群中部署和管理 tensorflow 任务的框架。主要功能包括 用于管理 Jupyter 的 JupyterHub 服务 用于管理训练任务的 Tensorflow Training Controller 用于模型服务的 TF Serving 容器 部署 部署之前需</description>
    </item>
    
    <item>
      <title>安装</title>
      <link>https://feisky.xyz/machine-learning/tensorflow/install.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/install.html</guid>
      <description>CPU 版 最简单的方法使用 pip 来安装 # Python 2.7 pip install --upgrade tensorflow # Python 3.x pip3 install --upgrade tensorflow docker 使用镜像 gcr.io/tensorflow/tensorflow 启动 CPU 版 Tensorflow： docker run -it -p 8888:8888 gcr.io/tensorflow/tensorflow 验证安装 $ python &amp;gt;&amp;gt;&amp;gt; import tensorflow as tf &amp;gt;&amp;gt;&amp;gt; hello = tf.constant(&amp;#39;Hello,</description>
    </item>
    
    <item>
      <title>入门</title>
      <link>https://feisky.xyz/machine-learning/tensorflow/hello.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/hello.html</guid>
      <description>TensorFlow 安装 pip install tensorflow 或者在 docker 中 # CPU only docker run -it -p 8888:8888 tensorflow/tensorflow # GPU version nvidia-docker run -it -p 8888:8888 tensorflow/tensorflow:latest-gpu TensorFlow 入门 from __future__ import print_function, division import tensorflow as tf print(&amp;#39;Loaded TF version&amp;#39;, tf.__version__) 简单示例 import tensorflow as tf a = tf.constant(5, name=&amp;#34;input_a&amp;#34;) b = tf.constant(3, name=&amp;#34;input_b&amp;#34;) c = tf.mul(a, b, name=&amp;#34;mul_c&amp;#34;) d = tf.add(a, b,</description>
    </item>
    
    <item>
      <title>GPU</title>
      <link>https://feisky.xyz/machine-learning/tensorflow/gpu.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/gpu.html</guid>
      <description>TensorFlow 支持 CPU 和 GPU 这两种设备，标识设备的方法为: &amp;ldquo;/cpu:0&amp;rdquo;: 机器中的 CPU &amp;ldquo;/gpu:0&amp;rdquo;: 机器中的 GPU, 如果你有一个的话. &amp;ldquo;/gpu:1&amp;rdquo;: 机器中的第二个 GPU, 以此类推&amp;hellip; 记录设备指派情</description>
    </item>
    
    <item>
      <title>深度学习</title>
      <link>https://feisky.xyz/machine-learning/tensorflow/deeplearning.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/deeplearning.html</guid>
      <description>Google Cloud Platform 推出了一个 &amp;ldquo;Learn TensorFlow and deep learning, without a Ph.D.&amp;rdquo; 的教程，介绍了如何基于 Tensorflow 实现 CNN 和 RNN，链接在 这里。 Youtube Slide1 Slide2 Sample Code 另外，完整版笔记见 这里。</description>
    </item>
    
    <item>
      <title>分布式训练</title>
      <link>https://feisky.xyz/machine-learning/tensorflow/distributed.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/distributed.html</guid>
      <description>相关概念 客户端 (Client): 客户端是一个用于建立 TensorFlow 计算图并创立与集群进行交互的会话层 tensorflow::Session 的程序。一般客户端是通过 python 或 C++ 实现的。一个独立的客户端进程可以同时</description>
    </item>
    
    <item>
      <title>Debug tensorflow</title>
      <link>https://feisky.xyz/machine-learning/tensorflow/debug.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/debug.html</guid>
      <description>See wookayin&amp;rsquo;s guide.</description>
    </item>
    
    <item>
      <title>Tensorflow For Go</title>
      <link>https://feisky.xyz/machine-learning/tensorflow/go.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/go.html</guid>
      <description>Tensorflow For Go 支持 Linux 和 MacOS。 安装 下载动态链接库 $ TF_TYPE=&amp;#34;cpu&amp;#34; # Change to &amp;#34;gpu&amp;#34; for GPU support $ TARGET_DIRECTORY=&amp;#39;/usr/local&amp;#39; $ curl -L &amp;#34;https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.2.0.tar.gz&amp;#34; | sudo tar -C $TARGET_DIRECTORY -xz # Linux 上还需要执行 ldconfig $ sudo ldconfig 下载 Tensorflow Go 库 $ go get github.com/tensorflow/tensorflow/tensorflow/go 下载完成</description>
    </item>
    
    <item>
      <title></title>
      <link>https://feisky.xyz/machine-learning/tensorflow/getting-started.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/getting-started.html</guid>
      <description>Getting Started in TensorFlow A look at a very simple neural network in TensorFlow This is an introduction to working with TensorFlow. It works through an example of a very simple neural network, walking through the steps of setting up the input, adding operators, setting up gradient descent, and running the computation graph.
A simple neural network Let&amp;rsquo;s start with code. We&amp;rsquo;re going to construct a very simple neural network computing a linear regression between two variables, y and x.</description>
    </item>
    
    <item>
      <title></title>
      <link>https://feisky.xyz/machine-learning/tensorflow/gpu_list.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/gpu_list.html</guid>
      <description>使用tensorflow查询GPU设备列表 from tensorflow.python.client import device_lib def get_all_gpus(): local_device_protos = device_lib.list_local_devices() return [x.name for x in local_device_protos if x.device_type == &amp;#39;GPU&amp;#39;] print(get_all_gpus()) 注意：docker容器开启privileged参数后可以访</description>
    </item>
    
    <item>
      <title></title>
      <link>https://feisky.xyz/machine-learning/tensorflow/install-src.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/install-src.html</guid>
      <description>Tensorflow源码安装 以Ubuntu 16.04为例，介绍Tensorflow源码安装的方法。 下载tensorflow源码 git clone https://github.com/tensorflow/tensorflow 安装ba</description>
    </item>
    
    <item>
      <title></title>
      <link>https://feisky.xyz/machine-learning/tensorflow/mnist-tutorial/readme.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/mnist-tutorial/readme.html</guid>
      <description>This repository was moved to github.com/GoogleCloudPlatform/tensorflow-without-a-phd/tensorflow-mnist-tutorial </description>
    </item>
    
    <item>
      <title></title>
      <link>https://feisky.xyz/machine-learning/tensorflow/serve.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/serve.html</guid>
      <description>Tensorflow serving </description>
    </item>
    
    <item>
      <title></title>
      <link>https://feisky.xyz/machine-learning/tensorflow/tensorboard.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://feisky.xyz/machine-learning/tensorflow/tensorboard.html</guid>
      <description>Start tensorboard tensorboard --logdir=logs/ Main Graph </description>
    </item>
    
  </channel>
</rss>
