Setup TensorFlow Dev-Env on Mac OS X

Setup TensorFlow Dev-Env on Mac OS X_第1张图片
[A Neural Algorithm of Artistic Style](http://arxiv.org/abs/1508.06576)

setup tensorflow on OS X and run an interesting demo : Transfer Style But Not Color

Dependencies

  • Mac OS X
  • Python 2.7.6
  • pip : scikit-image/tensorflow
  • Homebrew

Procedure

  1. before setup tensorflow, u maybe should uninstall old version protobuf
pip uninstall protobuf
brew uninstall protobuf
  1. follow the Download and Setup, like my machine is below:
    Setup TensorFlow Dev-Env on Mac OS X_第2张图片
    MacBook without GPU

    so I will select what I need:
# Mac OS X, CPU only, Python 2.7:
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/tensorflow-0.9.0rc0-py2-none-any.whl
# Python 2
$ sudo pip install --upgrade $TF_BINARY_URL
Setup TensorFlow Dev-Env on Mac OS X_第3张图片
pip install
  1. test tensorflow to see is ok or not


    Setup TensorFlow Dev-Env on Mac OS X_第4张图片
    hello world
  2. try color-independent-style-transfer project
➜  ~ sudo pip install scikit-image
➜  ~ git clone https://github.com/pavelgonchar/color-independent-style-transfer
➜  ~ cd olor-independent-style-transfer
➜  ~ color-independent-style-transfer git: master) ✗ 
➜  ~ python run.py
result.png

Reference

  • A Neural Algorithm of Artistic Style
  • Transfer Style But Not Color
  • color-independent-style-transfer
  • Download and Setup
  • Error in python after 'import tensorflow': TypeError: init() got an unexpected keyword argument 'syntax'
  • 0.5.0 wheel install on Mac OS X using Homebrew python broken #11
  • virtualenv python 2.7.6 import tensorflow. TypeError: init() got an unexpected keyword argument 'syntax' #57
  • 安装tensorflow遇到 TypeError: init() got an unexpected keyword argument 'syntax'
  • scikit-image : Image processing in Python

你可能感兴趣的:(Setup TensorFlow Dev-Env on Mac OS X)