Removed a configuration key error on freq run()
This commit is contained in:
parent
3c928cc350
commit
dd46d0ccc4
|
@ -143,7 +143,7 @@ if __name__ == '__main__':
|
||||||
now = datetime.now()
|
now = datetime.now()
|
||||||
current_time = now.strftime("%H:%M:%S")
|
current_time = now.strftime("%H:%M:%S")
|
||||||
print("Initial Time =", current_time)
|
print("Initial Time =", current_time)
|
||||||
run(cfg["model"]["data"], cfg["model"]["net_type"])
|
run(cfg["data"], cfg["model"]["net_type"])
|
||||||
now = datetime.now()
|
now = datetime.now()
|
||||||
current_time = now.strftime("%H:%M:%S")
|
current_time = now.strftime("%H:%M:%S")
|
||||||
print("Final Time =", current_time)
|
print("Final Time =", current_time)
|
||||||
|
|
Loading…
Reference in New Issue