Skip to content

Commit

Permalink
Fix reshape shape
Browse files Browse the repository at this point in the history
  • Loading branch information
TimKoornstra committed Oct 28, 2024
1 parent cea67b3 commit cb40dcd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
project = 'VGSLify'
copyright = '2024, Tim Koornstra'
author = 'Tim Koornstra'
release = '0.13.2'
release = '0.13.3'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os

version = "0.13.2"
version = "0.13.3"


# Function to write the version to a _version.py file
Expand Down
2 changes: 1 addition & 1 deletion vgslify/core/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ def reshape(self, spec: str):
else:
seq_length = H * W if W is not None else None

features = C
features = W * C
config = ReshapeConfig(target_shape=(seq_length, features))
layer = self._reshape(config)
self.layers.append(layer)
Expand Down

0 comments on commit cb40dcd

Please sign in to comment.