RMBG-2.0 / BiRefNet_config.py
yuvraj108c's picture
Upload folder using huggingface_hub
4d09971 verified
raw
history blame contribute delete
298 Bytes
from transformers import PretrainedConfig
class BiRefNetConfig(PretrainedConfig):
model_type = "SegformerForSemanticSegmentation"
def __init__(
self,
bb_pretrained=False,
**kwargs
):
self.bb_pretrained = bb_pretrained
super().__init__(**kwargs)