mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-08-04 11:12:35 +00:00
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:

committed by
AUTOMATIC1111

parent
f2cc3f32d5
commit
b297cc3324
@@ -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):
|
||||
|
Reference in New Issue
Block a user