FixRM / MyConfig.py
OwlMaster's picture
Upload folder using huggingface_hub (#1)
59cc31c verified
raw
history blame contribute delete
339 Bytes
from transformers import PretrainedConfig
from typing import List
class RMBGConfig(PretrainedConfig):
model_type = "SegformerForSemanticSegmentation"
def __init__(
self,
in_ch=3,
out_ch=1,
**kwargs):
self.in_ch = in_ch
self.out_ch = out_ch
super().__init__(**kwargs)