Every line of 'keras copy model' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
123 def clone_network(self,src_model): 124 return keras.models.Sequential.from_config(src_model.get_config())
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
9 def clone_model(model, custom_objects={}): 10 # Requires Keras 1.0.7 since get_config has breaking changes. 11 config = { 12 'class_name': model.__class__.__name__, 13 'config': model.get_config(), 14 } 15 clone = model_from_config(config, custom_objects=custom_objects) 16 clone.set_weights(model.get_weights()) 17 return clone