Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -35,6 +35,7 @@ print(f"Total memory: {total_memory / 1024**2:.2f} MB")
|
|
35 |
print(f"Allocated memory: {allocated_memory / 1024**2:.2f} MB")
|
36 |
print(f"Reserved memory: {reserved_memory / 1024**2:.2f} MB")
|
37 |
|
|
|
38 |
ae = load_ae(name, device)
|
39 |
t5 = load_t5(device, max_length=256 if name == "flux-schnell" else 512)
|
40 |
clip = load_clip(device)
|
|
|
35 |
print(f"Allocated memory: {allocated_memory / 1024**2:.2f} MB")
|
36 |
print(f"Reserved memory: {reserved_memory / 1024**2:.2f} MB")
|
37 |
|
38 |
+
name = 'flux-dev'
|
39 |
ae = load_ae(name, device)
|
40 |
t5 = load_t5(device, max_length=256 if name == "flux-schnell" else 512)
|
41 |
clip = load_clip(device)
|