summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorJordan Gong <jordan.gong@protonmail.com>2021-01-13 11:15:04 +0800
committerJordan Gong <jordan.gong@protonmail.com>2021-01-13 11:15:04 +0800
commitcdf2d2e00ff719e46b0d4bef46dabb1ddfe144dc (patch)
tree908f5549bf4497c5af1f76b1490adacdc8d2f379 /config.py
parent8ee391b65e2b48d777a268749f54b3aa9e4b9142 (diff)
Update config file and convert int to str when joining
Diffstat (limited to 'config.py')
-rw-r--r--config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.py b/config.py
index 7517097..791e888 100644
--- a/config.py
+++ b/config.py
@@ -95,6 +95,6 @@ config: Configuration = {
# Restoration iteration (multiple models, e.g. nm, bg and cl)
'restore_iters': (0, 0, 0),
# Total iteration for training (multiple models)
- 'total_iter': (80_000, 80_000, 80_000),
+ 'total_iters': (80_000, 80_000, 80_000),
},
}