File size: 534 Bytes
f27f371 a04bf46 f27f371 52a9c4e f27f371 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from transformers import PretrainedConfig
class TopAIImageConfig(PretrainedConfig):
model_type = "topai_image_gen"
def __init__(
self,
input_dim=768,
hidden_dim=512, # 讞讝专谞讜 诇-512 讻讚讬 诇讛转讗讬诐 诇诪砖拽讜诇讜转 讛拽讬讬诪讜转
image_channels=3,
resolution=128,
**kwargs
):
super().__init__(**kwargs)
self.input_dim = input_dim
self.hidden_dim = hidden_dim
self.image_channels = image_channels
self.resolution = resolution |