-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: Add imports for diffusion and vision cached model classes to `ar…
…tkit.api` (#25) * add imports to artkit.api * API: move CachedDiffusionModel up to .diffusion * API: move CachedVisionModel up to .vision * API: re-remove .base packages from artkit.api * DOC: update release notes * API: re-add cision and diffusion packages to artkit.api * BUILD: prepare for next release (#15) * BUILD: remove dependency on aiolimiter * BUILD: relax ptools dependency for future minor releases * BUILD: adjust build config * BUILD: update version to 1.0.1 * BUILD: require pytest~=8.2 for test runs * BUILD: rephrase dependencies using ~= * DOC: add comments to release pipeline * DOC: add comments to release pipeline * BUILD: move LLM dependencies * BUILD: fix typo in meta.yaml * BUILD: remove quotes from meta.yaml * updated and commented on workflow triggers, conditions, dependencies * BUILD: move LLM-specific packages to min/max configs and list them in conda/tox test configs * DOC: add comments to release pipeline * BUILD: minor tweaks to the release pipeline * BUILD: include aiohttp in mypy dependencies * BUILD: check version consistency only when preparing/pushing a release * BUILD: enforce test env dependency versions only if specified * BUILD: set tox env name to py3 everywhere * BUILD: preserve test dependencies in default build * BUILD: explicitly state tox.ini path * BUILD: pytorch is torch on PyPi * BUILD: move test dependencies to tox base testenv * BUILD: remove old pytest & linting actions now integrated with pipeline * BUILD: move test dependencies to tox base testenv * BUILD: consistently refer to pytorch as 'torch' * BUILD: add comments to tox.ini * BUILD: run min/max matrix tests with different python versions * BUILD: split out matrix exclusions for 3.12 * BUILD: don't build matplotlib from source during tests --------- Co-authored-by: Matthew Wong <[email protected]> Co-authored-by: Andy Moon <[email protected]> * DOC: Miscellaneous cleanups (#26) * cleanup virtual env setup and local module import sections * add empty line after section headers in issues templates for improved readability * equitability tutorial: fix typos * MacOS or Unix --------- Co-authored-by: j-ittner <[email protected]> Co-authored-by: Matthew Wong <[email protected]> Co-authored-by: Andy Moon <[email protected]>
- Loading branch information
1 parent
15e85a3
commit 5d0f521
Showing
9 changed files
with
33 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
Release Notes | ||
============= | ||
============= | ||
|
||
*artkit* 1.0.1 | ||
-------------- | ||
|
||
- FIX: :class:`.CachedDiffusionModel` and :class`CachedVisionModel` are now also | ||
available through the :mod:`artkit.api` module. Bot classes had been defined in the | ||
:mod:`artkit.diffusion.base` and :mod:`artkit.vision.base` modules, respectively, | ||
even though they are not abstract base classes. The fix moves both classes one level | ||
up to the :mod:`artkit.diffusion` and :mod:`artkit.vision` modules, which also exposes | ||
then through the :mod:`artkit.api` module. | ||
|
||
|
||
*artkit* 1.0.0 | ||
-------------- | ||
|
||
Initial release of *artkit*. |
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
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 |
---|---|---|
|
@@ -18,5 +18,4 @@ | |
Base classes for the diffusion model | ||
""" | ||
|
||
from ._adapter import * | ||
from ._diffusion import * |
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
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 |
---|---|---|
|
@@ -18,5 +18,4 @@ | |
Base classes for the vision model | ||
""" | ||
|
||
from ._adapter import * | ||
from ._vision import * |
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