Skip to content

Commit d5f5417

Browse files
Bump version.
1 parent c5b7a0e commit d5f5417

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## v0.2.14 - 2023-05-15
4+
5+
- Added support for LoRA training.
6+
37
## v0.2.13 - 2023-05-03
48

59
- Adding VGG models.

pyproject.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tfimm"
3-
version = "0.2.13"
3+
version = "0.2.14"
44
description = "TensorFlow port of PyTorch Image Models (timm) - image models with pretrained weights"
55
authors = ["Martins Bruveris <martins.bruveris@gmail.com>"]
66
license = "Apache-2.0"
@@ -34,10 +34,6 @@ markdown = "^3.3.6" # 3.3.5 has a bug with poetry
3434
numpy = "*"
3535
tensorflow = "^2.8"
3636

37-
# pyyaml = { version = "*", optional = true }
38-
#timm = { version = "*" }
39-
#torch = { version = "1.13.1" }
40-
4137
# Documentation
4238
sphinx = { version = "*", optional = true }
4339
sphinx-rtd-theme = { version = "*", optional = true }
@@ -53,8 +49,6 @@ pytest-xdist = "*"
5349
[tool.poetry.extras]
5450
# To compile documentation
5551
docs = ["sphinx", "sphinx-rtd-theme"]
56-
## To load pretrained models from timm; will install PyTorch
57-
#timm = ["pyyaml", "timm"]
5852

5953
[tool.pytest.ini_options]
6054
timeout = 60 # We need tests to be not too slow, because of GitHub limits

tfimm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.13"
1+
__version__ = "0.2.14"

0 commit comments

Comments
 (0)