hsuwill000
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ import torch
|
|
7 |
from huggingface_hub import snapshot_download
|
8 |
import openvino.runtime as ov
|
9 |
from typing import Optional, Dict
|
10 |
-
from diffusers import EulerAncestralDiscreteScheduler, LCMScheduler
|
11 |
|
12 |
#LCMScheduler 產生垃圾
|
13 |
#EulerDiscreteScheduler 尚可
|
@@ -29,8 +29,8 @@ pipe = OVStableDiffusionPipeline.from_pretrained(
|
|
29 |
model_id,
|
30 |
compile = False,
|
31 |
ov_config = {"CACHE_DIR":""},
|
32 |
-
torch_dtype=torch.int8, #快
|
33 |
-
|
34 |
#variant="fp16",
|
35 |
#torch_dtype=torch.IntTensor, #慢,
|
36 |
safety_checker=None,
|
@@ -77,7 +77,7 @@ examples = [
|
|
77 |
"(Digital art, highres, best quality, 8K, masterpiece, anime screencap, perfect eyes:1.4, ultra detailed:1.5),1girl,flat chest,short messy pink hair,blue eyes,tall,thick thighs,light blue hoodie,collar,light blue shirt,black sport shorts,bulge,black thigh highs,femboy,okoto no ko,smiling,blushing,looking at viewer,inside,livingroom,sitting on couch,nighttime,dark,hand_to_mouth,",
|
78 |
"1girl, silver hair, symbol-shaped pupils, yellow eyes, smiling, light particles, light rays, wallpaper, star guardian, serious face, red inner hair, power aura, grandmaster1, golden and white clothes",
|
79 |
"masterpiece, best quality, highres booru, 1girl, solo, depth of field, rim lighting, flowers, petals, from above, crystals, butterfly, vegetation, aura, magic, hatsune miku, blush, slight smile, close-up, against wall,",
|
80 |
-
"
|
81 |
]
|
82 |
|
83 |
css="""
|
|
|
7 |
from huggingface_hub import snapshot_download
|
8 |
import openvino.runtime as ov
|
9 |
from typing import Optional, Dict
|
10 |
+
#from diffusers import EulerAncestralDiscreteScheduler, LCMScheduler
|
11 |
|
12 |
#LCMScheduler 產生垃圾
|
13 |
#EulerDiscreteScheduler 尚可
|
|
|
29 |
model_id,
|
30 |
compile = False,
|
31 |
ov_config = {"CACHE_DIR":""},
|
32 |
+
#torch_dtype=torch.int8, #快
|
33 |
+
torch_dtype=torch.bfloat16, #中
|
34 |
#variant="fp16",
|
35 |
#torch_dtype=torch.IntTensor, #慢,
|
36 |
safety_checker=None,
|
|
|
77 |
"(Digital art, highres, best quality, 8K, masterpiece, anime screencap, perfect eyes:1.4, ultra detailed:1.5),1girl,flat chest,short messy pink hair,blue eyes,tall,thick thighs,light blue hoodie,collar,light blue shirt,black sport shorts,bulge,black thigh highs,femboy,okoto no ko,smiling,blushing,looking at viewer,inside,livingroom,sitting on couch,nighttime,dark,hand_to_mouth,",
|
78 |
"1girl, silver hair, symbol-shaped pupils, yellow eyes, smiling, light particles, light rays, wallpaper, star guardian, serious face, red inner hair, power aura, grandmaster1, golden and white clothes",
|
79 |
"masterpiece, best quality, highres booru, 1girl, solo, depth of field, rim lighting, flowers, petals, from above, crystals, butterfly, vegetation, aura, magic, hatsune miku, blush, slight smile, close-up, against wall,",
|
80 |
+
"((colofrul:1.7)),((best quality)), ((masterpiece)), ((ultra-detailed)), (illustration), (detailed light), (an extremely delicate and beautiful),incredibly_absurdres,(glowing),(1girl:1.7),solo,a beautiful girl,(((cowboy shot))),standding,((Hosiery)),((beautiful off-shoulder lace-trimmed layered strapless dress+white stocking):1.25),((Belts)),(leg loops),((Hosiery)),((flower headdress)),((long white hair)),(((beautiful eyes))),BREAK,((english text)),(flower:1.35),(garden),(((border:1.75))),",
|
81 |
]
|
82 |
|
83 |
css="""
|