File size: 275 Bytes
04993ef
 
 
 
 
 
 
75e676f
04993ef
186d760
1
2
3
4
5
6
7
8
9
10
from transformers import PretrainedConfig
import torch

class QBModelConfig(PretrainedConfig):
    model_type = 'TFIDF-QA'

    def __init__(self, **kwargs):
        self.torch_dtype = torch.float32
        super().__init__( **kwargs)
        self.torch_dtype = torch.float32