Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -243,7 +243,7 @@ def randomize_seed_fn(seed: int, randomize_seed: bool) -> int:
|
|
| 243 |
seed = random.randint(0, MAX_SEED)
|
| 244 |
return seed
|
| 245 |
|
| 246 |
-
def uploadNote(prompt,num_inference_steps,guidance_scale,timestamp
|
| 247 |
filename= f'tst_A_{timestamp}.txt'
|
| 248 |
with open(filename, "w") as f:
|
| 249 |
f.write(f"Realvis 5.0 (Tester A) \n")
|
|
@@ -251,7 +251,6 @@ def uploadNote(prompt,num_inference_steps,guidance_scale,timestamp,denoise):
|
|
| 251 |
f.write(f"Prompt: {prompt} \n")
|
| 252 |
f.write(f"Steps: {num_inference_steps} \n")
|
| 253 |
f.write(f"Guidance Scale: {guidance_scale} \n")
|
| 254 |
-
f.write(f"Denoise Strength: {denoise} \n")
|
| 255 |
f.write(f"SPACE SETUP: \n")
|
| 256 |
f.write(f"Use Model Dtype: no \n")
|
| 257 |
f.write(f"Model Scheduler: Euler_a all_custom before cuda \n")
|
|
|
|
| 243 |
seed = random.randint(0, MAX_SEED)
|
| 244 |
return seed
|
| 245 |
|
| 246 |
+
def uploadNote(prompt,num_inference_steps,guidance_scale,timestamp):
|
| 247 |
filename= f'tst_A_{timestamp}.txt'
|
| 248 |
with open(filename, "w") as f:
|
| 249 |
f.write(f"Realvis 5.0 (Tester A) \n")
|
|
|
|
| 251 |
f.write(f"Prompt: {prompt} \n")
|
| 252 |
f.write(f"Steps: {num_inference_steps} \n")
|
| 253 |
f.write(f"Guidance Scale: {guidance_scale} \n")
|
|
|
|
| 254 |
f.write(f"SPACE SETUP: \n")
|
| 255 |
f.write(f"Use Model Dtype: no \n")
|
| 256 |
f.write(f"Model Scheduler: Euler_a all_custom before cuda \n")
|