민서네집

TensorFlow 예제 본문

머신러닝

TensorFlow 예제

브라이언7 2016. 7. 19. 14:28

XOR operation by Neural network



Hello, TensorFlow 예제

# Hello World in TensorFlow
# Run with: python hello-tensorflow.py
# See http://tensorflow.org
# https://github.com/tobigithub/tensorflow-deep-learning/wiki

import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print sess.run(hello)

# END

[출처] https://github.com/tobigithub/tensorflow-deep-learning/blob/master/examples/hello-tensorflow.py


20160701 - Replicating Deep Q Learning with TensorFlow [1/2] - 이선엽



Top Deep Learning Projects

https://github.com/aymericdamien/TopDeepLearning



< 텍스트에 대한 감성 분석하는 예제 - CNN이용해서 문장 감성 - 긍/부정 분류 >


http://www.wildml.com/2015/12/implementing-a-cnn-for-text-classification-in-tensorflow/



< Using Pre-trained Model (VGG): Simple Usage / CNN Fine-tuning on Custom Dataset >


https://github.com/psygrammer/tensorfollow


http://nbviewer.jupyter.org/github/psygrammer/tensorfollow/blob/master/part1/cnn_finetuning/cnn_customdata_vgg_finetune.ipynb


[원 자료]

https://github.com/sjchoi86/tensorflow-101/blob/master/notebooks/cnn_customdata_vgg_finetune.ipynb


Hello, TensorFlow!

https://www.oreilly.com/learning/hello-tensorflow


https://tensorflowkorea.wordpress.com/2016/06/28/hello-tensorflow/


https://github.com/rickiepark/tfk-notebooks/blob/master/Hello-TensorFlow/Hello%2C%20TensorFlow!.ipynb



Linear regression with TensorFlow


http://goodtogreate.tistory.com/entry/Tensorflow-basic-Linear-regression



Comments