Feature Extraction
Transformers
Safetensors
diva
custom_code
File size: 197 Bytes
c583d87
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from transformers import PretrainedConfig


class DiVAConfig(PretrainedConfig):
    model_type = "diva"

    def __init__(
        self,
        **kwargs,
    ):
        super().__init__(**kwargs)