Upload folder using huggingface_hub
Browse files- model_index.json +20 -0
- part_encoder/config.json +17 -0
- part_encoder/diffusion_pytorch_model.safetensors +3 -0
- scheduler/scheduler_config.json +7 -0
- transformer/config.json +12 -0
- transformer/diffusion_pytorch_model.safetensors +3 -0
- vae/config.json +14 -0
- vae/diffusion_pytorch_model.safetensors +3 -0
model_index.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "HoloPartPipeline",
|
3 |
+
"_diffusers_version": "0.30.3",
|
4 |
+
"part_encoder": [
|
5 |
+
"holopart.models.part_encoders",
|
6 |
+
"PartEncoder"
|
7 |
+
],
|
8 |
+
"scheduler": [
|
9 |
+
"holopart.schedulers.scheduling_rectified_flow",
|
10 |
+
"RectifiedFlowScheduler"
|
11 |
+
],
|
12 |
+
"transformer": [
|
13 |
+
"holopart.models.transformers.triposg_transformer",
|
14 |
+
"TripoSGDiTModel"
|
15 |
+
],
|
16 |
+
"vae": [
|
17 |
+
"holopart.models.autoencoders.autoencoder_kl_triposg",
|
18 |
+
"TripoSGVAEModel"
|
19 |
+
]
|
20 |
+
}
|
part_encoder/config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "PartEncoder",
|
3 |
+
"_diffusers_version": "0.30.3",
|
4 |
+
"dim": 512,
|
5 |
+
"embed_frequency": 8,
|
6 |
+
"embed_include_pi": false,
|
7 |
+
"embedding_type": "frequency",
|
8 |
+
"init_weights": null,
|
9 |
+
"noise_level": null,
|
10 |
+
"num_attention_heads": 8,
|
11 |
+
"num_layers": 8,
|
12 |
+
"num_tokens": 2048,
|
13 |
+
"part_feature_channels": 3,
|
14 |
+
"part_local": true,
|
15 |
+
"position_channels": 3,
|
16 |
+
"whole_feature_channels": 4
|
17 |
+
}
|
part_encoder/diffusion_pytorch_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:95cdf41201fcb656f5a56cfebdbbe51c3daff46c025839f3528e7a9a3aef7ace
|
3 |
+
size 113635824
|
scheduler/scheduler_config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "RectifiedFlowScheduler",
|
3 |
+
"_diffusers_version": "0.30.3",
|
4 |
+
"num_train_timesteps": 1000,
|
5 |
+
"shift": 2,
|
6 |
+
"use_dynamic_shifting": false
|
7 |
+
}
|
transformer/config.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "TripoSGDiTModel",
|
3 |
+
"_diffusers_version": "0.30.3",
|
4 |
+
"cross_attention_2_dim": 512,
|
5 |
+
"cross_attention_dim": 512,
|
6 |
+
"in_channels": 64,
|
7 |
+
"num_attention_heads": 16,
|
8 |
+
"num_layers": 21,
|
9 |
+
"use_cross_attention": true,
|
10 |
+
"use_cross_attention_2": true,
|
11 |
+
"width": 2048
|
12 |
+
}
|
transformer/diffusion_pytorch_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1b68b7e632635a3818da6c783fb40bc04ab7c93041a0f31a962cc6f576f6d0b3
|
3 |
+
size 3231777280
|
vae/config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "TripoSGVAEModel",
|
3 |
+
"_diffusers_version": "0.30.3",
|
4 |
+
"embed_frequency": 8,
|
5 |
+
"embed_include_pi": false,
|
6 |
+
"embedding_type": "frequency",
|
7 |
+
"in_channels": 3,
|
8 |
+
"latent_channels": 64,
|
9 |
+
"num_attention_heads": 8,
|
10 |
+
"num_layers_decoder": 16,
|
11 |
+
"num_layers_encoder": 8,
|
12 |
+
"width_decoder": 1024,
|
13 |
+
"width_encoder": 512
|
14 |
+
}
|
vae/diffusion_pytorch_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b43b006e5692223877427cdb568c2c1477f52a2d226db4d5eb354b4886c167a4
|
3 |
+
size 485361378
|