CoolFace
Apppublic

lllyasviel/IC-Light

sourceHugging Facecreativeml-openrail-mupdated 3mo agoView on Hugging Face
1.4klikes
db_examples.py218 linesDownload Raw Back to root
1foreground_conditioned_examples = [2    [3        "imgs/i1.webp",4        "beautiful woman, detailed face, sunshine, outdoor, warm atmosphere",5        "Right Light",6        512,7        960,8        12345,9        "imgs/o1.png",10    ],11    [12        "imgs/i1.webp",13        "beautiful woman, detailed face, sunshine, outdoor, warm atmosphere",14        "Left Light",15        512,16        960,17        50,18        "imgs/o2.png",19    ],20    [21        "imgs/i3.png",22        "beautiful woman, detailed face, neon, Wong Kar-wai, warm",23        "Left Light",24        512,25        768,26        12345,27        "imgs/o3.png",28    ],29    [30        "imgs/i3.png",31        "beautiful woman, detailed face, sunshine from window",32        "Left Light",33        512,34        768,35        12345,36        "imgs/o4.png",37    ],38    [39        "imgs/i5.png",40        "beautiful woman, detailed face, warm atmosphere, at home, bedroom",41        "Left Light",42        512,43        768,44        123,45        "imgs/o5.png",46    ],47    [48        "imgs/i6.jpg",49        "beautiful woman, detailed face, sunshine from window",50        "Right Light",51        512,52        768,53        42,54        "imgs/o6.png",55    ],56    [57        "imgs/i7.jpg",58        "beautiful woman, detailed face, shadow from window",59        "Left Light",60        512,61        768,62        8888,63        "imgs/o7.png",64    ],65    [66        "imgs/i8.webp",67        "beautiful woman, detailed face, sunset over sea",68        "Right Light",69        512,70        640,71        42,72        "imgs/o8.png",73    ],74    [75        "imgs/i9.png",76        "handsome boy, detailed face, neon light, city",77        "Left Light",78        512,79        640,80        12345,81        "imgs/o9.png",82    ],83    [84        "imgs/i10.png",85        "beautiful woman, detailed face, light and shadow",86        "Left Light",87        512,88        960,89        8888,90        "imgs/o10.png",91    ],92    [93        "imgs/i11.png",94        "Buddha, detailed face, sci-fi RGB glowing, cyberpunk",95        "Left Light",96        512,97        768,98        8888,99        "imgs/o11.png",100    ],101    [102        "imgs/i11.png",103        "Buddha, detailed face, natural lighting",104        "Left Light",105        512,106        768,107        12345,108        "imgs/o12.png",109    ],110    [111        "imgs/i13.png",112        "toy, detailed face, shadow from window",113        "Bottom Light",114        512,115        704,116        12345,117        "imgs/o13.png",118    ],119    [120        "imgs/i14.png",121        "toy, detailed face, sunset over sea",122        "Right Light",123        512,124        704,125        100,126        "imgs/o14.png",127    ],128    [129        "imgs/i15.png",130        "dog, magic lit, sci-fi RGB glowing, studio lighting",131        "Bottom Light",132        512,133        768,134        12345,135        "imgs/o15.png",136    ],137    [138        "imgs/i16.png",139        "mysteriou human, warm atmosphere, warm atmosphere, at home, bedroom",140        "Right Light",141        512,142        768,143        100,144        "imgs/o16.png",145    ],146]147 148bg_samples = [149    'imgs/bgs/1.webp',150    'imgs/bgs/2.webp',151    'imgs/bgs/3.webp',152    'imgs/bgs/4.webp',153    'imgs/bgs/5.webp',154    'imgs/bgs/6.webp',155    'imgs/bgs/7.webp',156    'imgs/bgs/8.webp',157    'imgs/bgs/9.webp',158    'imgs/bgs/10.webp',159    'imgs/bgs/11.png',160    'imgs/bgs/12.png',161    'imgs/bgs/13.png',162    'imgs/bgs/14.png',163    'imgs/bgs/15.png',164]165 166background_conditioned_examples = [167    [168        "imgs/alter/i3.png",169        "imgs/bgs/7.webp",170        "beautiful woman, cinematic lighting",171        "Use Background Image",172        512,173        768,174        12345,175        "imgs/alter/o1.png",176    ],177    [178        "imgs/alter/i2.png",179        "imgs/bgs/11.png",180        "statue of an angel, natural lighting",181        "Use Flipped Background Image",182        512,183        768,184        12345,185        "imgs/alter/o2.png",186    ],187    [188        "imgs/alter/i1.jpeg",189        "imgs/bgs/2.webp",190        "beautiful woman, cinematic lighting",191        "Use Background Image",192        512,193        768,194        12345,195        "imgs/alter/o3.png",196    ],197    [198        "imgs/alter/i1.jpeg",199        "imgs/bgs/3.webp",200        "beautiful woman, cinematic lighting",201        "Use Background Image",202        512,203        768,204        12345,205        "imgs/alter/o4.png",206    ],207    [208        "imgs/alter/i6.webp",209        "imgs/bgs/15.png",210        "handsome man, cinematic lighting",211        "Use Background Image",212        512,213        768,214        12345,215        "imgs/alter/o5.png",216    ],217]218