Add character consistency features: IP-Adapter, InstantID, Character Profiles, LoRA Training
- Add IP-Adapter integration for character consistency using reference images - Add InstantID support for superior face identity preservation - Add Character Profile System to store reference images and face embeddings - Add LoRA Training Workflow for perfect character consistency - Add command-line arguments for all character consistency features - Update EXAMPLES.md with comprehensive character consistency documentation - Update requirements.txt with optional dependencies (insightface, onnxruntime) New commands: - --character: Use saved character profile - --create-character: Create new character profile from reference images - --list-characters: List all saved profiles - --show-character: Show profile details - --ipadapter: Enable IP-Adapter for consistency - --instantid: Enable InstantID for face identity - --train-lora: Train custom LoRA for character
Showing
| ... | @@ -31,6 +31,11 @@ opencv-python>=4.8.0 | ... | @@ -31,6 +31,11 @@ opencv-python>=4.8.0 |
| face-recognition>=1.14.0 | face-recognition>=1.14.0 | ||
| # dlib # Install with: pip install dlib (requires cmake) | # dlib # Install with: pip install dlib (requires cmake) | ||
| # Character Consistency Dependencies (Optional - for IP-Adapter, InstantID) | |||
| # insightface>=0.7.3 # Install with: pip install insightface | |||
| # onnxruntime-gpu>=1.16.0 # Required for insightface GPU acceleration | |||
| # or onnxruntime>=1.16.0 # CPU only | |||
| # Model Management | # Model Management | ||
| requests>=2.31.0 | requests>=2.31.0 | ||
| urllib3>=2.0.0 | urllib3>=2.0.0 | ||
| ... | ... |
This diff is collapsed.
Please
register
or
sign in
to comment