Update README.md
Browse files
README.md
CHANGED
@@ -1,11 +1,17 @@
|
|
1 |
---
|
2 |
library_name: diffusers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
|
5 |
-
# Model Card for
|
6 |
-
|
7 |
-
<!-- Provide a quick summary of what the model is/does. -->
|
8 |
|
|
|
9 |
|
10 |
|
11 |
## Model Details
|
@@ -14,61 +20,40 @@ library_name: diffusers
|
|
14 |
|
15 |
<!-- Provide a longer summary of what this model is. -->
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
- **Developed by:** [More Information Needed]
|
20 |
-
- **Funded by [optional]:** [More Information Needed]
|
21 |
-
- **Shared by [optional]:** [More Information Needed]
|
22 |
-
- **Model type:** [More Information Needed]
|
23 |
-
- **Language(s) (NLP):** [More Information Needed]
|
24 |
-
- **License:** [More Information Needed]
|
25 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
26 |
|
27 |
### Model Sources [optional]
|
28 |
|
29 |
<!-- Provide the basic links for the model. -->
|
30 |
|
31 |
-
- **Repository:** [
|
32 |
-
- **Paper [optional]:** [More Information Needed]
|
33 |
-
- **Demo [optional]:** [More Information Needed]
|
34 |
|
35 |
## Uses
|
36 |
|
37 |
-
|
38 |
-
|
39 |
-
### Direct Use
|
40 |
-
|
41 |
-
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
42 |
-
|
43 |
-
[More Information Needed]
|
44 |
-
|
45 |
-
### Downstream Use [optional]
|
46 |
-
|
47 |
-
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
48 |
-
|
49 |
-
[More Information Needed]
|
50 |
-
|
51 |
-
### Out-of-Scope Use
|
52 |
|
53 |
-
|
|
|
|
|
|
|
54 |
|
55 |
-
|
56 |
-
|
57 |
-
## Bias, Risks, and Limitations
|
58 |
-
|
59 |
-
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
60 |
-
|
61 |
-
[More Information Needed]
|
62 |
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
-
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
66 |
|
67 |
-
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
68 |
|
69 |
-
|
70 |
|
71 |
-
Use the code below to get started with the model.
|
72 |
|
73 |
[More Information Needed]
|
74 |
|
@@ -76,17 +61,13 @@ Use the code below to get started with the model.
|
|
76 |
|
77 |
### Training Data
|
78 |
|
79 |
-
|
80 |
|
81 |
[More Information Needed]
|
82 |
|
83 |
### Training Procedure
|
84 |
|
85 |
-
|
86 |
-
|
87 |
-
#### Preprocessing [optional]
|
88 |
-
|
89 |
-
[More Information Needed]
|
90 |
|
91 |
|
92 |
#### Training Hyperparameters
|
|
|
1 |
---
|
2 |
library_name: diffusers
|
3 |
+
license: cc-by-nc-2.0
|
4 |
+
base_model:
|
5 |
+
- black-forest-labs/FLUX.1-Fill-dev
|
6 |
+
pipeline_tag: image-to-image
|
7 |
+
tags:
|
8 |
+
- tryon
|
9 |
+
- vto
|
10 |
---
|
11 |
|
12 |
+
# Model Card for CATVTON-Flux
|
|
|
|
|
13 |
|
14 |
+
CATVTON-Flux is an advanced virtual try-on solution that combines CATVTON (Contrastive Appearance and Topology Virtual Try-On) with Flux fill inpainting model for realistic and accurate clothing transfer.
|
15 |
|
16 |
|
17 |
## Model Details
|
|
|
20 |
|
21 |
<!-- Provide a longer summary of what this model is. -->
|
22 |
|
23 |
+
- **Developed by:** [https://x.com/MrsZaaa]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
### Model Sources [optional]
|
26 |
|
27 |
<!-- Provide the basic links for the model. -->
|
28 |
|
29 |
+
- **Repository:** [https://github.com/nftblackmagic/catvton-flux]
|
|
|
|
|
30 |
|
31 |
## Uses
|
32 |
|
33 |
+
The model is designed for virtual try-on applications, allowing users to visualize how different garments would look on a person. It can be used directly through command-line interface with the following parameters:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
Input person image
|
36 |
+
Person mask
|
37 |
+
Garment image
|
38 |
+
Random seed (optional)
|
39 |
|
40 |
+
## How to Get Started with the Model
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
+
```
|
43 |
+
transformer = FluxTransformer2DModel.from_pretrained(
|
44 |
+
"xiaozaa/catvton-flux-alpha",
|
45 |
+
torch_dtype=torch.bfloat16
|
46 |
+
)
|
47 |
+
pipe = FluxFillPipeline.from_pretrained(
|
48 |
+
"black-forest-labs/FLUX.1-dev",
|
49 |
+
transformer=transformer,
|
50 |
+
torch_dtype=torch.bfloat16
|
51 |
+
).to("cuda")
|
52 |
|
|
|
53 |
|
|
|
54 |
|
55 |
+
```
|
56 |
|
|
|
57 |
|
58 |
[More Information Needed]
|
59 |
|
|
|
61 |
|
62 |
### Training Data
|
63 |
|
64 |
+
VITON-HD
|
65 |
|
66 |
[More Information Needed]
|
67 |
|
68 |
### Training Procedure
|
69 |
|
70 |
+
Finetuning Flux1-dev-fill
|
|
|
|
|
|
|
|
|
71 |
|
72 |
|
73 |
#### Training Hyperparameters
|