Upload 11 files
Browse files- model_index.json +33 -0
- scheduler/scheduler_config.json +19 -0
- text_encoder/config.json +47 -0
- text_encoder/model.safetensors +3 -0
- tokenizer/special_tokens_map.json +1 -0
- tokenizer/tokenizer.model +3 -0
- tokenizer/tokenizer_config.json +19 -0
- unet/config.json +67 -0
- unet/diffusion_pytorch_model.safetensors +3 -0
- vae/config.json +31 -0
- vae/diffusion_pytorch_model.safetensors +3 -0
model_index.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "KolorsPipeline",
|
| 3 |
+
"_diffusers_version": "0.30.0.dev0",
|
| 4 |
+
"feature_extractor": [
|
| 5 |
+
null,
|
| 6 |
+
null
|
| 7 |
+
],
|
| 8 |
+
"force_zeros_for_empty_prompt": false,
|
| 9 |
+
"image_encoder": [
|
| 10 |
+
null,
|
| 11 |
+
null
|
| 12 |
+
],
|
| 13 |
+
"scheduler": [
|
| 14 |
+
"diffusers",
|
| 15 |
+
"EulerDiscreteScheduler"
|
| 16 |
+
],
|
| 17 |
+
"text_encoder": [
|
| 18 |
+
"kolors",
|
| 19 |
+
"ChatGLMModel"
|
| 20 |
+
],
|
| 21 |
+
"tokenizer": [
|
| 22 |
+
"kolors",
|
| 23 |
+
"ChatGLMTokenizer"
|
| 24 |
+
],
|
| 25 |
+
"unet": [
|
| 26 |
+
"diffusers",
|
| 27 |
+
"UNet2DConditionModel"
|
| 28 |
+
],
|
| 29 |
+
"vae": [
|
| 30 |
+
"diffusers",
|
| 31 |
+
"AutoencoderKL"
|
| 32 |
+
]
|
| 33 |
+
}
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "EulerDiscreteScheduler",
|
| 3 |
+
"_diffusers_version": "0.30.0.dev0",
|
| 4 |
+
"beta_end": 0.012,
|
| 5 |
+
"beta_schedule": "scaled_linear",
|
| 6 |
+
"beta_start": 0.00085,
|
| 7 |
+
"final_sigmas_type": "zero",
|
| 8 |
+
"interpolation_type": "linear",
|
| 9 |
+
"num_train_timesteps": 1000,
|
| 10 |
+
"prediction_type": "epsilon",
|
| 11 |
+
"rescale_betas_zero_snr": false,
|
| 12 |
+
"sigma_max": null,
|
| 13 |
+
"sigma_min": null,
|
| 14 |
+
"steps_offset": 1,
|
| 15 |
+
"timestep_spacing": "leading",
|
| 16 |
+
"timestep_type": "discrete",
|
| 17 |
+
"trained_betas": null,
|
| 18 |
+
"use_karras_sigmas": false
|
| 19 |
+
}
|
text_encoder/config.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "hf-internal-testing/tiny-random-chatglm3-6b",
|
| 3 |
+
"add_bias_linear": false,
|
| 4 |
+
"add_qkv_bias": true,
|
| 5 |
+
"apply_query_key_layer_scaling": true,
|
| 6 |
+
"apply_residual_connection_post_layernorm": false,
|
| 7 |
+
"architectures": [
|
| 8 |
+
"ChatGLMModel"
|
| 9 |
+
],
|
| 10 |
+
"attention_dropout": 0.0,
|
| 11 |
+
"attention_softmax_in_fp32": true,
|
| 12 |
+
"auto_map": {
|
| 13 |
+
"AutoConfig": "THUDM/chatglm3-6b--configuration_chatglm.ChatGLMConfig",
|
| 14 |
+
"AutoModel": "THUDM/chatglm3-6b--modeling_chatglm.ChatGLMForConditionalGeneration",
|
| 15 |
+
"AutoModelForCausalLM": "THUDM/chatglm3-6b--modeling_chatglm.ChatGLMForConditionalGeneration",
|
| 16 |
+
"AutoModelForSeq2SeqLM": "THUDM/chatglm3-6b--modeling_chatglm.ChatGLMForConditionalGeneration",
|
| 17 |
+
"AutoModelForSequenceClassification": "THUDM/chatglm3-6b--modeling_chatglm.ChatGLMForSequenceClassification"
|
| 18 |
+
},
|
| 19 |
+
"bias_dropout_fusion": true,
|
| 20 |
+
"classifier_dropout": null,
|
| 21 |
+
"eos_token_id": 2,
|
| 22 |
+
"ffn_hidden_size": 16,
|
| 23 |
+
"fp32_residual_connection": false,
|
| 24 |
+
"hidden_dropout": 0.0,
|
| 25 |
+
"hidden_size": 8,
|
| 26 |
+
"kv_channels": 2,
|
| 27 |
+
"layernorm_epsilon": 1e-05,
|
| 28 |
+
"model_type": "chatglm",
|
| 29 |
+
"multi_query_attention": true,
|
| 30 |
+
"multi_query_group_num": 2,
|
| 31 |
+
"num_attention_heads": 4,
|
| 32 |
+
"num_layers": 2,
|
| 33 |
+
"original_rope": true,
|
| 34 |
+
"pad_token_id": 0,
|
| 35 |
+
"padded_vocab_size": 65024,
|
| 36 |
+
"post_layer_norm": true,
|
| 37 |
+
"pre_seq_len": null,
|
| 38 |
+
"prefix_projection": false,
|
| 39 |
+
"quantization_bit": 0,
|
| 40 |
+
"rmsnorm": true,
|
| 41 |
+
"seq_length": 8192,
|
| 42 |
+
"tie_word_embeddings": false,
|
| 43 |
+
"torch_dtype": "float32",
|
| 44 |
+
"transformers_version": "4.41.2",
|
| 45 |
+
"use_cache": true,
|
| 46 |
+
"vocab_size": 65024
|
| 47 |
+
}
|
text_encoder/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d8bf2a2ec2a88438d443e847f5df576f4fd2a73f0f242eac48a5043b187191c
|
| 3 |
+
size 4168404
|
tokenizer/special_tokens_map.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{}
|
tokenizer/tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7dc4c393423b76e4373e5157ddc34803a0189ba96b21ddbb40269d31468a6f2
|
| 3 |
+
size 1018370
|
tokenizer/tokenizer_config.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {},
|
| 3 |
+
"auto_map": {
|
| 4 |
+
"AutoTokenizer": [
|
| 5 |
+
"hf-internal-testing/tiny-random-chatglm3-6b--tokenization_chatglm.ChatGLMTokenizer",
|
| 6 |
+
null
|
| 7 |
+
]
|
| 8 |
+
},
|
| 9 |
+
"clean_up_tokenization_spaces": false,
|
| 10 |
+
"do_lower_case": false,
|
| 11 |
+
"encode_special_tokens": false,
|
| 12 |
+
"eos_token": "</s>",
|
| 13 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 14 |
+
"pad_token": "<unk>",
|
| 15 |
+
"padding_side": "left",
|
| 16 |
+
"remove_space": false,
|
| 17 |
+
"tokenizer_class": "ChatGLMTokenizer",
|
| 18 |
+
"unk_token": "<unk>"
|
| 19 |
+
}
|
unet/config.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "UNet2DConditionModel",
|
| 3 |
+
"_diffusers_version": "0.30.0.dev0",
|
| 4 |
+
"act_fn": "silu",
|
| 5 |
+
"addition_embed_type": "text_time",
|
| 6 |
+
"addition_embed_type_num_heads": 64,
|
| 7 |
+
"addition_time_embed_dim": 8,
|
| 8 |
+
"attention_head_dim": [
|
| 9 |
+
2,
|
| 10 |
+
4
|
| 11 |
+
],
|
| 12 |
+
"attention_type": "default",
|
| 13 |
+
"block_out_channels": [
|
| 14 |
+
2,
|
| 15 |
+
4
|
| 16 |
+
],
|
| 17 |
+
"center_input_sample": false,
|
| 18 |
+
"class_embed_type": null,
|
| 19 |
+
"class_embeddings_concat": false,
|
| 20 |
+
"conv_in_kernel": 3,
|
| 21 |
+
"conv_out_kernel": 3,
|
| 22 |
+
"cross_attention_dim": 8,
|
| 23 |
+
"cross_attention_norm": null,
|
| 24 |
+
"down_block_types": [
|
| 25 |
+
"DownBlock2D",
|
| 26 |
+
"CrossAttnDownBlock2D"
|
| 27 |
+
],
|
| 28 |
+
"downsample_padding": 1,
|
| 29 |
+
"dropout": 0.0,
|
| 30 |
+
"dual_cross_attention": false,
|
| 31 |
+
"encoder_hid_dim": null,
|
| 32 |
+
"encoder_hid_dim_type": null,
|
| 33 |
+
"flip_sin_to_cos": true,
|
| 34 |
+
"freq_shift": 0,
|
| 35 |
+
"in_channels": 4,
|
| 36 |
+
"layers_per_block": 2,
|
| 37 |
+
"mid_block_only_cross_attention": null,
|
| 38 |
+
"mid_block_scale_factor": 1,
|
| 39 |
+
"mid_block_type": "UNetMidBlock2DCrossAttn",
|
| 40 |
+
"norm_eps": 1e-05,
|
| 41 |
+
"norm_num_groups": 1,
|
| 42 |
+
"num_attention_heads": null,
|
| 43 |
+
"num_class_embeds": null,
|
| 44 |
+
"only_cross_attention": false,
|
| 45 |
+
"out_channels": 4,
|
| 46 |
+
"projection_class_embeddings_input_dim": 56,
|
| 47 |
+
"resnet_out_scale_factor": 1.0,
|
| 48 |
+
"resnet_skip_time_act": false,
|
| 49 |
+
"resnet_time_scale_shift": "default",
|
| 50 |
+
"reverse_transformer_layers_per_block": null,
|
| 51 |
+
"sample_size": 32,
|
| 52 |
+
"time_cond_proj_dim": null,
|
| 53 |
+
"time_embedding_act_fn": null,
|
| 54 |
+
"time_embedding_dim": null,
|
| 55 |
+
"time_embedding_type": "positional",
|
| 56 |
+
"timestep_post_act": null,
|
| 57 |
+
"transformer_layers_per_block": [
|
| 58 |
+
1,
|
| 59 |
+
2
|
| 60 |
+
],
|
| 61 |
+
"up_block_types": [
|
| 62 |
+
"CrossAttnUpBlock2D",
|
| 63 |
+
"UpBlock2D"
|
| 64 |
+
],
|
| 65 |
+
"upcast_attention": false,
|
| 66 |
+
"use_linear_projection": true
|
| 67 |
+
}
|
unet/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14f3fa2e4b88fa6f6227bbecda282c064d480062a73918484e741de0a221e227
|
| 3 |
+
size 86904
|
vae/config.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AutoencoderKL",
|
| 3 |
+
"_diffusers_version": "0.30.0.dev0",
|
| 4 |
+
"act_fn": "silu",
|
| 5 |
+
"block_out_channels": [
|
| 6 |
+
32,
|
| 7 |
+
64
|
| 8 |
+
],
|
| 9 |
+
"down_block_types": [
|
| 10 |
+
"DownEncoderBlock2D",
|
| 11 |
+
"DownEncoderBlock2D"
|
| 12 |
+
],
|
| 13 |
+
"force_upcast": true,
|
| 14 |
+
"in_channels": 3,
|
| 15 |
+
"latent_channels": 4,
|
| 16 |
+
"latents_mean": null,
|
| 17 |
+
"latents_std": null,
|
| 18 |
+
"layers_per_block": 1,
|
| 19 |
+
"mid_block_add_attention": true,
|
| 20 |
+
"norm_num_groups": 32,
|
| 21 |
+
"out_channels": 3,
|
| 22 |
+
"sample_size": 128,
|
| 23 |
+
"scaling_factor": 0.18215,
|
| 24 |
+
"shift_factor": null,
|
| 25 |
+
"up_block_types": [
|
| 26 |
+
"UpDecoderBlock2D",
|
| 27 |
+
"UpDecoderBlock2D"
|
| 28 |
+
],
|
| 29 |
+
"use_post_quant_conv": true,
|
| 30 |
+
"use_quant_conv": true
|
| 31 |
+
}
|
vae/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7999b516094ac4239121d9f62a37e6be99620e7016220011bb99cf8b1a391aad
|
| 3 |
+
size 2646532
|