Skip to content

Commit 9e1d132

Browse files
author
humanpose1
committed
remove things
1 parent 6202781 commit 9e1d132

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

torch_points3d/.#trainer.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

train.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import hydra
22
from hydra.core.global_hydra import GlobalHydra
33
from omegaconf import OmegaConf
4-
from torch_points3d.trainer import Trainer
4+
from torch_points3d.trainer import LitTrainer
55

66
OmegaConf.register_new_resolver("get_filename", lambda x: x.split('/')[-1])
77
@hydra.main(config_path="conf", config_name="config")
@@ -10,7 +10,7 @@ def main(cfg):
1010
if cfg.pretty_print:
1111
print(OmegaConf.to_yaml(cfg))
1212

13-
trainer = Trainer(cfg)
13+
trainer = LitTrainer(cfg)
1414
trainer.train()
1515

1616
if __name__ == "__main__":

0 commit comments

Comments
 (0)