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 b1f2da3 + 03b3d3b commit 3615fb1Copy full SHA for 3615fb1
chebai_graph/preprocessing/datasets/chebi.py
@@ -176,9 +176,8 @@ def _merge_props_into_base(self, row):
176
molecule_attr=molecule_attr,
177
)
178
179
- def load_processed_data(self, kind: str = None, filename: str = None):
180
- """Combine base data set with property values for atoms and bonds."""
181
- 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)
182
base_df = pd.DataFrame(base_data)
183
for property in self.properties:
184
property_data = torch.load(
0 commit comments