-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblacklist.ts
26 lines (24 loc) · 849 Bytes
/
blacklist.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// List of checkpoints that are not good enough to be in this repo.
const blacklist = [
{
name: 'LUSTIFY! [SDXL NSFW & SFW checkpoint]',
homepage: 'https://civitai.com/models/573152?modelVersionId=638929',
version: '1',
comment:
'Unstable. Trained on bad quality data. Generates blurry and low-quality faces sometimes. Generates long bodies above 1024px',
},
{
name: 'NatViS: Natural Vision',
homepage: 'https://civitai.com/models/617652?modelVersionId=690475',
version: '1',
comment: 'Creates deformed bodies. Does not work well above 1024px.',
},
{
name: 'TAME',
homepage:
'https://civitai.com/models/722045/tame-pony-the-authenticity-machine?modelVersionId=807386',
version: '1',
comment: 'Terrible results. Bad quality. Not recommended.',
},
];
export default blacklist;