EquiFashionModel
Browse files
README.md
CHANGED
|
@@ -105,7 +105,7 @@ from cldm.model import create_model, load_state_dict
|
|
| 105 |
import torch
|
| 106 |
|
| 107 |
# Download checkpoint
|
| 108 |
-
ckpt = hf_hub_download("NguyenDinhHieu/EquiFashionModel", filename="
|
| 109 |
|
| 110 |
# Load model
|
| 111 |
model = create_model("utils/configs/cldm_v2.yaml").to("cuda")
|
|
@@ -133,7 +133,7 @@ If you use this model or dataset, please cite:
|
|
| 133 |
|
| 134 |
| File | Description |
|
| 135 |
|------|--------------|
|
| 136 |
-
| `
|
| 137 |
| `body_pose_model.pth`, `hand_pose_model.pth` | OpenPose keypoint weights |
|
| 138 |
| `open_clip_pytorch_model.bin` | Pretrained OpenCLIP text encoder |
|
| 139 |
| `app.py` | Gradio demo UI |
|
|
|
|
| 105 |
import torch
|
| 106 |
|
| 107 |
# Download checkpoint
|
| 108 |
+
ckpt = hf_hub_download("NguyenDinhHieu/EquiFashionModel", filename="eqf_final.ckpt")
|
| 109 |
|
| 110 |
# Load model
|
| 111 |
model = create_model("utils/configs/cldm_v2.yaml").to("cuda")
|
|
|
|
| 133 |
|
| 134 |
| File | Description |
|
| 135 |
|------|--------------|
|
| 136 |
+
| `eqf_final.ckpt` | Main Hybrid GAN–Diffusion model checkpoint |
|
| 137 |
| `body_pose_model.pth`, `hand_pose_model.pth` | OpenPose keypoint weights |
|
| 138 |
| `open_clip_pytorch_model.bin` | Pretrained OpenCLIP text encoder |
|
| 139 |
| `app.py` | Gradio demo UI |
|