AndrewChar commited on
Commit
1d5ce2c
·
1 Parent(s): 5d506c4

Update App.py

Browse files
Files changed (1) hide show
  1. App.py +5 -0
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")