Spaces:
Runtime error
Runtime error
arjunpatel
commited on
Commit
•
3490993
1
Parent(s):
7d3e565
typos
Browse files
app.py
CHANGED
@@ -77,7 +77,7 @@ with demo:
|
|
77 |
model. The dataframe below allows you to keep track of each move generated, to compare!""")
|
78 |
gr.Markdown("<h3> How does text generation work? <h3>")
|
79 |
gr.Markdown("""Roughly, text generation models accept an input sequence of words (or parts of words,
|
80 |
-
known as tokens.
|
81 |
These models then output a corresponding set of words or tokens. Given the input, the model
|
82 |
estimates the probability of another possible word or token appearing right after the given sequence. In
|
83 |
other words, the model estimates conditional probabilities and ranks them in order to generate sequences
|
@@ -87,7 +87,7 @@ with demo:
|
|
87 |
with gr.Tabs():
|
88 |
with gr.TabItem("Standard Generation"):
|
89 |
gr.Markdown(
|
90 |
-
"""The default parameters for distilgpt2 work well to generate moves. Use this tab
|
91 |
a baseline for your experiments.""")
|
92 |
with gr.Row():
|
93 |
text_input_baseline = gr.Textbox(label="Move",
|
|
|
77 |
model. The dataframe below allows you to keep track of each move generated, to compare!""")
|
78 |
gr.Markdown("<h3> How does text generation work? <h3>")
|
79 |
gr.Markdown("""Roughly, text generation models accept an input sequence of words (or parts of words,
|
80 |
+
known as tokens).
|
81 |
These models then output a corresponding set of words or tokens. Given the input, the model
|
82 |
estimates the probability of another possible word or token appearing right after the given sequence. In
|
83 |
other words, the model estimates conditional probabilities and ranks them in order to generate sequences
|
|
|
87 |
with gr.Tabs():
|
88 |
with gr.TabItem("Standard Generation"):
|
89 |
gr.Markdown(
|
90 |
+
"""The default parameters for distilgpt2 work well to generate moves. Use this tab as
|
91 |
a baseline for your experiments.""")
|
92 |
with gr.Row():
|
93 |
text_input_baseline = gr.Textbox(label="Move",
|