This repository was archived by the owner on Apr 10, 2024. It is now read-only.
Random thoughts on modelzoo #27
Open
Description
-
I'd really like to have a convenient way to evaluate a model once without going through the whole rigamarole of setting up a graph.
- Maybe
model.isolated_eval(layer, input)
. - Use cases to consider -- ask Chris for example notebooks
- Most common scenario: want to get activations for a single thing.
- Second most common scenario: we want to get a gradient. Not sure what a super convenient framework for that would look like. Think about attribution workloads here.
- Maybe
-
We need to getDone!model.labels
back. -
It might make sense to attach expensive, precomputed assets to models. For example feature visualization spritemaps.
- Maybe
model.precomputed.vis_spritemaps["mixed4d"]
gives me a url?
- Maybe