Spaces:
Running
Running
liujch1998
commited on
Commit
β’
4bd71cd
1
Parent(s):
3f76bf1
Minor changes
Browse files
app.py
CHANGED
@@ -68,7 +68,7 @@ with gr.Blocks() as demo:
|
|
68 |
'''<h1 text-align="center">Infini-gram: An Engine for n-gram / β-gram Language Models with Trillion-Token Corpora</h1>
|
69 |
|
70 |
<p style='font-size: 16px;'>This is an engine that processes n-gram / β-gram queries on a text corpus. Please first select the corpus and the type of query, then enter your query and submit.</p>
|
71 |
-
<p style='font-size: 16px;'>The engine is documented in our paper: <a href="">Infini-gram: Scaling Unbounded n-gram Language Models to a Trillion Tokens</a></p>
|
72 |
'''
|
73 |
)
|
74 |
with gr.Row():
|
@@ -311,4 +311,5 @@ demo.queue(
|
|
311 |
).launch(
|
312 |
max_threads=max_threads,
|
313 |
debug=debug,
|
|
|
314 |
)
|
|
|
68 |
'''<h1 text-align="center">Infini-gram: An Engine for n-gram / β-gram Language Models with Trillion-Token Corpora</h1>
|
69 |
|
70 |
<p style='font-size: 16px;'>This is an engine that processes n-gram / β-gram queries on a text corpus. Please first select the corpus and the type of query, then enter your query and submit.</p>
|
71 |
+
<p style='font-size: 16px;'>The engine is developed by <a href="https://liujch1998.github.io">Jiacheng (Gary) Liu</a> and documented in our paper: <a href="">Infini-gram: Scaling Unbounded n-gram Language Models to a Trillion Tokens</a></p>
|
72 |
'''
|
73 |
)
|
74 |
with gr.Row():
|
|
|
311 |
).launch(
|
312 |
max_threads=max_threads,
|
313 |
debug=debug,
|
314 |
+
show_api=False,
|
315 |
)
|