Hypernetworks - fix KeyError in statistics caching

Statistics logging has changed to {filename : list[losses]}, so it has to use loss_info[key].pop()
This commit is contained in:
AngelBottomless 2022-10-23 20:06:42 +09:00 committed by AUTOMATIC1111
parent f2cc3f32d5
commit b297cc3324

View File

@ -274,8 +274,8 @@ def log_statistics(loss_info:dict, key, value):
loss_info[key] = [value]
else:
loss_info[key].append(value)
if len(loss_info) > 1024:
loss_info.pop(0)
if len(loss_info[key]) > 1024:
loss_info[key].pop(0)
def statistics(data):