-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentry.py
47 lines (37 loc) · 1.22 KB
/
entry.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import os
import sys
import torch
import logging
from utils.arguments import load_opt_command
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
def main(args=None):
'''
[Main function for the entry point]
1. Set environment variables for distributed training.
2. Load the config file and set up the trainer.
'''
opt, cmdline_args = load_opt_command(args)
command = cmdline_args.command
if cmdline_args.user_dir:
absolute_user_dir = os.path.abspath(cmdline_args.user_dir)
opt['base_path'] = absolute_user_dir
# update_opt(opt, command)
world_size = 1
if 'OMPI_COMM_WORLD_SIZE' in os.environ:
world_size = int(os.environ['OMPI_COMM_WORLD_SIZE'])
if opt['TRAINER'] == 'atmodel':
from trainer import ATModel_Trainer as Trainer
else:
assert False, "The trainer type: {} is not defined!".format(opt['TRAINER'])
trainer = Trainer(opt, command)
os.environ['TORCH_DISTRIBUTED_DEBUG']='DETAIL'
if command == "train":
trainer.train()
elif command == "evaluate":
trainer.eval()
else:
raise ValueError(f"Unknown command: {command}")
if __name__ == "__main__":
main()
sys.exit(0)