Skip to content

Releases: sshane/Konverter

0.2.5 - Better support for converter Keras models

14 Jul 09:02
76995e1
Compare
Choose a tag to compare

PyTorch to Keras adds Activation layers after dense and an input layer out front.

0.2.4.1- Fix PyPi GH Action

25 Feb 21:52
Compare
Choose a tag to compare

0.2.4 - Correctly display when user tries to convert unsupported layer

25 Feb 21:49
Compare
Choose a tag to compare

Fixes an issue when a model contains an unknown or unsupported layer, would show AttributeError as the function that looks up the layer returns False, when we expected an Unsupported() class to be returned.

Reported by Vasileios Kokorakis!

0.2.3 - Fix TF 2.3 activation error

05 Nov 00:26
Compare
Choose a tag to compare
  • Fixes AttributeError: 'function' object has no attribute '_keras_api_names' when using tanh with TF 2.3

0.2.2 - Support LeakyReLU activation

24 Sep 00:56
eb56b55
Compare
Choose a tag to compare
  • Support the LeakyReLU activation with custom alpha

0.2.1 Patch

13 Jul 23:48
Compare
Choose a tag to compare

Specify numpy version ~1.18.3 to avoid deprecation warning when running np.array() on non-array weights and biases. numpy 1.19 will work but will display deprecated bahavior warning. Further numpy releases may not work with Konverter when konverting

Release 0.2 - The Interface Update

08 Jul 17:48
Compare
Choose a tag to compare
  • New custom CLI with pretty colors and emoji
    • Add support for a few different flags with CLI: custom indentation, whether Konverter should be silent, and whether to prepend watermark
  • If an output file path is not given, use the input model's name and current directory to save konverted output model.

Bug fixes and minor changes:

  • Fixed numpy deprecated behavior of creating array of objects without specifying dtype=object
  • Removed click and typer dependencies

0.1.7 Patch

23 May 06:24
Compare
Choose a tag to compare

Fixes:

  • 'Unsupported' object has no attribute 'info'
  • Support differently-named Sequential models

0.1.6 Release

08 May 02:02
Compare
Choose a tag to compare

Support for BatchNormalization added. Works with all supported layers, along with Dropout

0.1.5 Official Release

01 May 14:21
Compare
Choose a tag to compare
  • Update README.md with instructions on how to install and use.
  • Add example files in examples/
  • Fix tests