Update README.md
Browse files
README.md
CHANGED
|
@@ -1,25 +1,23 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
| 3 |
-
|
| 4 |
-
- bitmind/celeb-a-hq
|
| 5 |
-
base_model:
|
| 6 |
-
- h94/IP-Adapter-FaceID
|
| 7 |
-
---
|
| 8 |
-
---
|
| 9 |
tags:
|
| 10 |
- text-to-image
|
| 11 |
- stable-diffusion
|
| 12 |
-
- diffusers
|
| 13 |
- ip-adapter
|
| 14 |
- face-id
|
| 15 |
-
-
|
| 16 |
-
|
| 17 |
-
-
|
| 18 |
library_name: diffusers
|
|
|
|
| 19 |
---
|
| 20 |
|
| 21 |
-
#
|
|
|
|
|
|
|
| 22 |
|
|
|
|
| 23 |
## Introduction
|
| 24 |
This is a custom, fine-tuned version of the **IP-Adapter-FaceID-PlusV2** model for Stable Diffusion 1.5. It was specifically trained to prioritize high-fidelity identity preservation while maintaining compositional realism across highly diverse prompts.
|
| 25 |
|
|
@@ -103,4 +101,19 @@ images = ip_model.generate(
|
|
| 103 |
height=768,
|
| 104 |
num_inference_steps=30
|
| 105 |
)
|
| 106 |
-
images[0].save("output.png")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: creativeml-openrail-m
|
| 3 |
+
base_model: SG161222/Realistic_Vision_V4.0_noVAE
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
tags:
|
| 5 |
- text-to-image
|
| 6 |
- stable-diffusion
|
|
|
|
| 7 |
- ip-adapter
|
| 8 |
- face-id
|
| 9 |
+
- identity-preservation
|
| 10 |
+
- portrait
|
| 11 |
+
- rishabh-in-code
|
| 12 |
library_name: diffusers
|
| 13 |
+
pipeline_tag: text-to-image
|
| 14 |
---
|
| 15 |
|
| 16 |
+
# TrueFace-Adapter: High-Fidelity Identity Preservation
|
| 17 |
+

|
| 18 |
+

|
| 19 |
|
| 20 |
+
---
|
| 21 |
## Introduction
|
| 22 |
This is a custom, fine-tuned version of the **IP-Adapter-FaceID-PlusV2** model for Stable Diffusion 1.5. It was specifically trained to prioritize high-fidelity identity preservation while maintaining compositional realism across highly diverse prompts.
|
| 23 |
|
|
|
|
| 101 |
height=768,
|
| 102 |
num_inference_steps=30
|
| 103 |
)
|
| 104 |
+
images[0].save("output.png")
|
| 105 |
+
```
|
| 106 |
+
|
| 107 |
+
|
| 108 |
+
## Citation
|
| 109 |
+
|
| 110 |
+
If you use this fine-tuned model in your research or projects, please cite it as:
|
| 111 |
+
```bibtex
|
| 112 |
+
@misc{rishabhincode2026trueface,
|
| 113 |
+
author = {RishabhInCode},
|
| 114 |
+
title = {TrueFace-Adapter: High-Fidelity Identity Preservation},
|
| 115 |
+
year = {2026},
|
| 116 |
+
publisher = {Hugging Face},
|
| 117 |
+
howpublished = {\url{https://huggingface.co/RishabhInCode/TrueFace-Adapter}}
|
| 118 |
+
}
|
| 119 |
+
```
|