Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -58,10 +58,8 @@ TEMPLATE = (
|
|
58 |
"<general>{subject}"
|
59 |
)
|
60 |
QUALITY_TAGS = ""
|
61 |
-
NEGATIVE_PROMPT = "bad quality, worst quality, lowres, bad anatomy, sketch, jpeg artifacts, ugly, poorly drawn, signature, watermark, bad anatomy, bad hands, bad feet, retro, old, 2000s, 2010s, 2011s, 2012s, 2013s, multiple views,
|
62 |
BAN_TAGS = [
|
63 |
-
"photoshop (medium)",
|
64 |
-
"clip studio paint (medium)",
|
65 |
"2005", # year tags
|
66 |
"2006",
|
67 |
"2007",
|
@@ -78,6 +76,8 @@ BAN_TAGS = [
|
|
78 |
"2018",
|
79 |
"2019",
|
80 |
"2020",
|
|
|
|
|
81 |
]
|
82 |
|
83 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
|
|
58 |
"<general>{subject}"
|
59 |
)
|
60 |
QUALITY_TAGS = ""
|
61 |
+
NEGATIVE_PROMPT = "bad quality, worst quality, lowres, bad anatomy, sketch, jpeg artifacts, ugly, poorly drawn, signature, watermark, bad anatomy, bad hands, bad feet, retro, old, 2000s, 2010s, 2011s, 2012s, 2013s, multiple views, screencap"
|
62 |
BAN_TAGS = [
|
|
|
|
|
63 |
"2005", # year tags
|
64 |
"2006",
|
65 |
"2007",
|
|
|
76 |
"2018",
|
77 |
"2019",
|
78 |
"2020",
|
79 |
+
"dated",
|
80 |
+
"web address",
|
81 |
]
|
82 |
|
83 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|