adhoc change layers of existing model #2248
-
In TensorFlow, there exists Do you have an idea, how I could generically replace every e.g. conv layer in a model? I looked into the implementation and in my opinion the model's submodules are initialized mostly on the fly while calling |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @LeonhardFeiner, as you point out there is no good way to do this, even |
Beta Was this translation helpful? Give feedback.
Hey @LeonhardFeiner, as you point out there is no good way to do this, even
setup
is called lazily so you don't even have access to sub-modules defined there from the outside. This probably means that for now you probably have to fork the whole model architecture and make changes yourself.