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 June 18, 2024 19:02
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
"""