rembg_clone / MyConfig.py
GhostMixtral's picture
Upload 20 files
e3bea7e verified
raw
history blame contribute delete
No virus
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)