Skip to content

Instantly share code, notes, and snippets.

View FFY00's full-sized avatar
🌈
struggling to live

Filipe Laíns 🇵🇸 FFY00

🌈
struggling to live
View GitHub Profile

Keybase proof

I hereby claim:

  • I am FFY00 on github.
  • I am ffy00 (https://keybase.io/ffy00) on keybase.
  • I have a public key whose fingerprint is 424E B977 78FE 8158 3155 4A39 3D1B 7EE0 FD6E 8E5A

To claim this, I am signing this object:

@FFY00
FFY00 / .gitignore
Created July 18, 2017 20:21 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@FFY00
FFY00 / Tensorflow-1-wPlot.py
Last active April 7, 2018 01:35
Tensorflow Start - Example #1 (Gradient Descent with Plot)
# Tensorflow #1 Example
# Tensorflow example of Gradient Descent
# on a linear equation (y = mx + b) with
# a Plot showing the values learning curve
#
# https://github.com/FFY00/DeepLearning-Studies
import tensorflow as tf
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
@FFY00
FFY00 / Tensorflow-1.py
Last active June 29, 2017 15:41
Tensorflow Start - Example #1 (Gradient Descent)
# Tensorflow #1 Example
# Tensorflow example of Gradient Descent
# on a linear equation (y = mx + b)
#
# https://github.com/FFY00/DeepLearning-Studies
import tensorflow as tf
m = tf.Variable([.3], dtype=tf.float32)