system-with-gen-pipeline / QBModelConfig.py
nes470's picture
Upload GenPipeline
ec31fb7 verified
from transformers import PretrainedConfig
import torch
class QBModelConfig(PretrainedConfig):
model_type = 'QA-umd-quizbowl'
def __init__(self, **kwargs):
self.torch_dtype = torch.float16
super().__init__( **kwargs)