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 d8e68cc commit ae61d10Copy full SHA for ae61d10
chebai/preprocessing/migration/chebi_data_migration.py
@@ -35,7 +35,12 @@ def migrate(self):
35
os.makedirs(self._chebi_cls.base_dir, exist_ok=True)
36
print("Migration started..................")
37
self._migrate_old_raw_data()
38
- self._migrate_old_processed_data()
+
39
+ # Either we can combine `.pt` split files to form `data.pt` file
40
+ # self._migrate_old_processed_data()
41
+ # OR
42
+ # we can transform `data.pkl` to `data.pt` file (this seems efficient along with less code)
43
+ self._chebi_cls.setup_processed()
44
print("Migration completed..................")
45
46
def _migrate_old_raw_data(self):
0 commit comments