Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdavis committed Sep 13, 2023
2 parents 4103247 + f7549cf commit 6f718a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ install_requires =
pydantic<2.0
cloudpickle
scipy
xgboost
xgboost<2.0.0
geomloss
pgmpy
redis
Expand Down
2 changes: 1 addition & 1 deletion src/synthcity/plugins/core/dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ def unpack(self, as_numpy: bool = False, pad: bool = False) -> Any:
longest_observation_seq = max([len(seq) for seq in temporal_data])
return (
np.asarray(static_data),
np.asarray(pd.concat(temporal_data)),
np.asarray(temporal_data),
# masked array to handle variable length sequences
ma.vstack(
[
Expand Down
2 changes: 1 addition & 1 deletion src/synthcity/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.8"
__version__ = "0.2.9"

MAJOR_VERSION = ".".join(__version__.split(".")[:-1])
PATCH_VERSION = __version__.split(".")[-1]

0 comments on commit 6f718a2

Please sign in to comment.