File size: 252 Bytes
6353c49 |
1 2 3 4 5 6 7 8 9 10 11 |
from transformers import PretrainedConfig
import torch.nn as nn
from typing import List, Union
class ChimeraConfig(PretrainedConfig):
model_type = "marqo-chimera-arctic-bge-m"
def __init__(self, **kwargs):
super().__init__(**kwargs)
|