You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, this is due to an update to PyG's Data object in the last versions. They changed Data.keys from property to method. We'll find a solution for tsl's Data accordingly, thanks for the feedback!
Hi, tried to make a StaticBatch from a list of Data objects and it crashed with:
---> 76 for key in elem.keys:
77 if key == 'transform':
78 out[key] = static_scaler_collate([data[key] for data in data_list])
TypeError: 'method' object is not iterable
Putting () after elem.keys fixes the problem.
The text was updated successfully, but these errors were encountered: