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