Skip to content

Instantly share code, notes, and snippets.

View alessiot's full-sized avatar

Alessio T alessiot

  • United States
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alessiot
alessiot / Using Shapley Method with Text Classification.ipynb
Last active November 3, 2019 21:42
Using Shapley Method with Text Classification
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alessiot
alessiot / Download YouTube Spam Comments with R.ipynb
Last active October 31, 2019 13:16
Download YouTube Spam Comments with R
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alessiot
alessiot / grad_viz.ipynb
Last active February 23, 2022 20:07
Visualizing Gradient Descend
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alessiot
alessiot / ode_vs_gradient.ipynb
Last active October 14, 2019 17:17
Solving Back-propagation using Stiff and Non-Stiff Differential Equation Solvers
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alessiot
alessiot / numpy_nn.ipynb
Last active September 30, 2019 17:30
Programming Neural Networks from Scratch
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alessiot
alessiot / VisualizeNN.py
Created September 30, 2019 16:47
Visualize Neural Network with Basic Python
# This Libraray is modified based the work by Milo Spencer-Harper and Oli Blum, https://stackoverflow.com/a/37366154/10404826
# On top of that, I added support for showing weights (linewidth, colors, etc.)
# Contributor: Jianzheng Liu
# Contact: jzliu.100@gmail.com
from matplotlib import pyplot
from math import cos, sin, atan
from palettable.tableau import Tableau_10
from time import localtime, strftime
import numpy as np
@alessiot
alessiot / sklearn_xor.ipynb
Last active September 30, 2019 16:38
Learning XOR with a Multilayer Perceptron Network
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.