Spaces:
Sleeping
Sleeping
Error messaging
Browse files
app.py
CHANGED
@@ -108,6 +108,7 @@ def diffusion_chat(question, eot_weight, max_it, sharpness):
|
|
108 |
last_tokens = []
|
109 |
|
110 |
for i in range(max_it):
|
|
|
111 |
generated_tokens = generate_diffusion_text(current_tokens, answer_start)
|
112 |
current_tokens = generated_tokens
|
113 |
|
|
|
108 |
last_tokens = []
|
109 |
|
110 |
for i in range(max_it):
|
111 |
+
print('Generating output')
|
112 |
generated_tokens = generate_diffusion_text(current_tokens, answer_start)
|
113 |
current_tokens = generated_tokens
|
114 |
|