You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to #107, the trainability status of a layer is not taken into account when importing it from JSON configuration, e.g. if a layer is freezed in the saved JSON configuration it might be loaded as trainable (depending on the default value of isTrainable property for that layer).
To fix this, either each of the layer creator functions in ModelLoader.kt should be modified to set the isTrainable property of the created layer with value of config.trainable; or alternatively, this could be done in a single place like convertToLayer function for all layers. Further, one should take into account this issue when implementing a fix.