Skip to content

Instantly share code, notes, and snippets.

@ferntheplant
ferntheplant / ARENA.md
Last active July 2, 2024 20:18
Notes from ARENA 3.0

ARENA notes

General vocab

  • CNN: convolutional neural net: replace linear layers with convolutions
  • GAN: generator and discriminator training in tandem
  • SGD: stochastic gradient descent
  • Supervised: training data is labeled (MNIST 0-9 digit labels)
  • Unsupervised: training data is unlabeled (DCGAN bedrooms are just bedrooms)
  • Parameters: learned weights and biases within NN layers
@ferntheplant
ferntheplant / symbolic-differentiator.ts
Created May 15, 2024 18:25
rc interview symbolic differentiator
function main() {
for (const t of testCases) {
console.log(`Test case: ${t.desc}`);
console.log(`${test(t) ? "PASS" : "FAIL"}`);
}
}
/**
* Ideas for domain extension
* 1. Taylor Series