Skip to content

Releases: james77777778/keras-image-models

0.2.5

20 Oct 13:51
bb23161
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.4...0.2.5

0.2.4

20 Oct 13:23
cf61558
Compare
Choose a tag to compare

Major Features and Improvements

  • Add more docstrings
  • Fix redownloading issue when using keras.saving.load_model

What's Changed

Full Changelog: 0.2.2...0.2.4

0.2.2

29 May 03:42
e3a9574
Compare
Choose a tag to compare

Major Features and Improvements

  • Add GhostNetV3 (currently only GhostNetV3W100 has ImageNet weights)
  • Improve codes

What's Changed

Full Changelog: 0.2.1...0.2.2

0.2.1

22 May 03:27
e2d31cc
Compare
Choose a tag to compare

Major Features and Improvements

Add arbitrary shape support for MobileViT* and VisionTransformer*

import numpy as np

import kimm

x = np.random.uniform(size=[1, 150, 150, 3])
model = kimm.models.MobileViTXXS(input_shape=[150, 150, 3])
print(model.predict(x, verbose=0).shape)  # [1, 1000]
model = kimm.models.VisionTransformerTiny16(input_shape=[150, 150, 3])
print(model.predict(x, verbose=0).shape)  # [1, 1000]

Add more model weights

  • kimm.models.ConvNeXtXLarge
  • kimm.models.VisionTransformerLarge16
  • kimm.models.VisionTransformerLarge32

Code cleanup and minor improvements

What's Changed

Full Changelog: 0.2.0...0.2.1

0.2.0

16 May 09:28
2160b3e
Compare
Choose a tag to compare

Major Features and Improvements

  • Improve UX of APIs

What's Changed

Full Changelog: 0.1.8...0.2.0

0.1.8

23 Mar 11:28
195a622
Compare
Choose a tag to compare

Major Features and Improvements

  • Add HGNet and HGNetV2

What's Changed

Full Changelog: 0.1.7...0.1.8

0.1.7

01 Feb 12:22
c98226f
Compare
Choose a tag to compare

Major Features and Improvements

  • Add MobileOne

What's Changed

New Contributors

Full Changelog: 0.1.6...0.1.7

0.1.6

29 Jan 15:14
Compare
Choose a tag to compare

Major Features and Improvements

  • Add support for reparameterization technique
  • Add RepVGG

What's Changed

Full Changelog: 0.1.5...0.1.6

0.1.5

26 Jan 13:45
219fe28
Compare
Choose a tag to compare

Major Features and Improvements

  • Add InceptionNeXt
  • Add MobileViTV2

What's Changed

  • Add InceptionNeXt and MobileViTV2 and change naming of MobileNet*V2 and MobileNet*V3 by @james77777778 in #30

Full Changelog: 0.1.4...0.1.5

0.1.4

23 Jan 05:59
1066b55
Compare
Choose a tag to compare

Major Features and Improvements

  • Add export_tflite and export_onnx APIs
  • Add support of channels_first data format

What's Changed

Full Changelog: 0.1.3...0.1.4