Upload folder using huggingface_hub
Browse files- model_index.json +16 -0
- scheduler/scheduler_config.json +30 -0
- transformer/config.json +31 -0
- transformer/diffusion_pytorch_model.safetensors +3 -0
- vae/config.json +38 -0
model_index.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "pixcell.pipeline_pixcell.PixCellPipeline",
|
| 3 |
+
"_diffusers_version": "0.32.2",
|
| 4 |
+
"transformer": [
|
| 5 |
+
"PixCell-diffusers.pixcell_transformer_2d",
|
| 6 |
+
"PixCellTransformer2DModel"
|
| 7 |
+
],
|
| 8 |
+
"vae": [
|
| 9 |
+
"diffusers",
|
| 10 |
+
"AutoencoderKL"
|
| 11 |
+
],
|
| 12 |
+
"scheduler": [
|
| 13 |
+
"diffusers",
|
| 14 |
+
"DPMSolverMultistepScheduler"
|
| 15 |
+
]
|
| 16 |
+
}
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "DPMSolverMultistepScheduler",
|
| 3 |
+
"_diffusers_version": "0.32.2",
|
| 4 |
+
"algorithm_type": "dpmsolver++",
|
| 5 |
+
"beta_end": 0.02,
|
| 6 |
+
"beta_schedule": "linear",
|
| 7 |
+
"beta_start": 0.0001,
|
| 8 |
+
"dynamic_thresholding_ratio": 0.995,
|
| 9 |
+
"euler_at_final": false,
|
| 10 |
+
"final_sigmas_type": "zero",
|
| 11 |
+
"flow_shift": 1.0,
|
| 12 |
+
"lambda_min_clipped": -Infinity,
|
| 13 |
+
"lower_order_final": true,
|
| 14 |
+
"num_train_timesteps": 1000,
|
| 15 |
+
"prediction_type": "epsilon",
|
| 16 |
+
"rescale_betas_zero_snr": false,
|
| 17 |
+
"sample_max_value": 1.0,
|
| 18 |
+
"solver_order": 2,
|
| 19 |
+
"solver_type": "midpoint",
|
| 20 |
+
"steps_offset": 0,
|
| 21 |
+
"thresholding": false,
|
| 22 |
+
"timestep_spacing": "linspace",
|
| 23 |
+
"trained_betas": null,
|
| 24 |
+
"use_beta_sigmas": false,
|
| 25 |
+
"use_exponential_sigmas": false,
|
| 26 |
+
"use_flow_sigmas": false,
|
| 27 |
+
"use_karras_sigmas": false,
|
| 28 |
+
"use_lu_lambdas": false,
|
| 29 |
+
"variance_type": null
|
| 30 |
+
}
|
transformer/config.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "PixCellTransformer2DModel",
|
| 3 |
+
"_diffusers_version": "0.32.2",
|
| 4 |
+
"_name_or_path": "pixart_1024/transformer",
|
| 5 |
+
"activation_fn": "gelu-approximate",
|
| 6 |
+
"attention_bias": true,
|
| 7 |
+
"attention_head_dim": 72,
|
| 8 |
+
"attention_type": "default",
|
| 9 |
+
"caption_channels": 1536,
|
| 10 |
+
"caption_num_tokens": 16,
|
| 11 |
+
"cross_attention_dim": 1152,
|
| 12 |
+
"double_self_attention": false,
|
| 13 |
+
"dropout": 0.0,
|
| 14 |
+
"in_channels": 16,
|
| 15 |
+
"interpolation_scale": 2,
|
| 16 |
+
"norm_elementwise_affine": false,
|
| 17 |
+
"norm_eps": 1e-06,
|
| 18 |
+
"norm_num_groups": 32,
|
| 19 |
+
"norm_type": "ada_norm_single",
|
| 20 |
+
"num_attention_heads": 16,
|
| 21 |
+
"num_embeds_ada_norm": 1000,
|
| 22 |
+
"num_layers": 28,
|
| 23 |
+
"num_vector_embeds": null,
|
| 24 |
+
"only_cross_attention": false,
|
| 25 |
+
"out_channels": 32,
|
| 26 |
+
"patch_size": 2,
|
| 27 |
+
"sample_size": 128,
|
| 28 |
+
"upcast_attention": false,
|
| 29 |
+
"use_additional_conditions": false,
|
| 30 |
+
"use_linear_projection": false
|
| 31 |
+
}
|
transformer/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1606e02717d2f77bcff64ef620ffde29ab25511cd28014abcc6498b8c4cc7738
|
| 3 |
+
size 2432458344
|
vae/config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AutoencoderKL",
|
| 3 |
+
"_diffusers_version": "0.32.2",
|
| 4 |
+
"_name_or_path": "stabilityai/stable-diffusion-3.5-large",
|
| 5 |
+
"act_fn": "silu",
|
| 6 |
+
"block_out_channels": [
|
| 7 |
+
128,
|
| 8 |
+
256,
|
| 9 |
+
512,
|
| 10 |
+
512
|
| 11 |
+
],
|
| 12 |
+
"down_block_types": [
|
| 13 |
+
"DownEncoderBlock2D",
|
| 14 |
+
"DownEncoderBlock2D",
|
| 15 |
+
"DownEncoderBlock2D",
|
| 16 |
+
"DownEncoderBlock2D"
|
| 17 |
+
],
|
| 18 |
+
"force_upcast": true,
|
| 19 |
+
"in_channels": 3,
|
| 20 |
+
"latent_channels": 16,
|
| 21 |
+
"latents_mean": null,
|
| 22 |
+
"latents_std": null,
|
| 23 |
+
"layers_per_block": 2,
|
| 24 |
+
"mid_block_add_attention": true,
|
| 25 |
+
"norm_num_groups": 32,
|
| 26 |
+
"out_channels": 3,
|
| 27 |
+
"sample_size": 1024,
|
| 28 |
+
"scaling_factor": 1.5305,
|
| 29 |
+
"shift_factor": 0.0609,
|
| 30 |
+
"up_block_types": [
|
| 31 |
+
"UpDecoderBlock2D",
|
| 32 |
+
"UpDecoderBlock2D",
|
| 33 |
+
"UpDecoderBlock2D",
|
| 34 |
+
"UpDecoderBlock2D"
|
| 35 |
+
],
|
| 36 |
+
"use_post_quant_conv": false,
|
| 37 |
+
"use_quant_conv": false
|
| 38 |
+
}
|