-
-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.2.0, MinDalleTorch -> MinDalle, breaking change
- Loading branch information
Showing
10 changed files
with
43 additions
and
45 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
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 +1 @@ | ||
from .min_dalle_torch import MinDalleTorch | ||
from .min_dalle import MinDalle |
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,3 +1,3 @@ | ||
from .dalle_bart_encoder_torch import DalleBartEncoderTorch | ||
from .dalle_bart_decoder_torch import DalleBartDecoderTorch | ||
from .dalle_bart_encoder import DalleBartEncoder | ||
from .dalle_bart_decoder import DalleBartDecoder | ||
from .vqgan_detokenizer import VQGanDetokenizer |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,9 @@ | |
setuptools.setup( | ||
name='min-dalle', | ||
description = 'min(DALL·E)', | ||
version='0.1.4', | ||
version='0.2.0', | ||
author='Brett Kuprel', | ||
author_email = '[email protected]', | ||
author_email='[email protected]', | ||
packages=[ | ||
'min_dalle', | ||
'min_dalle.models' | ||
|
@@ -18,6 +18,7 @@ | |
keywords = [ | ||
'artificial intelligence', | ||
'deep learning', | ||
'text to image' | ||
'text-to-image', | ||
'pytorch' | ||
] | ||
) |