-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix onnx import issue and bump to 0.4.3
- Loading branch information
1 parent
aa8094b
commit 814fa43
Showing
5 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.4.2" | ||
__version__ = "0.4.3" | ||
|
||
from . import config | ||
from . import trainers | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ requires = ["setuptools", "wheel"] | |
|
||
[project] | ||
name= "lanfactory" | ||
version= "0.4.2" | ||
version= "0.4.3" | ||
authors= [{name = "Alexander Fenger", email = "[email protected]"}] | ||
description= "Package with convenience functions to train LANs" | ||
readme = "README.md" | ||
|
@@ -24,7 +24,7 @@ dependencies=[ | |
"SciPy >= 1.6.3", | ||
"pandas >= 1.2.4", | ||
"torch >= 1.7", | ||
"jax >= 0.4.2", | ||
"jax >= 0.4.14", | ||
"flax >= 0.6.4", | ||
"optax >= 0.1.4", | ||
"tqdm >= 4.0.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,6 @@ | |
"lanfactory.config", | ||
"lanfactory.trainers", | ||
"lanfactory.utils", | ||
"lanfactory.onnx" | ||
], | ||
) |