Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,5 +6,6 @@ description = """
|
|
6 |
The General Georgian Language Model is a pretrained language model specifically designed for understanding and generating text in the Georgian language. It is based on the DistilBERT-base-uncased architecture and has been trained on the MC4 dataset, which consists of a large collection of multilingual web documents.
|
7 |
<img src="https://huggingface.co/spaces/course-demos/Rick_and_Morty_QA/resolve/main/rick.png" width=200px>
|
8 |
"""
|
|
|
9 |
|
10 |
-
gr.Interface.load("models/Davit6174/georgian-distilbert-mlm").launch()
|
|
|
6 |
The General Georgian Language Model is a pretrained language model specifically designed for understanding and generating text in the Georgian language. It is based on the DistilBERT-base-uncased architecture and has been trained on the MC4 dataset, which consists of a large collection of multilingual web documents.
|
7 |
<img src="https://huggingface.co/spaces/course-demos/Rick_and_Morty_QA/resolve/main/rick.png" width=200px>
|
8 |
"""
|
9 |
+
article = "For more information and code examples, please refer to the README file and documentation available in the model repository at https://huggingface.co/Davit6174/georgian-distilbert-mlm"
|
10 |
|
11 |
+
gr.Interface.load("models/Davit6174/georgian-distilbert-mlm", title=title, description=description, article=article,inputs="textbox", outputs="text").launch()
|