Spaces:
Runtime error
Runtime error
arjunpatel
commited on
Commit
•
ef0cf07
1
Parent(s):
ca87c6b
fixed some links
Browse files
app.py
CHANGED
@@ -197,7 +197,8 @@ with demo:
|
|
197 |
with gr.Box():
|
198 |
gr.Markdown("<h3>How did you make this?<h3>")
|
199 |
gr.Markdown("""
|
200 |
-
I collected the dataset from <a href =https://www.serebii.net>Serebii</a>, a news source and aggregator of
|
|
|
201 |
|
202 |
|
203 |
I then added a seed phrase "This move is called" just before each move in order to assist the model in
|
@@ -208,11 +209,12 @@ with demo:
|
|
208 |
and it surprisingly worked!
|
209 |
|
210 |
|
211 |
-
I learned all about text generation using the book
|
212 |
-
https://www.oreilly.com/library/view/natural-language-processing/9781098103231
|
213 |
-
Leandro von Werra and Thomas Wolf, as well as
|
214 |
-
https://huggingface.co/blog/how-to-generate
|
215 |
-
these learning materials, and thanks to the Hugging Face team for developing this
|
|
|
216 |
|
217 |
text_button_baseline.click(create_move, inputs=[text_input_baseline, history],
|
218 |
outputs=[text_output_baseline, history])
|
|
|
197 |
with gr.Box():
|
198 |
gr.Markdown("<h3>How did you make this?<h3>")
|
199 |
gr.Markdown("""
|
200 |
+
I collected the dataset from <a href =https://www.serebii.net>Serebii</a>, a news source and aggregator of
|
201 |
+
Pokemon info.
|
202 |
|
203 |
|
204 |
I then added a seed phrase "This move is called" just before each move in order to assist the model in
|
|
|
209 |
and it surprisingly worked!
|
210 |
|
211 |
|
212 |
+
I learned all about text generation using the book <a href
|
213 |
+
=https://www.oreilly.com/library/view/natural-language-processing/9781098103231/> Natural Language Processing
|
214 |
+
with Transformers</a> by Lewis Tunstall, Leandro von Werra and Thomas Wolf, as well as <a href
|
215 |
+
=https://huggingface.co/blog/how-to-generate>this fantastic article</a> by Patrick von Platen. Thanks to all
|
216 |
+
of these folks for creating these learning materials, and thanks to the Hugging Face team for developing this
|
217 |
+
product! """)
|
218 |
|
219 |
text_button_baseline.click(create_move, inputs=[text_input_baseline, history],
|
220 |
outputs=[text_output_baseline, history])
|