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
The kgdata.pkl is generated using PyG v1.4.2, therefore it is not able to load when using a PyG version >2.
If you are using the PyG with a version > 2, use the following steps to load the input data of APRILE:
download the kgdata_dict.pkl, whose data type is Dictionary.
load data and convert it to PyG Data type.
fromtorch_geometric.dataimportData# load data from filegdata=AprileQuery.load_from_pkl('kgdata_dict.pkl')
# convert data type to PyG Datagdata=Data.from_dict(gdata)
The text was updated successfully, but these errors were encountered:
The
kgdata.pkl
is generated using PyG v1.4.2, therefore it is not able to load when using a PyG version >2.If you are using the PyG with a version > 2, use the following steps to load the input data of APRILE:
kgdata_dict.pkl
, whose data type isDictionary
.The text was updated successfully, but these errors were encountered: