Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -90,29 +90,22 @@ css = """
|
|
90 |
"""
|
91 |
|
92 |
with gr.Blocks(css=css) as demo:
|
93 |
-
gr.HTML("""
|
94 |
-
<
|
95 |
-
|
96 |
-
<h3><center>In this demo, you can chat with <a href='https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1'>Mistral-7B-Instruct</a> model. π¬</h3></center>
|
97 |
-
|
98 |
-
<h3><center>π Model Features π </h3></center>
|
99 |
<ul>
|
100 |
<li>πͺ Sliding Window Attention with 128K tokens span</li>
|
101 |
<li>π GQA for faster inference</li>
|
102 |
<li>π Byte-fallback BPE tokenizer</li>
|
103 |
</ul>
|
104 |
-
|
105 |
-
|
106 |
-
<p>Released under Apache 2.0 License</p>
|
107 |
-
|
108 |
-
<h3><center>π¦ Usage π¦</h3></center>
|
109 |
<ul>
|
110 |
<li>π Available on Huggingface Hub</li>
|
111 |
<li>π Python code snippets for easy setup</li>
|
112 |
<li>π Expected speedups with Flash Attention 2</li>
|
113 |
</ul>
|
114 |
-
|
115 |
-
<h3><center>Learn more about the model <a href='https://huggingface.co/docs/transformers/main/model_doc/mistral'>here</a>. π</h3></center>
|
116 |
""")
|
117 |
|
118 |
|
|
|
90 |
"""
|
91 |
|
92 |
with gr.Blocks(css=css) as demo:
|
93 |
+
gr.HTML("""π€ Mistral 7B Instruct π€
|
94 |
+
In this demo, you can chat with <a href='https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1'>Mistral-7B-Instruct</a> model. π¬
|
95 |
+
π Model Features π
|
|
|
|
|
|
|
96 |
<ul>
|
97 |
<li>πͺ Sliding Window Attention with 128K tokens span</li>
|
98 |
<li>π GQA for faster inference</li>
|
99 |
<li>π Byte-fallback BPE tokenizer</li>
|
100 |
</ul>
|
101 |
+
π License π Released under Apache 2.0 License
|
102 |
+
π¦ Usage π¦
|
|
|
|
|
|
|
103 |
<ul>
|
104 |
<li>π Available on Huggingface Hub</li>
|
105 |
<li>π Python code snippets for easy setup</li>
|
106 |
<li>π Expected speedups with Flash Attention 2</li>
|
107 |
</ul>
|
108 |
+
Learn more about the model <a href='https://huggingface.co/docs/transformers/main/model_doc/mistral'>here</a>. π
|
|
|
109 |
""")
|
110 |
|
111 |
|