Update main.py
Browse files
main.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
from transformers import DistilBertTokenizerFast, DistilBertForQuestionAnswering
|
2 |
import json
|
|
|
3 |
|
4 |
model_name = "distilbert-base-cased"
|
5 |
tokenizer = DistilBertTokenizerFast.from_pretrained(model_name)
|
|
|
1 |
from transformers import DistilBertTokenizerFast, DistilBertForQuestionAnswering
|
2 |
import json
|
3 |
+
import streamlit as st
|
4 |
|
5 |
model_name = "distilbert-base-cased"
|
6 |
tokenizer = DistilBertTokenizerFast.from_pretrained(model_name)
|