SebChw / Actually-Robust-Training

Actually Robust Training - Tool Inspired by Andrej Karpathy "Recipe for training neural networks". It allows you to decompose your Deep Learning pipeline into modular and insightful "Steps". Additionally it has many features for testing and debugging neural nets.
MIT License
44 stars 0 forks source link

Missing Karpathy tips #72

Closed trebacz626 closed 1 year ago

trebacz626 commented 1 year ago

here is a list of karpathy tips that we can implement as steps

SebChw commented 1 year ago

TBD in v3

kordc commented 1 year ago

I'd also love the visualize just before the net - but it's so task-agnostic that I don't have any idea how to implement it well

kordc commented 1 year ago

I think it should be converted to 4 different issues, where we decide whether we have time to do it or not

SebChw commented 1 year ago

Generally I think most of these shouldn't be steps themselves.

  1. Init well - this should be model modifier - or even some necessary function to implemetn
  2. Human baseline - For this we can only warn user to use metrics different than just loss.
  3. This is very nice Idk if this should be a step or again a network modifier
  4. Concerning visualize just before the net for me this is a perfect usecase of ArtDecorator
kordc commented 1 year ago
  1. Maybe not necessary, but it could be a function to implement.
  2. Sure, just information that one can write its own "metric"
  3. to be discussed
  4. Sure, maybe it could be a use case shown in some tutorial. Whole tutorial of ArtDecorator
SebChw commented 1 year ago
  1. It is actually used in the very first tutorial

image

kordc commented 1 year ago

Can I close this issue and create: