Update README.md
Browse files
README.md
CHANGED
@@ -38,29 +38,34 @@ More results can be found in our [project page](https://photo-maker.github.io/)
|
|
38 |
|
39 |
## Model Details
|
40 |
|
41 |
-
|
42 |
|
43 |
-
<!-- Provide a longer summary of what this model is. -->
|
44 |
|
|
|
45 |
|
|
|
|
|
46 |
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
- **Language(s) (NLP):** [More Information Needed]
|
52 |
-
- **License:** [More Information Needed]
|
53 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
54 |
|
|
|
55 |
|
56 |
-
|
|
|
57 |
|
58 |
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
59 |
|
60 |
-
|
|
|
|
|
|
|
61 |
|
|
|
62 |
|
63 |
-
## Citation
|
64 |
|
65 |
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
66 |
|
|
|
38 |
|
39 |
## Model Details
|
40 |
|
41 |
+
It mainly contains two parts:
|
42 |
|
|
|
43 |
|
44 |
+
## Usage
|
45 |
|
46 |
+
You can directly download the model in this repository.
|
47 |
+
You also can download the model in python script:
|
48 |
|
49 |
+
```python
|
50 |
+
from huggingface_hub import hf_hub_download
|
51 |
+
photomaker_ckpt = hf_hub_download(repo_id="TencentARC/PhotoMaker", filename="photomaker-v1.bin", repo_type="model")
|
52 |
+
```
|
|
|
|
|
|
|
53 |
|
54 |
+
Then, please follow the instructions in our [GitHub repository](https://github.com/TencentARC/PhotoMaker).
|
55 |
|
56 |
+
|
57 |
+
## Limitations
|
58 |
|
59 |
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
60 |
|
61 |
+
- The model's customization performance degrades on Asian male faces.
|
62 |
+
- The model still struggles with accurately rendering human hands.
|
63 |
+
|
64 |
+
## Bias
|
65 |
|
66 |
+
While the capabilities of image generation models are impressive, they can also reinforce or exacerbate social biases.
|
67 |
|
68 |
+
## Citation
|
69 |
|
70 |
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
71 |
|