We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e98f7e + 56ef24b commit 03b3d3bCopy full SHA for 03b3d3b
chebai_graph/preprocessing/datasets/chebi.py
@@ -170,9 +170,8 @@ def _merge_props_into_base(self, row):
170
molecule_attr=molecule_attr,
171
)
172
173
- def load_processed_data(self, kind: str = None, filename: str = None):
174
- """Combine base data set with property values for atoms and bonds."""
175
- base_data = super().load_processed_data(kind, filename)
+ def load_processed_data_from_file(self, filename):
+ base_data = super().load_processed_data_from_file(filename)
176
base_df = pd.DataFrame(base_data)
177
for property in self.properties:
178
property_data = torch.load(
0 commit comments