wvangils commited on
Commit
20600df
1 Parent(s): a12f3b3

Add links to TAL blogs

Browse files
Files changed (1) hide show
  1. app.py +16 -5
app.py CHANGED
@@ -81,11 +81,22 @@ gen_image_style = gr.Textbox(label="Image style", lines=1)
81
  # Layout and text around the app
82
  title='Beatles lyrics generator'
83
  description="<p style='text-align: center'>We've fine-tuned multiple language models on lyrics from The Beatles to generate Beatles-like text. Below are the results we obtained fine-tuning a GPT Neo model. After generation a title is generated using <a href='https://huggingface.co/czearing/story-to-title' target='_blank'>this model</a>. On top we use the generated title to suggest an album cover using <a href='https://huggingface.co/CompVis/stable-diffusion-v1-4' target='_blank'>Stable Diffusion 1.4</a>. Give it a try!</p>"
84
- article="""<p style='text-align: left'>These text generation models that output Beatles-like text were created by data scientists working for <a href='https://cmotions.nl/' target="_blank">Cmotions.</a>
85
- We tried several text generation models that we were able to load in Colab: a general <a href='https://huggingface.co/gpt2-medium' target='_blank'>GPT2-medium</a> model, the Eleuther AI small-sized GPT model <a href='https://huggingface.co/EleutherAI/gpt-neo-125M' target='_blank'>GPT-Neo</a> and the new kid on the block build by the <a href='https://bigscience.notion.site/BLOOM-BigScience-176B-Model-ad073ca07cdf479398d5f95d88e218c4' target='_blank'>Bigscience</a> initiative <a href='https://huggingface.co/bigscience/bloom-560m' target='_blank'>BLOOM 560m</a>.
86
- Further we've put together a <a href='https://huggingface.co/datasets/cmotions/Beatles_lyrics' target='_blank'> Huggingface dataset</a> containing all known lyrics created by The Beatles. Keep an eye on this <a href='https://www.theanalyticslab.nl/blogs/' target='_blank'>location </a> where we will publish several blogs on the creation of these models and their evaluation.
87
- The default output contains 100 tokens and has a repetition penalty of 1.0.
88
- </p>"""
 
 
 
 
 
 
 
 
 
 
 
89
  css = """
90
  .gr-button-primary {
91
  text-indent: -9999px;
 
81
  # Layout and text around the app
82
  title='Beatles lyrics generator'
83
  description="<p style='text-align: center'>We've fine-tuned multiple language models on lyrics from The Beatles to generate Beatles-like text. Below are the results we obtained fine-tuning a GPT Neo model. After generation a title is generated using <a href='https://huggingface.co/czearing/story-to-title' target='_blank'>this model</a>. On top we use the generated title to suggest an album cover using <a href='https://huggingface.co/CompVis/stable-diffusion-v1-4' target='_blank'>Stable Diffusion 1.4</a>. Give it a try!</p>"
84
+ article="""<p style='text-align: left'>These text generation models that output Beatles-like text were created by data
85
+ scientists working for <a href='https://cmotions.nl/' target="_blank">Cmotions.</a>
86
+ We tried several text generation models that we were able to load in Colab: a general <a
87
+ href='https://huggingface.co/gpt2-medium' target='_blank'>GPT2-medium</a> model, the Eleuther AI small-sized GPT
88
+ model <a href='https://huggingface.co/EleutherAI/gpt-neo-125M' target='_blank'>GPT-Neo</a> and the new kid on the
89
+ block build by the <a
90
+ href='https://bigscience.notion.site/BLOOM-BigScience-176B-Model-ad073ca07cdf479398d5f95d88e218c4'
91
+ target='_blank'>Bigscience</a> initiative <a href='https://huggingface.co/bigscience/bloom-560m'
92
+ target='_blank'>BLOOM 560m</a>.
93
+ Further we've put together a <a href='https://huggingface.co/datasets/cmotions/Beatles_lyrics' target='_blank'>
94
+ Huggingface dataset</a> containing all known lyrics created by The Beatles. A general blog on building this text generator can be found <a
95
+ href='https://www.theanalyticslab.nl/building-a-beatles-lyrics-generator/' target='_blank'>here. </a> If you are interested in how we evaluated the results of these models <a
96
+ href='https://www.theanalyticslab.nl/how-to-evaluate-a-text-generation-model-strengths-and-limitations-of-popular-evaluation-metrics/' target='_blank'>this blog</a> will enlighten you. Finally we also wrote on our experience to showcase the results of our model
97
+ by using HF spaces, details can be found <a href='https://www.theanalyticslab.nl/how-to-showcase-your-demo-on-a-hugging-face-space/' target='_blank'>here. </a>
98
+ The default output contains 100 tokens and has a repetition penalty of 1.0.
99
+ </p>"""
100
  css = """
101
  .gr-button-primary {
102
  text-indent: -9999px;