-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraining_utils.py
61 lines (53 loc) · 1.84 KB
/
training_utils.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
# Copyright (C) 2021 NVIDIA Corporation. All rights reserved.
# Licensed under the NVIDIA Source Code License.
# See LICENSE at https://github.com/nv-tlabs/ATISS.
# Authors: Despoina Paschalidou, Amlan Kar, Maria Shugrina, Karsten Kreis,
# Andreas Geiger, Sanja Fidler
#
import yaml
try:
from yaml import CLoader as Loader
except ImportError:
from yaml import Loader
import json
import string
import os
import random
import subprocess
def load_config(config_file):
with open(config_file, "r") as f:
config = yaml.load(f, Loader=Loader)
return config
def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
return ''.join(random.choice(chars) for _ in range(size))
import pdb
def save_experiment_params(args, experiment_tag, directory):
t = vars(args)
params = {k: str(v) for k, v in t.items()}
git_dir = os.path.dirname(os.path.realpath(__file__))
# pdb.set_trace()
print(git_dir)
git_head_hash = "foo"
# try:
# git_head_hash = subprocess.check_output(
# ['git', 'rev-parse', 'HEAD']
# ).strip()
# except subprocess.CalledProcessError:
# # Keep the current working directory to move back in a bit
# cwd = os.getcwd()
# os.chdir(git_dir)
# git_head_hash = subprocess.check_output(
# ['git', 'rev-parse', 'HEAD']
# ).strip()
# os.chdir(cwd)
params["git-commit"] = str(git_head_hash)
params["experiment_tag"] = experiment_tag
for k, v in list(params.items()):
if v == "":
params[k] = None
if hasattr(args, "config_file"):
config = load_config(args.config_file)
params.update(config)
with open(os.path.join(directory, "params.json"), "w") as f:
json.dump(params, f, indent=4)