Fix issue where the log lone for samples would double up sometimes
This commit is contained in:
parent
988d891102
commit
6696117a94
|
|
@ -434,7 +434,7 @@ class BaseModel:
|
|||
if network is not None:
|
||||
assert network.is_active
|
||||
|
||||
for i in tqdm(range(len(image_configs)), desc=f"Generating Samples", leave=True):
|
||||
for i in tqdm(range(len(image_configs)), desc=f"Generating Samples", leave=True, position=0):
|
||||
gen_config = image_configs[i]
|
||||
|
||||
extra = {}
|
||||
|
|
|
|||
Loading…
Reference in New Issue