Created
April 17, 2019 02:39
-
-
Save JoshVarty/71d9ad0fbb63c366971986bf0b2af745 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Simply pass in a learner and the module you would like to instrument | |
def probeModule(learn, module): | |
hook = StoreHook(learn, modules=flatten_model(module)) | |
learn.callbacks += [ hook ] | |
return hook |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment