Removed a configuration key error on freq run()

This commit is contained in:
Eddie Cueto 2023-06-30 11:13:55 +01:00
parent 3c928cc350
commit dd46d0ccc4
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ if __name__ == '__main__':
now = datetime.now()
current_time = now.strftime("%H:%M:%S")
print("Initial Time =", current_time)
run(cfg["model"]["data"], cfg["model"]["net_type"])
run(cfg["data"], cfg["model"]["net_type"])
now = datetime.now()
current_time = now.strftime("%H:%M:%S")
print("Final Time =", current_time)