Skip to content

Commit

Permalink
add concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
jalencato committed Oct 23, 2023
1 parent 958ccf5 commit 6635175
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/graphstorm/gconstruct/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -1096,6 +1096,8 @@ def process_features(data, ops):
val = val.to_numpy().reshape(-1, 1)
else:
val = val.reshape(-1, 1)
if key in new_data:
val = np.column_stack((new_data[key], val))
new_data[key] = val
return new_data

Expand Down

0 comments on commit 6635175

Please sign in to comment.