Skip to main content

Edits tensorflow model layers

Project description

TFSurgeon

Allows for dynamic tensorflow keras model edition. You can install this package with pip and call it as from tfsurgeon import edit_model.

How to use

  • remove layers based on layer type
  • remove layers based on name or index
  • replace layers from one type to another
  • replace specific layer (name) by another layer (callable)

see docstring for examples in src/tfsurgeon/tfsurgeon.py.

import

from tfsurgeon import edit_model
import tensorflow as tf

model = tf.keras.applications.MobileNetV2(weights=None)
new_model = edit_model(
    model=model,
    replace_layers_by_types=[
        [tf.keras.layers.BatchNormalization, tf.keras.layers.LayerNormalization]
    ],
    verbose=True,
)

CLI

no supported yet

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tfsurgeon-0.0.5.tar.gz (7.3 kB view hashes)

Uploaded Source

Built Distribution

tfsurgeon-0.0.5-py3-none-any.whl (12.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page