Skip to content

Instantly share code, notes, and snippets.

View jisungk's full-sized avatar

Ji-Sung Kim jisungk

View GitHub Profile
@jisungk
jisungk / tf_tutorial.py
Last active January 12, 2023 02:26
Dead simple TensorFlow 1.X tutorial: Training a feedforward neural network
"""Dead simple tutorial for defining and training a small feedforward neural
network (also known as a multilayer perceptron) for regression using TensorFlow 1.X.
Introduces basic TensorFlow concepts including the computational graph,
placeholder variables, and the TensorFlow Session.
Author: Ji-Sung Kim
Contact: hello (at) jisungkim.com
"""