Spaces:
Running
Running
hatmanstack
commited on
Commit
·
4b6b3ad
1
Parent(s):
9e58e88
tips
Browse files
app.py
CHANGED
@@ -164,7 +164,7 @@ with gr.Blocks() as demo:
|
|
164 |
with gr.Accordion("Tips", open=False):
|
165 |
gr.Markdown("On Inference Speed: Resolution (width/height), and quality all have an impact on Inference Speed.")
|
166 |
gr.Markdown("On Negation: For example, consider the prompt \"a rainy city street at night with no people\". The model might interpret \"people\" as a directive of what to include instead of omit. To generate better results, you could use the prompt \"a rainy city street at night\" with a negative prompt \"people\".")
|
167 |
-
gr.Markdown("On Prompt Length: When
|
168 |
if __name__ == "__main__":
|
169 |
demo.launch()
|
170 |
|
|
|
164 |
with gr.Accordion("Tips", open=False):
|
165 |
gr.Markdown("On Inference Speed: Resolution (width/height), and quality all have an impact on Inference Speed.")
|
166 |
gr.Markdown("On Negation: For example, consider the prompt \"a rainy city street at night with no people\". The model might interpret \"people\" as a directive of what to include instead of omit. To generate better results, you could use the prompt \"a rainy city street at night\" with a negative prompt \"people\".")
|
167 |
+
gr.Markdown("On Prompt Length: When diffusion models were first introduced, they could process only 77 tokens. While new techniques have extended this limit, they remain bound by their training data. AWS Nova Canvas limits input by character length instead, ensuring no characters beyond the set limit are considered in the generated model.")
|
168 |
if __name__ == "__main__":
|
169 |
demo.launch()
|
170 |
|