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: 3 months ago
JSON representation
Learning Deep TensorFlow End-To-End Process
- Host: GitHub
- URL: https://github.com/coolashishpt/tensorflow
- Owner: coolashishpt
- Created: 2020-05-11T07:05:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-26T17:59:47.000Z (almost 5 years ago)
- Last Synced: 2025-04-07T16:52:18.748Z (3 months ago)
- Topics: learning-by-doing, tensorflow, tensorflow-tutorial, tensorflow-tutorials
- Language: Jupyter Notebook
- Homepage:
- Size: 1.21 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!