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.
1 parent ba96980 commit feea315Copy full SHA for feea315
chebai/preprocessing/datasets/pubchem.py
@@ -191,7 +191,7 @@ def _set_processed_data_props(self):
191
- self._num_of_labels: Number of target labels in the dataset.
192
- self._feature_vector_size: 0.
193
"""
194
- with open(self.processed_dir_main, "classes.txt") as f:
+ with open(os.path.join(self.processed_dir_main, "classes.txt")) as f:
195
classes = [f.strip() for f in f.readlines() if f.strip()]
196
197
self._num_of_labels = len(classes)
0 commit comments