Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -110,10 +110,14 @@ with demo:
|
|
110 |
|
111 |
with gr.Row():
|
112 |
gr.Markdown("")
|
|
|
113 |
gr.Markdown("Models Used:")
|
114 |
-
|
115 |
-
gr.Markdown("
|
116 |
-
|
|
|
|
|
|
|
117 |
|
118 |
# Bind functions to buttons
|
119 |
button_gen_story.click(fn=generate_story, inputs=[input_story_type , input_start_text], outputs=output_generated_story)
|
|
|
110 |
|
111 |
with gr.Row():
|
112 |
gr.Markdown("")
|
113 |
+
with gr.Row():
|
114 |
gr.Markdown("Models Used:")
|
115 |
+
with gr.Row():
|
116 |
+
gr.Markdown("Story Generation: [GPT-J](https://huggingface.co/pranavpsv/gpt2-genre-story-generator)")
|
117 |
+
with gr.Row():
|
118 |
+
gr.Markdown("Image Generation Conditioned on Text: [Latent Diffusion](https://huggingface.co/spaces/multimodalart/latentdiffusion) | [Github Repo](https://github.com/CompVis/latent-diffusion)")
|
119 |
+
with gr.Row():
|
120 |
+
gr.Markdown("Interpolations: [Frame Interpolation](https://huggingface.co/spaces/akhaliq/frame-interpolation) | [Github Repo](https://github.com/google-research/frame-interpolation)")
|
121 |
|
122 |
# Bind functions to buttons
|
123 |
button_gen_story.click(fn=generate_story, inputs=[input_story_type , input_start_text], outputs=output_generated_story)
|