Spaces:
Running
Running
New: Add link to website
Browse files
app.py
CHANGED
|
@@ -163,6 +163,11 @@ with gr.Blocks(css=custom_css) as demo:
|
|
| 163 |
<h3>Automatically turns Whisky Tasting Notes into Flavour Wheels.</h3>
|
| 164 |
<p>This model is a fine-tuned version of <a href='https://huggingface.co/microsoft/deberta-v3-base'>microsoft/deberta-v3-base</a> designed to analyze English whisky tasting notes. It predicts the intensity of eight sensory categories — <strong>grainy</strong>, <strong>grassy</strong>, <strong>fragrant</strong>, <strong>fruity</strong>, <strong>peated</strong>, <strong>woody</strong>, <strong>winey</strong> and <strong>off-notes</strong> — on a continuous scale from 0 (none) to 4 (extreme).</p>
|
| 165 |
""")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
gr.HTML(f"<span style='color: var(--block-title-text-color)'>{_get_device_info()}</span>")
|
| 167 |
|
| 168 |
with gr.Row(): # alles nebeneinander
|
|
|
|
| 163 |
<h3>Automatically turns Whisky Tasting Notes into Flavour Wheels.</h3>
|
| 164 |
<p>This model is a fine-tuned version of <a href='https://huggingface.co/microsoft/deberta-v3-base'>microsoft/deberta-v3-base</a> designed to analyze English whisky tasting notes. It predicts the intensity of eight sensory categories — <strong>grainy</strong>, <strong>grassy</strong>, <strong>fragrant</strong>, <strong>fruity</strong>, <strong>peated</strong>, <strong>woody</strong>, <strong>winey</strong> and <strong>off-notes</strong> — on a continuous scale from 0 (none) to 4 (extreme).</p>
|
| 165 |
""")
|
| 166 |
+
|
| 167 |
+
gr.HTML("""
|
| 168 |
+
<p style='color: var(--block-title-text-color)'>Learn more about use cases and get in touch at <a href='https://www.whisky-wheel.com'>www.whisky-wheel.com</a></p>
|
| 169 |
+
""")
|
| 170 |
+
|
| 171 |
gr.HTML(f"<span style='color: var(--block-title-text-color)'>{_get_device_info()}</span>")
|
| 172 |
|
| 173 |
with gr.Row(): # alles nebeneinander
|