Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,7 @@ article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1810.048
|
|
6 |
|
7 |
examples = [
|
8 |
['Paris is the [MASK] of France.', 'bert-base-cased']
|
|
|
9 |
]
|
10 |
|
11 |
# Lade die Interfaces für die Modelle
|
@@ -36,4 +37,4 @@ gr.Interface(
|
|
36 |
article=article,
|
37 |
title=title,
|
38 |
description=description
|
39 |
-
).launch(
|
|
|
6 |
|
7 |
examples = [
|
8 |
['Paris is the [MASK] of France.', 'bert-base-cased']
|
9 |
+
['I love [MASK]', 'bert-base-uncased']
|
10 |
]
|
11 |
|
12 |
# Lade die Interfaces für die Modelle
|
|
|
37 |
article=article,
|
38 |
title=title,
|
39 |
description=description
|
40 |
+
).launch()
|