Skip to content

Instantly share code, notes, and snippets.

View pdewilde's full-sized avatar
🍕
Keeping it Simple

Parker DeWilde pdewilde

🍕
Keeping it Simple
View GitHub Profile
@tnlogy
tnlogy / micrograd.lua
Last active September 30, 2024 20:14
micrograd.lua
--# Main
-- NN
function setup()
-- Neural Network of 3 layers with 3 inputs
local x = {Value(1), Value(1), Value(1)}
local layer1 = Layer(3, 4) -- layer of 4 neurons with 3 inputs
local layer2 = Layer(4, 4) -- layer of 4 neurons with 4 inputs
local layer3 = Layer(4, 1) -- layer of 1 neuron with 4 inputs
@lazywei
lazywei / install_mosh_locally.sh
Created January 25, 2015 05:30 — forked from xiaom/install_mosh_locally.sh
Install mosh server without root permission
#!/bin/sh
# this script does absolutely ZERO error checking. however, it worked
# for me on a RHEL 6.3 machine on 2012-08-08. clearly, the version numbers
# and/or URLs should be made variables. cheers, [email protected]
mkdir mosh
cd mosh