Spaces:
No application file
No application file
Commit
·
1d5ce2c
1
Parent(s):
5d506c4
Update App.py
Browse files
App.py
CHANGED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
|
2 |
+
|
3 |
+
tokenizer = AutoTokenizer.from_pretrained("AndrewChar/model-QA-5-epoch-RU")
|
4 |
+
|
5 |
+
model = AutoModelForQuestionAnswering.from_pretrained("AndrewChar/model-QA-5-epoch-RU")
|