AbstractPhil commited on
Commit
f5ad5bf
·
verified ·
1 Parent(s): 76b0fc4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -3
README.md CHANGED
@@ -1,3 +1,25 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model:
4
+ - google/flan-t5-base
5
+ - laion/CLIP-ViT-bigG-14-laion2B-39B-b160k
6
+ datasets:
7
+ - AbstractPhil/human-templated-captions-1b
8
+ ---
9
+
10
+ ## Simple Summary
11
+ This project provides an advanced text control system for any AI generator that uses CLIP-ViT-bigG-14-laion2B-39B-b160k as a basis. Also known as CLIP_G.
12
+
13
+
14
+ It lets you “steer” how AI interprets your written prompts by adding a smart adapter between the text input and the image model.
15
+ By fine-tuning how the prompt is understood, you get more accurate, creative, or controllable AI-generated images—especially in complex or multi-style models like Stable Diffusion XL.
16
+
17
+
18
+ ## More technical summary
19
+ This repository contains code, configuration, and weights for the Dual Shunt Adapter: a modular cross-attention prompt embedding controller designed for SDXL and multi-CLIP diffusion systems.
20
+ The adapter bridges T5 (or other transformer) text encoders with CLIP-based pooled embedding spaces, providing delta, gate, log_sigma, anchor, and guidance outputs for per-token, per-field semantic modulation.
21
+ Compatible with custom and parallel CLIP streams (e.g., SDXL’s CLIP-L/CLIP-G), the system enables targeted latent field steering, dynamic classifier-free guidance, and localized prompt injection for advanced generative workflows—including direct integration with ComfyUI and HuggingFace Diffusers.
22
+
23
+
24
+ ### Code
25
+ The model code is present in model.py. Inference code will be available in the long-winded article.