TriviaAnsweringMachine9 / QBModelConfig.py
Backedman's picture
Upload model
35640e8 verified
raw
history blame
234 Bytes
from transformers import PretrainedConfig
import torch
class QBModelConfig(PretrainedConfig):
model_type = 'TFIDF-QA'
def __init__(self, **kwargs):
super().__init__( **kwargs)
self.torch_dtype = torch.float16