Skip to content

Instantly share code, notes, and snippets.

View jisungk's full-sized avatar

Ji-Sung Kim jisungk

View GitHub Profile
@jisungk
jisungk / README.md
Last active May 14, 2025 15:44
Twitter Impersonator PSA

I do not have an X / Twitter account.

Someone is impersonating me. They claimed my previous username after I deleted my old account: https://twitter.com/jisungkimm

Beware: they are promoting crypto scams.

Please report them to X for impersonation. Thank you.

@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
"""