We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
trainable
1 parent 72e3be4 commit 6bc37c3Copy full SHA for 6bc37c3
bioimageio/core/model_adapters/_tensorflow_model_adapter.py
@@ -101,12 +101,12 @@ def _get_network( # pyright: ignore[reportUnknownParameterType]
101
if self.use_keras_api:
102
try:
103
return tf.keras.layers.TFSMLayer(
104
- weight_file, trainable=False, call_endpoint="serve"
+ weight_file, call_endpoint="serve"
105
) # pyright: ignore[reportUnknownVariableType]
106
except Exception as e:
107
108
109
- weight_file, trainable=False, call_endpoint="serving_default"
+ weight_file, call_endpoint="serving_default"
110
111
except Exception as ee:
112
logger.opt(exception=ee).info(
0 commit comments