Skip to content

Latest commit

 

History

History
70 lines (63 loc) · 6.41 KB

File metadata and controls

70 lines (63 loc) · 6.41 KB

ML coding

In this repo I'd build a few examples to show how various ML algorithms works.

Classical Machine learning

Relevant algorithms:

Deep learning

Neural network general:

  • Autograd
  • ✅optimizers: SGD, Adam, RMSProp
  • ✅Gradient computation
  • Backpropagation
  • Integrated gradient feature importance
  • Tensorboard usage

Recsys:

  • ✅Collaborative filtering
  • Pytorch lightening
  • TorchRec

NLP related:

ML infra:

  • Iterator for nested array.
  • In memory SQL engine
  • Spreadsheet with math equation

Reinforcement learning

Statistics:

  • ✅random sample with weights
    • There is a die with $n$ sides. The probability of each side of the die is $p_i$. Write a function to generate $m$ rolls from such die.
    • Notebook
  • ✅design rand10() using rand7