-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat : GenerateMode enum added * feat : mode added to generate method * fix : _GI_initializer updated * fix : generate_params_filter function updated * fix : __init__.py updated * fix : minor bug in generate method fixed * fix : generate_params_filter function updated * fix : minor bug in generate method fixed * update : readme updated. * update : save/load config functions update accordingly. * test : a test for generation_mode added. * log : changes logged. * test : more tests added. * doc : minor edit in generate mode section in README.md * fix : autopep8 * doc : generate_mode example updated --------- Co-authored-by: Sadra Sabouri <[email protected]>
- Loading branch information
1 parent
04d21c0
commit e895b97
Showing
8 changed files
with
94 additions
and
12 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Samila modules.""" | ||
from .genimage import GenerativeImage | ||
from .params import Projection, Marker, Gateway, VALID_COLORS, SAMILA_VERSION | ||
from .params import Projection, GenerateMode, Marker, Gateway, VALID_COLORS, SAMILA_VERSION | ||
from .errors import samilaDataError, samilaGenerateError | ||
__version__ = SAMILA_VERSION |
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
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