Epoching commited on
Commit
b544ca7
·
1 Parent(s): b761f33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -110,10 +110,14 @@ with demo:
110
 
111
  with gr.Row():
112
  gr.Markdown("![visitor badge](https://visitor-badge.glitch.me/badge?page_id=gradio-blocks_story_and_video_generation)")
 
113
  gr.Markdown("Models Used:")
114
- gr.Markdown("1 (Story Generation): [GPT-J](https://huggingface.co/pranavpsv/gpt2-genre-story-generator)")
115
- gr.Markdown("2 (Image Generation Conditioned on Text): [Latent Diffusion](https://huggingface.co/spaces/multimodalart/latentdiffusion) | [Github Repo](https://github.com/CompVis/latent-diffusion)")
116
- gr.Markdown("3 (Interpolations): [Frame Interpolation](https://huggingface.co/spaces/akhaliq/frame-interpolation) | [Github Repo](https://github.com/google-research/frame-interpolation)")
 
 
 
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("![visitor badge](https://visitor-badge.glitch.me/badge?page_id=gradio-blocks_story_and_video_generation)")
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)