Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/coolashishpt/tensorflow

Learning Deep TensorFlow End-To-End Process
https://github.com/coolashishpt/tensorflow

learning-by-doing tensorflow tensorflow-tutorial tensorflow-tutorials

Last synced: 7 days ago
JSON representation

Learning Deep TensorFlow End-To-End Process

Awesome Lists containing this project

README

        

# TensorFlow
Learning Deep TensorFlow End-To-End Process

Working...

Hello World with Tensorflow..

import tensorflow as tf

cons = tf.constant("Hello World!")

sess = tf.Session()

print(sess.run(cons))

>>> Hello World!