Skip to content

Commit c0f2eb0

Browse files
committed
default token shifting to false for now
1 parent b45a931 commit c0f2eb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dalle_pytorch/transformer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def __init__(
144144
image_fmap_size = None,
145145
sparse_attn = False,
146146
stable = False,
147-
shift_tokens = True
147+
shift_tokens = False
148148
):
149149
super().__init__()
150150
layers = nn.ModuleList([])

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
name = 'dalle-pytorch',
55
packages = find_packages(),
66
include_package_data = True,
7-
version = '1.0.0',
7+
version = '1.0.1',
88
license='MIT',
99
description = 'DALL-E - Pytorch',
1010
author = 'Phil Wang',

0 commit comments

Comments
 (0)