CoolFace
Modelpublic

Woleek/ResNet50AffectiveFeatureExtractor

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes6downloads
config.py10 linesDownload Raw Back to root
1from transformers import PretrainedConfig2 3class ResnetConfig(PretrainedConfig):4    model_type = "ResNet50AffectiveFeatureExtractor"5 6    def __init__(7        self,8        **kwargs,9    ):10        super().__init__(**kwargs)