File size: 733 Bytes
88906d3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
from transformers import PretrainedConfig
from typing import List
class UNet3DConfig(PretrainedConfig):
model_type = "UNet"
def __init__(
self,
in_ch=1,
out_ch=1,
init_features=64,
**kwargs):
self.in_ch = in_ch
self.out_ch = out_ch
self.init_features = init_features
super().__init__(**kwargs)
class UNetMSS3DConfig(PretrainedConfig):
model_type = "UNetMSS"
def __init__(
self,
in_ch=1,
out_ch=1,
init_features=64,
**kwargs):
self.in_ch = in_ch
self.out_ch = out_ch
self.init_features = init_features
super().__init__(**kwargs) |