File size: 253 Bytes
d514464 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from transformers import PretrainedConfig
from typing import List
class CetaceanClassifierConfig(PretrainedConfig):
model_type = "cetaceanet"
def __init__(
self,
**kwargs,
):
super().__init__(**kwargs)
|