sunnyark / civitai-shortcut

140 stars 13 forks source link

Classification not working #10

Closed BanditSan closed 1 year ago

BanditSan commented 1 year ago

Correct me if im misunderstanding something but classification should be a custom tagging feature for user to sort models? If this the case it does not work for me.

I have created few lists like this: image

But when i select them in browser getting empty list: image

sunnyark commented 1 year ago

When registering a model in the Classification tab, you must click the "Update" button. Did you do that?

BanditSan commented 1 year ago

Yes i did that. Without clicking Update after exiting list and reopening same list it is empty

sunnyark commented 1 year ago

must click the "Update" button. classification

BanditSan commented 1 year ago

Did exactly like your example and still nothing. All lists are empty in browser no matter how many time i click Update

https://user-images.githubusercontent.com/6743235/236000029-5375168f-153e-4b66-8b05-8dd030a1e29e.mp4

sunnyark commented 1 year ago

It seems difficult to identify the exact issue. Was there any problem with general keyword search or filtering by model type?

The relevant files are CivitaiShortCutClassification.json (saved file), util.py, sc_browser.py, and ishortcut.py (source files).

It seems like we have to check the output of each function one by one.

To check if the keywords are coming out correctly, we can add util.printD(f"keys:{keys} ,tags:{tags},clfs:{clfs}") after the line keys, tags, clfs = util.get_search_keyword(search) in the get_image_list function. e.g) keys, tags, clfs = util.get_search_keyword(search) util.printD(f"keys:{keys} ,tags:{tags},clfs:{clfs}")

[util.py]

def get_search_keyword(search:str):

tags = []
keys = []
clfs = []

if not search:
    return None , None, None

for word in search.split(","):
    word = word.strip().lower()
    if word.startswith("#"):
        if len(word) > 1:
            tag = word[1:]
            if tag not in tags:
                tags.append(tag)
    elif word.startswith("@"):
        if len(word) > 1:
            clf = word[1:]
            if clf not in clfs:
                clfs.append(clf)
    else:
        if word not in keys:
            keys.append(word)

return keys if len(keys) > 0 else None, tags if len(tags) > 0 else None, clfs if len(clfs) > 0 else None   

[ishortcut.py]

def get_image_list(shortcut_types=None, search=None)->str:

ISC = load()
if not ISC:
    return

result_list = list()        

keys, tags, clfs = util.get_search_keyword(search)    

# classification        
if clfs:        
    clfs_list = list()
    CISC = classification.load()
    if CISC:
        for name in clfs:
            name_list = classification.get_shortcut_list(CISC,name)
            if name_list:
                clfs_list.extend(name_list)
        clfs_list = list(set(clfs_list))

    if len(clfs_list) > 0:
        for mid in clfs_list:
            if str(mid) in ISC:
                result_list.append(ISC[str(mid)])
else:
    result_list = ISC.values()

# keys, tags = util.get_search_keyword(search)
# result_list = ISC.values()

# type 을 걸러내자
tmp_types = list()
if shortcut_types:
    for sc_type in shortcut_types:
        try:
            tmp_types.append(setting.ui_typenames[sc_type])
        except:
            pass

if tmp_types:
    result_list = [v for v in result_list if v['type'] in tmp_types]

# key를 걸러내자
if keys:
    key_list = list()
    for v in result_list:
        if v:
            for key in keys:
                if key in v['name'].lower():
                    key_list.append(v)
                    break                    
    result_list = key_list

# tags를 걸러내자
if tags:
    tags_list = list()
    for v in result_list:
        if v:
            if "tags" not in v.keys():
                continue                                 
            v_tags = [tag["name"].lower() for tag in v["tags"]]
            common_tags = set(v_tags) & set(tags)
            if common_tags:
                tags_list.append(v)
    result_list = tags_list

# 썸네일이 있는지 판단해서 대체 이미지 작업
shotcutlist = list()
for v in result_list:
    if v:
        if is_sc_image(v['id']):
            shotcutlist.append((os.path.join(setting.shortcut_thumbnail_folder,f"{v['id']}{setting.preview_image_ext}"),setting.set_shortcutname(v['name'],v['id'])))
        else:
            shotcutlist.append((setting.no_card_preview_image,setting.set_shortcutname(v['name'],v['id'])))

return shotcutlist 

[sc_browser.py]

def get_thumbnail_list(shortcut_types=None, only_downloaded=False, search=None):

shortlist =  ishortcut.get_image_list(shortcut_types, search)
if not shortlist:
    return None

if only_downloaded:
    if model.Downloaded_Models:                
        downloaded_list = list()            
        for short in shortlist:
            sc_name = short[1]
            mid = setting.get_modelid_from_shortcutname(sc_name)
            if mid in model.Downloaded_Models.keys():
                downloaded_list.append(short)
        return downloaded_list
else:
    return shortlist
return None
BanditSan commented 1 year ago

This debug line was already in ishortcut.py files get_image_list function just commented out

    keys, tags, clfs = util.get_search_keyword(search)    
    # util.printD(f"keys:{keys} ,tags:{tags},clfs:{clfs}")

It seems difficult to identify the exact issue. Was there any problem with general keyword search or filtering by model type?

This part woks just fine. Types or seaching by name or '#' tags

This is what i get with debug line enabled in ishortcut.py

Civitai Shortcut: keys:None ,tags:None,clfs:None
Civitai Shortcut: keys:None ,tags:['water'],clfs:None
Civitai Shortcut: keys:['chill'] ,tags:None,clfs:None
Civitai Shortcut: keys:None ,tags:None,clfs:['effects']
Civitai Shortcut: keys:None ,tags:None,clfs:['landscape']
Civitai Shortcut: keys:None ,tags:None,clfs:['cars&bikes']
Civitai Shortcut: keys:None ,tags:['cars&bikes'],clfs:None
Civitai Shortcut: keys:None ,tags:None,clfs:['cars&bikes']
sunnyark commented 1 year ago

Other keywords are appearing correctly, so this area is suspicious. Would you like to run a test like this?

def get_image_list(shortcut_types=None, search=None)->str:

ISC = load()
if not ISC:
    return

result_list = list()        

keys, tags, clfs = util.get_search_keyword(search)    
# util.printD(f"keys:{keys} ,tags:{tags},clfs:{clfs}")

# classification        
if clfs:        
    clfs_list = list()
    CISC = classification.load()
    if CISC:
        for name in clfs:
            name_list = classification.get_shortcut_list(CISC,name)
            if name_list:
                clfs_list.extend(name_list)
        clfs_list = list(set(clfs_list))

    util.printD(f"clfs_list:{clfs_list}")        

    if len(clfs_list) > 0:
        for mid in clfs_list:
            if str(mid) in ISC:
                result_list.append(ISC[str(mid)])
    util.printD(f"last:{result_list}")
else:
    result_list = ISC.values()
    util.printD(f"else:{result_list}")
sunnyark commented 1 year ago

Also, could you please upload the CivitaiShortCutClassification.json file?

BanditSan commented 1 year ago

Also, could you please upload the CivitaiShortCutClassification.json file?

Do not see anything wrong with this file. Looks like normal .json to me.

CivitaiShortCutClassification.json

```json { "Effects": { "info": "Effects", "shortcuts": [ "36527", "9049", "10222", "11630", "10750" ] }, "Landscape": { "info": "", "shortcuts": [ "25580", "25990", "26578", "27530", "27538", "27540" ] }, "Fasion": { "info": "", "shortcuts": [ "34393", "19492", "24913", "17853", "27615", "13062", "25803", "26697", "13835", "30690", "33656", "34106", "45008", "15365", "14925", "15650", "15801", "16877", "17475", "18188", "20455", "18979", "25646", "28676", "46554", "49597", "52430", "52885", "11413", "12265", "18215", "20714", "8217", "8029", "14203", "16935", "16196", "34030", "21670", "32172", "45375", "28512", "34855", "19618", "27892", "25225", "25732", "16766", "15667", "17956", "25107" ] }, "NoiseOffset": { "info": "", "shortcuts": [ "8765", "9205", "13941" ] }, "RealPeople": { "info": "", "shortcuts": [ "17943", "17468", "16839", "11096", "18282", "9092", "13125", "20833", "12930", "49039", "24995" ] }, "Cars&Bikes": { "info": "", "shortcuts": [ "29778", "8778", "9140", "24864", "27216", "20805", "21220", "26317", "38778", "43689", "20326" ] }, "DollLikeness": { "info": "", "shortcuts": [ "42903", "45631", "9434", "13068", "17998", "48363", "26124", "28811", "37831", "19356", "19044", "17497" ] } } ```

BanditSan commented 1 year ago

On initial load:

Details

``` Civitai Shortcut: else:dict_values([{'id': 6424, 'type': 'Checkpoint', 'name': 'ChilloutMix', 'tags': [{'name': 'photorealistic'}, {'name': 'porn'}, {'name': 'dreamlikeart'}, {'name': 'base model'}, {'name': 'sex'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/6424', 'versionid': 11745, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/20fcc1d7-29ce-42d8-1502-02c4e50e9100/width=450/174703.jpeg'}, {'id': 4384, 'type': 'Checkpoint', 'name': 'DreamShaper', 'tags': [{'name': 'anime'}, {'name': 'landscapes'}, {'name': 'character'}, {'name': 'girl'}, {'name': '3d'}, {'name': 'photorealistic'}, {'name': 'inpainting'}, {'name': 'digital art'}, {'name': 'scifi'}, {'name': 'fantasy art'}, {'name': 'style'}, {'name': 'art style'}, {'name': 'paintings'}, {'name': 'woman'}, {'name': 'illustration'}, {'name': '2d'}, {'name': 'digital illustration'}, {'name': 'fantasy'}, {'name': 'girls'}, {'name': 'portraits'}, {'name': 'realistic'}, {'name': 'video game'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/4384', 'versionid': 43888, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/83729236-9d3e-46ca-da52-4a16e6fd8800/width=450/479127.jpeg'}, {'id': 5952, 'type': 'Checkpoint', 'name': 'Experience', 'tags': [{'name': 'cyber punk'}, {'name': 'landscapes'}, {'name': 'character'}, {'name': 'futuristic'}, {'name': 'person'}, {'name': 'photorealistic'}, {'name': 'general purpose'}, {'name': 'photograpyfantasy'}, {'name': 'cyborg'}, {'name': 'cyberpunk'}, {'name': 'robots'}, {'name': 'style'}, {'name': 'woman'}, {'name': 'cinematic'}, {'name': 'fantasy'}, {'name': 'photography'}, {'name': 'photorealism'}, {'name': 'portraits'}, {'name': 'realistic'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/5952', 'versionid': 32718, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a16f037d-cebf-4181-979b-215cc1951900/width=450/372791.jpeg'}, {'id': 17449, 'type': 'Checkpoint', 'name': 'Level4', 'tags': [{'name': 'photorealistic'}, {'name': 'highly detailed'}, {'name': 'beautiful'}, {'name': 'fantasy'}, {'name': 'photorealism'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/17449', 'versionid': 25295, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f4265561-d2ca-4676-d3c0-e9778f116200/width=450/277511.jpeg'}, {'id': 4201, 'type': 'Checkpoint', 'name': 'Realistic Vision V2.0', 'tags': [{'name': 'character'}, {'name': 'photorealistic'}, {'name': 'anatomical'}, {'name': 'cgi'}, {'name': 'realistic'}, {'name': 'semi-realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/4201', 'versionid': 29460, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/393713d6-c943-4c6a-7247-ad5f03583200/width=450/333323.jpeg'}, {'id': 7371, 'type': 'Checkpoint', 'name': 'ReV Animated', 'tags': [{'name': 'anime'}, {'name': 'character'}, {'name': 'illustration'}, {'name': 'cartoon'}, {'name': 'fantasy'}, {'name': 'portraits'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/7371', 'versionid': 46846, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/13303d08-1b18-4b89-728f-82aa3b4aaa00/width=450/506112.jpeg'}, {'id': 4404, 'type': 'Checkpoint', 'name': 'Sci-Fi Diffusion v1.0', 'tags': [{'name': 'photorealistic'}, {'name': 'science fiction'}, {'name': 'scifi'}, {'name': 'style'}, {'name': 'realistic'}, {'name': 'sci fi'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/4404', 'versionid': 4980, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0b4c65cc-84f6-4b6e-512b-1e8613a94400/width=450/36078.jpeg'}, {'id': 21298, 'type': 'Checkpoint', 'name': 'Smooth Korean NI Real', 'tags': [{'name': 'girl'}, {'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'asian'}, {'name': 'naked'}, {'name': 'korean woman'}, {'name': 'woman'}, {'name': 'beautiful'}, {'name': 'girls'}, {'name': 'photography'}, {'name': 'realistic'}, {'name': 'women'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/21298', 'versionid': 25351, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/93e1f3c9-da6a-4388-379c-7d307d9eae00/width=450/278284.jpeg'}, {'id': 25580, 'type': 'LORA', 'name': 'XSarchitectural-12NightMoonsci-fi', 'tags': [{'name': 'science fiction'}, {'name': 'buildings'}, {'name': 'scenery'}, {'name': 'game cg'}, {'name': 'landscape'}, {'name': 'architecture design'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/25580', 'versionid': 30627, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/24b8c4a3-32c5-401f-2a14-5079c6fdea00/width=450/347842.jpeg'}, {'id': 25990, 'type': 'LORA', 'name': 'XSarchitectural-14Openingenvironment', 'tags': [{'name': 'environment concept art'}, {'name': 'background'}, {'name': 'game cg'}, {'name': 'landscape'}, {'name': 'environment'}, {'name': 'architecture design'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/25990', 'versionid': 31118, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f8df0fc0-8751-49df-166c-011fbede6b00/width=450/353926.jpeg'}, {'id': 26578, 'type': 'LORA', 'name': 'XSarchitectural-17SciencefictioncityonMars', 'tags': [{'name': 'buildings'}, {'name': 'cg'}, {'name': 'scifi landscape'}, {'name': 'game cg'}, {'name': 'landscape'}, {'name': 'game'}, {'name': 'scene'}, {'name': 'architecture design'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/26578', 'versionid': 31884, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/63862e69-375f-4bf8-0b3a-2d2c533dc200/width=450/362756.jpeg'}, {'id': 27530, 'type': 'LORA', 'name': 'XSarchitectural-21Futuretechnologycity', 'tags': [{'name': 'buildings'}, {'name': 'landscape'}, {'name': 'architecture design'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/27530', 'versionid': 32964, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5acb4409-4c26-4bd2-2e8e-9bfee8096400/width=450/375514.jpeg'}, {'id': 27538, 'type': 'LORA', 'name': 'XSarchitectural-24moonsci-fistyle', 'tags': [{'name': 'buildings'}, {'name': 'cg'}, {'name': 'scifi landscape'}, {'name': 'moon'}, {'name': 'game'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/27538', 'versionid': 32972, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bed489c4-a23d-49cf-5ee9-8836f3a6d200/width=450/375609.jpeg'}, {'id': 27540, 'type': 'LORA', 'name': 'XSarchitectural-25Eschatologicalstyle', 'tags': [{'name': 'buildings'}, {'name': 'landscape'}, {'name': 'architecture design'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/27540', 'versionid': 32974, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d168edfc-c650-4436-4e51-957952bc0900/width=450/375621.jpeg'}, {'id': 36527, 'type': 'LORA', 'name': 'Liquid effects', 'tags': [{'name': 'concept'}, {'name': 'effect'}, {'name': 'liquid'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/36527', 'versionid': 42610, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b3a1b740-3191-4483-fedb-d44128510d00/width=450/467526.jpeg'}, {'id': 9049, 'type': 'LORA', 'name': '🔥FireVFX - Create more consistent fire', 'tags': [{'name': 'anime'}, {'name': 'character'}, {'name': 'effect'}, {'name': 'fire'}, {'name': 'woman'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/9049', 'versionid': 23343, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/75a6a112-b981-4c83-9c06-1bc5c4cb0a00/width=450/253215.jpeg'}, {'id': 10222, 'type': 'LORA', 'name': '⚡LightningVFX - Create more consistent Lightning', 'tags': [{'name': 'anime'}, {'name': 'character'}, {'name': 'effect'}, {'name': 'vfx'}, {'name': 'lightning'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/10222', 'versionid': 12144, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/531ecce2-94b5-442a-aeaa-21be47232100/width=450/116393.jpeg'}, {'id': 11630, 'type': 'LORA', 'name': 'Glass Hair - WIP - Read Description', 'tags': [], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/11630', 'versionid': 13750, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/df702c60-8520-4367-b5af-6efaf770cf00/width=450/133369.jpeg'}, {'id': 10750, 'type': 'LORA', 'name': '💦WaterVFX - Create more consistent water - WIP', 'tags': [{'name': 'anime'}, {'name': 'water'}, {'name': 'ocean'}, {'name': 'wave'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/10750', 'versionid': 12758, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0ae75aae-e6e9-4142-0c6e-2815a07db200/width=450/123300.jpeg'}, {'id': 15365, 'type': 'LORA', 'name': 'hanfu 汉服', 'tags': [{'name': 'hanfu'}, {'name': 'clothing'}, {'name': 'hanstyle'}, {'name': 'jinstyle'}, {'name': 'tangstyle'}, {'name': 'songstyle'}, {'name': 'mingstyle'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/15365', 'versionid': 54777, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d5ad54b5-27ed-4173-3409-977d47048d00/width=450/592928.jpeg'}, {'id': 14925, 'type': 'LORA', 'name': 'Warrior Princesses', 'tags': [{'name': 'fashion design'}, {'name': 'warrior'}, {'name': 'woman'}, {'name': 'armor'}, {'name': 'clothing'}, {'name': 'fantasy'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/14925', 'versionid': 58381, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/19f8b03e-8319-4a7a-c7fe-39c7a51f1c00/width=450/635390.jpeg'}, {'id': 15650, 'type': 'LORA', 'name': 'Tied Shirt', 'tags': [{'name': 'sexy'}, {'name': 'shirt'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'tied shirt'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/15650', 'versionid': 18461, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0aa1fd8b-6479-4e11-8ead-c6e4ff356500/width=450/190555.jpeg'}, {'id': 15801, 'type': 'LORA', 'name': 'Sexy Tank Tops', 'tags': [{'name': 'sexy'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'tank top'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/15801', 'versionid': 18656, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/315ec24e-62a2-42f5-7f78-c7f18bed0100/width=450/193430.jpeg'}, {'id': 16877, 'type': 'LORA', 'name': 'Sneakers', 'tags': [{'name': 'fashion'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'shoes'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/16877', 'versionid': 19923, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/420aea10-f2d4-475e-85fa-765c8cd45600/width=450/210182.jpeg'}, {'id': 17475, 'type': 'LORA', 'name': 'Nuisettes ', 'tags': [{'name': 'sexy'}, {'name': 'fashion'}, {'name': 'lingerie'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'babydoll'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/17475', 'versionid': 20656, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9a0b5193-1ac1-48cb-fa37-ba983f0e9200/width=450/218599.jpeg'}, {'id': 18188, 'type': 'LORA', 'name': 'These Boots Are Made For Walking', 'tags': [{'name': 'fashion'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'boots'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/18188', 'versionid': 21530, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/03af13a1-4466-4fe2-5e40-08f3c4ec6e00/width=450/228805.jpeg'}, {'id': 20455, 'type': 'LORA', 'name': 'Japanese Lingerie Fusion Design', 'tags': [{'name': 'fashion'}, {'name': 'lingerie'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/20455', 'versionid': 24322, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4372e091-87cf-4ffb-c32f-055a6639a100/width=450/264507.jpeg'}, {'id': 18979, 'type': 'LORA', 'name': 'Haute Couture | Gowns', 'tags': [{'name': 'fashion'}, {'name': 'dress'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/18979', 'versionid': 22518, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c157ef79-9140-48fb-6c1c-020679f97b00/width=450/242276.jpeg'}, {'id': 25646, 'type': 'LORA', 'name': 'Heart Keyhole Cleavage', 'tags': [{'name': 'sexy'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/25646', 'versionid': 30706, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cfdfd05e-6cb6-43bf-4fb6-0a344034bd00/width=450/348739.jpeg'}, {'id': 28676, 'type': 'LORA', 'name': 'Urban Gal', 'tags': [{'name': 'fashion'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'urban'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/28676', 'versionid': 34405, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/66b4ef98-d5cc-4885-b614-9f00f0624500/width=450/493056.jpeg'}, {'id': 46554, 'type': 'LORA', 'name': 'Nanosuit', 'tags': [{'name': 'armor'}, {'name': 'armored'}, {'name': 'crysis'}, {'name': 'nanosuit'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/46554', 'versionid': 51169, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/89d361e2-09d9-4de5-7dbf-574c8a877700/width=450/551308.jpeg'}, {'id': 49597, 'type': 'LORA', 'name': 'See-Through Dress', 'tags': [{'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'style'}, {'name': 'woman'}, {'name': 'girls'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/49597', 'versionid': 54162, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b61a3608-424d-4b0d-2996-cee38b61fa00/width=450/585392.jpeg'}, {'id': 52430, 'type': 'LORA', 'name': 'Pelvic Curtain Dresses', 'tags': [{'name': 'fashion'}, {'name': 'dress'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/52430', 'versionid': 56859, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7b5e445f-c2ea-47a8-4416-984ae4599900/width=450/616456.jpeg'}, {'id': 52885, 'type': 'LORA', 'name': 'Oversized Sweater/Hoodie', 'tags': [{'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'girls'}, {'name': 'portraits'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/52885', 'versionid': 57273, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ed00d3c6-c330-44ca-166a-a018ff44ec00/width=450/621443.jpeg'}, {'id': 11413, 'type': 'LORA', 'name': 'Haute Couture', 'tags': [{'name': 'fashion'}, {'name': 'dress'}, {'name': 'model'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/11413', 'versionid': 45951, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f78e07fc-333e-44af-ade7-f2efc1cb2e00/width=450/497397.jpeg'}, {'id': 12265, 'type': 'LORA', 'name': 'Haute Couture | Summer Dresses', 'tags': [{'name': 'dress'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/12265', 'versionid': 57448, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/90b1bef7-7e7b-456b-e250-69022fe4f800/width=450/623831.jpeg'}, {'id': 18215, 'type': 'LORA', 'name': 'Haute Couture | Pencil Dresses', 'tags': [{'name': 'fashion'}, {'name': 'dress'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/18215', 'versionid': 57535, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9786f4bf-ef9b-41ec-e36e-97814343b700/width=450/624762.jpeg'}, {'id': 20714, 'type': 'LORA', 'name': 'HanFusion Design ', 'tags': [{'name': 'chinese'}, {'name': 'fashion'}, {'name': 'modern'}, {'name': 'traditional'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/20714', 'versionid': 24654, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/af43b89a-7756-4681-188e-9ce4b723d500/width=450/268786.jpeg'}, {'id': 8217, 'type': 'LORA', 'name': '【Character / Art Style】Fashion Girl', 'tags': [{'name': 'anime'}, {'name': 'girl'}, {'name': 'concept'}, {'name': 'girls'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/8217', 'versionid': 50709, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8660dcfe-6c18-457c-5008-4efc92e94c00/width=450/545325.jpeg'}, {'id': 8029, 'type': 'LORA', 'name': 'Elegant hanfu ruqun style', 'tags': [{'name': 'anime'}, {'name': 'style'}, {'name': 'ruqun'}, {'name': 'hanfu'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/8029', 'versionid': 9470, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b11f7a1a-c998-4444-f866-4c01fcbeb300/width=450/92713.jpeg'}, {'id': 14203, 'type': 'LORA', 'name': 'Dark Knight Fashion', 'tags': [{'name': 'dark'}, {'name': 'fashion'}, {'name': 'armor'}, {'name': 'clothing'}, {'name': 'fantasy'}, {'name': 'knight'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/14203', 'versionid': 16711, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d538054c-03b7-444c-b8ef-f5ce7e402400/width=450/168536.jpeg'}, {'id': 16935, 'type': 'LORA', 'name': 'Corset', 'tags': [{'name': 'sexy'}, {'name': 'fashion'}, {'name': 'lingerie'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'corset'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/16935', 'versionid': 19991, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/387e23d2-0d15-44ed-b370-3bcddb75c800/width=450/434128.jpeg'}, {'id': 16196, 'type': 'LORA', 'name': 'Chinese Lingerie Fusion Design', 'tags': [{'name': 'chinese'}, {'name': 'fashion'}, {'name': 'lingerie'}, {'name': 'asian'}, {'name': 'clothing'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/16196', 'versionid': 19127, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/21390a4f-cbc5-4298-4f57-a36f214d8100/width=450/434213.jpeg'}, {'id': 34030, 'type': 'LORA', 'name': 'Better Swimwear', 'tags': [{'name': 'fashion'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'swimwear'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/34030', 'versionid': 40306, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0ed0b72f-7b36-442b-93e9-244b80876000/width=450/445761.jpeg'}, {'id': 21670, 'type': 'LORA', 'name': 'AstroBabes', 'tags': [{'name': 'space'}, {'name': 'sexy'}, {'name': 'fashion'}, {'name': 'clothing'}, {'name': 'women'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/21670', 'versionid': 25859, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f86cbdb3-7a72-4eb8-c5c6-162f55ca0e00/width=450/284411.jpeg'}, {'id': 32172, 'type': 'LORA', 'name': 'After Shower', 'tags': [{'name': 'woman'}, {'name': 'clothing'}, {'name': 'shower'}, {'name': 'sexy attire'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/32172', 'versionid': 42026, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/07b4dd8b-a4d7-42d2-2b86-6f8fcc732900/width=450/461625.jpeg'}, {'id': 29778, 'type': 'LORA', 'name': '[Concept]Motorcycle Rider', 'tags': [], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/29778', 'versionid': 35827, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3b6bfbe3-387e-49cb-a9ed-61e5b1971200/width=450/421734.jpeg'}, {'id': 8778, 'type': 'LORA', 'name': 'NISSAN Skyline GT-R R34 car LORA', 'tags': [{'name': 'photorealistic'}, {'name': 'autos'}, {'name': 'cars'}, {'name': 'photography'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/8778', 'versionid': 10364, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f986a1e3-dfa1-47c7-b828-e06a907ab000/width=450/105511.jpeg'}, {'id': 9140, 'type': 'LORA', 'name': 'TOYOTA Aristo JZS160 & LEXUS GS Gen2 car LORA', 'tags': [{'name': 'photorealistic'}, {'name': 'autos'}, {'name': 'cars'}, {'name': 'photography'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/9140', 'versionid': 10814, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/294e8dfa-7ca9-4f95-c528-29f40d6f8500/width=450/105338.jpeg'}, {'id': 24864, 'type': 'LORA', 'name': 'Waifu on Motorcycle ', 'tags': [{'name': 'pilot'}, {'name': 'motorcycle'}, {'name': 'vehicle'}, {'name': 'car'}, {'name': 'girl on motorcycle'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/24864', 'versionid': 30268, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ebfdcc34-e3fe-4ec5-7822-dd690f841700/width=450/343550.jpeg'}, {'id': 27216, 'type': 'LORA', 'name': 'Motorbike EX | Transportation LoRA', 'tags': [{'name': 'objects'}, {'name': 'motorcycle'}, {'name': 'transportation'}, {'name': 'girl on motorcycle'}, {'name': 'motorbike'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/27216', 'versionid': 33817, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3f150b86-75ab-408a-5c6e-79b304980800/width=450/385789.jpeg'}, {'id': 20805, 'type': 'LORA', 'name': 'Nissan Skyline R32', 'tags': [{'name': 'cars'}, {'name': 'nissan skyline r32'}, {'name': 'car'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/20805', 'versionid': 24762, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/75ee2e39-549f-4417-a7a3-93d830627e00/width=450/270315.jpeg'}, {'id': 21220, 'type': 'LORA', 'name': 'Honda Civic Sixth generation (1995)', 'tags': [{'name': 'cars'}, {'name': 'honda civic sixth'}, {'name': 'car'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/21220', 'versionid': 25252, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/53c1cc22-43ca-4bca-3f83-3f1dfe65ae00/width=450/276846.jpeg'}, {'id': 26317, 'type': 'LORA', 'name': 'Nissan Silvia S15', 'tags': [{'name': 'cars'}, {'name': 'car'}, {'name': 'nissan silvia s15'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/26317', 'versionid': 31511, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/53cf225e-4ae7-4c46-213b-e8a961d11600/width=450/358645.jpeg'}, {'id': 38778, 'type': 'LORA', 'name': 'Honda S2000', 'tags': [{'name': 'cars'}, {'name': 'car'}, {'name': 'honda s2000'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/38778', 'versionid': 44708, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/56f4b3d6-4b8d-48f9-af1d-28985fec0b00/width=450/486253.jpeg'}, {'id': 43689, 'type': 'LORA', 'name': 'Honda Prelude Fifth generation (1996)', 'tags': [{'name': 'cars'}, {'name': 'honda'}, {'name': 'car'}, {'name': 'honda prelude fifth generation (1996)'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/43689', 'versionid': 48333, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5c9fdf5b-e8ff-4378-8634-fd02fb6abd00/width=450/519050.jpeg'}, {'id': 20326, 'type': 'LORA', 'name': 'Honda Accord (sixth generation)', 'tags': [{'name': 'cars'}, {'name': 'accord'}, {'name': 'honda'}, {'name': 'car'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/20326', 'versionid': 24168, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/40d7844e-9316-4f8e-7dea-160a5d47d500/width=450/262550.jpeg'}, {'id': 17943, 'type': 'LORA', 'name': 'Jū Jìngyī 鞠婧祎', 'tags': [{'name': 'girl'}, {'name': 'person'}, {'name': 'female'}, {'name': 'woman'}, {'name': 'beautiful'}, {'name': 'celeb'}, {'name': 'celebrity'}, {'name': 'girls'}, {'name': 'portraits'}, {'name': 'realistic'}, {'name': 'real person'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/17943', 'versionid': 41758, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/da468328-6027-4bf5-4fe8-5de7831f5900/width=450/459475.jpeg'}, {'id': 17468, 'type': 'LORA', 'name': 'Jisoo', 'tags': [{'name': 'girl'}, {'name': 'blackpink'}, {'name': 'jisoo'}, {'name': 'celebrity'}, {'name': 'kpop idol'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/17468', 'versionid': 32674, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4221538d-6540-49c6-49ca-5cf2f91ebb00/width=450/374357.jpeg'}, {'id': 16839, 'type': 'LORA', 'name': 'JENNIE For BLACKPINK', 'tags': [{'name': 'girl'}, {'name': 'person'}, {'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'digital art'}, {'name': 'highly detailed'}, {'name': 'asian'}, {'name': 'woman'}, {'name': 'sex'}, {'name': 'actress'}, {'name': 'beautiful'}, {'name': 'celeb'}, {'name': 'celebrity'}, {'name': 'cute'}, {'name': 'faces'}, {'name': 'girls'}, {'name': 'photography'}, {'name': 'portraits'}, {'name': 'realistic'}, {'name': 'real person'}, {'name': 'women'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/16839', 'versionid': 19874, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d07a072b-c483-4f26-2120-10797df3cd00/width=450/209461.jpeg'}, {'id': 11096, 'type': 'LORA', 'name': 'Irene', 'tags': [{'name': 'girl'}, {'name': 'photorealistic'}, {'name': 'asian'}, {'name': 'woman'}, {'name': 'beautiful'}, {'name': 'celebrity'}, {'name': 'korean'}, {'name': 'portraits'}, {'name': 'realistic'}, {'name': 'real person'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/11096', 'versionid': 20090, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b2e17b74-aa55-498a-b506-5016b4b6d400/width=450/212371.jpeg'}, {'id': 18282, 'type': 'LORA', 'name': 'Han So Hee', 'tags': [{'name': 'girl'}, {'name': 'person'}, {'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'asian'}, {'name': 'kpop'}, {'name': 'woman'}, {'name': 'actress'}, {'name': 'artist'}, {'name': 'beautiful'}, {'name': 'celeb'}, {'name': 'celebrity'}, {'name': 'cute'}, {'name': 'girls'}, {'name': 'korean'}, {'name': 'portraits'}, {'name': 'realistic'}, {'name': 'real person'}, {'name': 'women'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/18282', 'versionid': 54306, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/87678ddf-ff6e-4fff-0d87-2c63e6a3b800/width=450/592314.jpeg'}, {'id': 9092, 'type': 'LORA', 'name': 'chengxiaoCC 程潇', 'tags': [{'name': 'celebrity'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/9092', 'versionid': 10747, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2343f46b-f6fe-4d9e-214b-fe2f42569800/width=450/104055.jpeg'}, {'id': 13125, 'type': 'LORA', 'name': 'AESPA Karina', 'tags': [{'name': 'girl'}, {'name': 'kpop'}, {'name': 'woman'}, {'name': 'celebrity'}, {'name': 'korean'}, {'name': 'karina'}, {'name': 'aespa'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/13125', 'versionid': 31905, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2a7ea4c4-866a-4914-2af4-606f9b7f3400/width=450/362998.jpeg'}, {'id': 20833, 'type': 'LORA', 'name': 'Tzuyu (쯔위) TWICE', 'tags': [{'name': 'girl'}, {'name': 'kpop'}, {'name': 'twice'}, {'name': 'celebrity'}, {'name': 'kpop idol'}, {'name': 'kpop girl'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/20833', 'versionid': 49655, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9f2edf0a-adf3-4767-1529-4aacd8764800/width=450/533864.jpeg'}, {'id': 12930, 'type': 'LORA', 'name': 'Suzy', 'tags': [{'name': 'girl'}, {'name': 'photorealistic'}, {'name': 'asian'}, {'name': 'woman'}, {'name': 'celebrity'}, {'name': 'korean'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/12930', 'versionid': 21157, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5247d6ed-40ec-4597-d476-8e380a39ca00/width=450/224164.jpeg'}, {'id': 49039, 'type': 'LORA', 'name': 'Pokimane', 'tags': [{'name': 'photorealistic'}, {'name': 'female'}, {'name': 'twitch'}, {'name': 'woman'}, {'name': 'celebrity'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/49039', 'versionid': 53660, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1990d0c8-7fa6-4d42-94d5-8e9a0374a400/width=450/580870.jpeg'}, {'id': 24995, 'type': 'LORA', 'name': 'Momo (모모) TWICE ', 'tags': [{'name': 'girl'}, {'name': 'kpop'}, {'name': 'twice'}, {'name': 'celebrity'}, {'name': 'kpop idol'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/24995', 'versionid': 44249, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e23b76a8-9d01-40b1-d208-6f3c444f1200/width=450/484457.jpeg'}, {'id': 19492, 'type': 'LoCon', 'name': 'Hoodies - First EDG LoCon!', 'tags': [{'name': 'fashion'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'hoodie'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/19492', 'versionid': 23132, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/dce2d5dd-4935-4c8b-f32d-e2d7edac9400/width=450/250379.jpeg'}, {'id': 24913, 'type': 'LoCon', 'name': 'Iron Corset', 'tags': [{'name': 'fashion'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'armor'}, {'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/24913', 'versionid': 29805, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9c2655cb-191e-4cb2-103e-71a3447b5b00/width=450/337568.jpeg'}, {'id': 17853, 'type': 'LoCon', 'name': 'Haute Couture | Dessous - Lace and Leather Fusion Lingerie', 'tags': [{'name': 'sexy'}, {'name': 'fashion'}, {'name': 'lingerie'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/17853', 'versionid': 32801, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b24ffbb8-f79c-4802-5e2e-230cec5f4800/width=450/373787.jpeg'}, {'id': 27615, 'type': 'LoCon', 'name': 'Delicate Armor-精致铠甲', 'tags': [{'name': 'photo realistic'}, {'name': 'armor'}, {'name': 'best detail'}, {'name': 'delicate'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/27615', 'versionid': 33064, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e6239c8f-48d5-495f-266e-85559ebfea00/width=450/376651.jpeg'}, {'id': 13062, 'type': 'LoCon', 'name': 'Black Mage Fashion', 'tags': [{'name': 'final fantasy xiv'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'video game'}, {'name': 'black mage'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/13062', 'versionid': 34191, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f47c1e07-8609-43ca-7198-d818a5b50b00/width=450/390670.jpeg'}, {'id': 25803, 'type': 'LoCon', 'name': 'Battle Angels', 'tags': [{'name': 'cyberpunk'}, {'name': 'fashion'}, {'name': 'woman'}, {'name': 'armor'}, {'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/25803', 'versionid': 30889, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/55d431e9-2d7b-45c9-0cdd-81354545da00/width=450/351239.jpeg'}, {'id': 26697, 'type': 'LoCon', 'name': 'Haute Couture | Superb Embroidery', 'tags': [{'name': 'fashion'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}, {'name': 'formal wear'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/26697', 'versionid': 31954, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f84e4833-5b6d-4ac8-470f-a59f51a83200/width=450/363483.jpeg'}, {'id': 13835, 'type': 'LoCon', 'name': 'White Mage Fashion', 'tags': [{'name': 'fashion'}, {'name': 'final fantasy xiv'}, {'name': 'clothing'}, {'name': 'video game'}, {'name': 'white mage'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/13835', 'versionid': 34234, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9658d08a-a48d-4907-13b3-639518e1ce00/width=450/391188.jpeg'}, {'id': 30690, 'type': 'LoCon', 'name': 'LnF Aeros Lingerie', 'tags': [{'name': 'fashion'}, {'name': 'lingerie'}, {'name': 'fashion design'}, {'name': 'woman'}, {'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/30690', 'versionid': 37052, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f1f9e038-b637-43c5-b00b-3c7ed819f100/width=450/424379.jpeg'}, {'id': 33656, 'type': 'LoCon', 'name': 'Urban Lingerie', 'tags': [{'name': 'fashion'}, {'name': 'lingerie'}, {'name': 'fashion design'}, {'name': 'clothing'}, {'name': 'sexy attire'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/33656', 'versionid': 39943, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b353f5ea-3eb2-4a3e-9e6a-42ebd6564c00/width=450/442272.jpeg'}, {'id': 34106, 'type': 'LoCon', 'name': 'Hard Swimwear', 'tags': [], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/34106', 'versionid': 40375, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5a4b1c1e-e9ad-4fcb-1b29-7e5ba7009700/width=450/446860.jpeg'}, {'id': 45008, 'type': 'LoCon', 'name': 'Change-A-Character: Knight-ify Your Waifu!', 'tags': [{'name': 'woman'}, {'name': 'knight'}, {'name': 'cac'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/45008', 'versionid': 49632, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f72c53a2-22a1-4281-6514-6571f4050000/width=450/533613.jpeg'}, {'id': 8765, 'type': 'LORA', 'name': "Theovercomer8's Contrast Fix (SD1.5/SD2.1-768)", 'tags': [{'name': 'model'}, {'name': 'style'}, {'name': 'portraits'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/8765', 'versionid': 10350, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1ef6bb89-dbfb-4e44-c396-98f2b8324a00/width=450/101043.jpeg'}, {'id': 9205, 'type': 'LORA', 'name': "TO8's High Key LORA (SD1.5/SD2.1-768)", 'tags': [{'name': 'general purpose'}, {'name': 'style'}, {'name': 'embedding'}, {'name': 'photography'}, {'name': 'portraits'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/9205', 'versionid': 10914, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/28c59deb-68de-4d83-0352-1ab6aba3c300/width=450/105530.jpeg'}, {'id': 13941, 'type': 'LORA', 'name': 'epi_noiseoffset', 'tags': [{'name': 'dark'}, {'name': 'noise offset'}, {'name': 'high contrast'}, {'name': 'tool'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/13941', 'versionid': 16576, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1068e7d8-e7ed-49a9-ae61-ae7e7cbb0f00/width=450/167154.jpeg'}, {'id': 45375, 'type': 'LORA', 'name': 'Sexy Astronaut Suit', 'tags': [{'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'style'}, {'name': 'woman'}, {'name': 'girls'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/45375', 'versionid': 50000, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5404c0ae-362b-43e0-d3ed-1ab559147600/width=450/537584.jpeg'}, {'id': 42903, 'type': 'LORA', 'name': 'Doll Likeness - by EDG', 'tags': [{'name': 'character'}, {'name': 'sexy'}, {'name': 'woman'}, {'name': 'face'}, {'name': 'doll'}, {'name': 'beautiful face'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/42903', 'versionid': 47576, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bbb18d62-6155-4d3a-a4a6-9cd51c90cb00/width=450/512718.jpeg'}, {'id': 45631, 'type': 'LORA', 'name': 'European Doll Likeness', 'tags': [{'name': 'portaits'}, {'name': 'female'}, {'name': 'woman'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/45631', 'versionid': 50258, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d1b440ec-f876-450d-2e32-3f1445ed4400/width=450/540729.jpeg'}, {'id': 9434, 'type': 'LORA', 'name': '[LORA] Chinese Doll Likeness', 'tags': [{'name': 'woman'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/9434', 'versionid': 11195, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/31dad25f-ede9-426f-adf2-7acd27ec1b00/width=450/108260.jpeg'}, {'id': 13068, 'type': 'LORA', 'name': 'Russian Doll Likeness', 'tags': [{'name': 'photorealistic'}, {'name': 'female'}, {'name': 'style'}, {'name': 'woman'}, {'name': 'beautiful'}, {'name': 'realistic'}, {'name': 'russian'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/13068', 'versionid': 15396, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/22cb02c6-d35d-4689-1ac0-ee35ea997c00/width=450/153353.jpeg'}, {'id': 37831, 'type': 'LORA', 'name': 'EnglishDollLikeness', 'tags': [{'name': 'sexy'}, {'name': 'concept'}, {'name': 'woman'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/37831', 'versionid': 43820, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8f0b920b-2c0f-4b0d-5c74-879e35a78300/width=450/479932.jpeg'}, {'id': 17998, 'type': 'LORA', 'name': 'HongKongDollLikeness', 'tags': [{'name': 'hkgirl'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/17998', 'versionid': 22073, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d40b2a08-57e9-4f5e-3741-64541b776100/width=450/237682.jpeg'}, {'id': 48363, 'type': 'LORA', 'name': 'TaiwanDollLikeness (v2.0)', 'tags': [{'name': 'photorealistic'}, {'name': 'style'}, {'name': 'women'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/48363', 'versionid': 52974, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cb7842fc-23b4-4583-fa00-69eb9f318600/width=450/571716.jpeg'}, {'id': 26124, 'type': 'LORA', 'name': 'KoreanDollLikeness (v2.0)', 'tags': [{'name': 'photorealistic'}, {'name': 'style'}, {'name': 'women'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/26124', 'versionid': 31284, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/204fdfc2-d26c-4063-1315-66c4f5020500/width=450/355883.jpeg'}, {'id': 28811, 'type': 'LORA', 'name': 'JapaneseDollLikeness (v1.5)', 'tags': [{'name': 'photorealistic'}, {'name': 'style'}, {'name': 'women'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/28811', 'versionid': 34562, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/42bb3051-7e2c-49fa-88b4-61e624b24f00/width=450/394771.jpeg'}, {'id': 19356, 'type': 'LORA', 'name': 'koreanDollLikeness_v10', 'tags': [], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/19356', 'versionid': 22968, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6a556e90-a8db-42f6-a39d-e571b3eb1500/width=450/248377.jpeg'}, {'id': 19044, 'type': 'LORA', 'name': 'Japanese doll likeness', 'tags': [{'name': 'girl'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'woman'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/19044', 'versionid': 22597, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cfbf45d9-33cc-432f-46d7-befb9eae8500/width=450/243233.jpeg'}, {'id': 17497, 'type': 'LORA', 'name': 'Taiwan doll likeness', 'tags': [{'name': 'girl'}, {'name': 'woman'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/17497', 'versionid': 20684, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3277b916-7ffb-4eb4-93f8-ec0fb2f64300/width=450/218940.jpeg'}, {'id': 22429, 'type': 'LORA', 'name': 'recruit suit', 'tags': [{'name': 'girl'}, {'name': 'suit'}, {'name': 'clothes'}, {'name': 'office'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/22429', 'versionid': 28150, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2b323296-1573-4f37-470b-884ead117900/width=450/316769.jpeg'}, {'id': 6414, 'type': 'Checkpoint', 'name': "RFKTR's darkdreamXshaper MIX v1.0", 'tags': [{'name': 'general purpose'}, {'name': 'mix'}, {'name': 'gothic'}, {'name': 'ckpt'}, {'name': 'model'}, {'name': 'darkdream'}, {'name': 'rfktr'}, {'name': 'semi-realistic'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/6414', 'versionid': 7533, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ca369d90-937c-4b7a-2772-e1ae17605900/width=450/70467.jpeg'}, {'id': 9119, 'type': 'Checkpoint', 'name': "RFKTR's Darkdream", 'tags': [{'name': 'horror'}, {'name': 'futuristic'}, {'name': 'general purpose'}, {'name': 'cybernetic'}, {'name': 'base model'}, {'name': 'gothic'}, {'name': 'model'}, {'name': 'biomechanical'}, {'name': 'style'}, {'name': 'cosmic horror'}, {'name': 'avant garde'}, {'name': 'artstyle'}, {'name': 'sci fi'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/9119', 'versionid': 10780, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3d3b128a-7dd1-4daf-cb07-723b3221c900/width=450/104304.jpeg'}, {'id': 9052, 'type': 'Checkpoint', 'name': 'LOFI', 'tags': [{'name': 'girl'}, {'name': 'photorealistic'}, {'name': 'girls'}, {'name': 'photography'}, {'name': 'photorealism'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/9052', 'versionid': 44882, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/47978501-be91-4712-e452-299f7f834000/width=450/491392.jpeg'}, {'id': 1309, 'type': 'Checkpoint', 'name': 'GTA5 Artwork Diffusion', 'tags': [{'name': 'landscapes'}, {'name': 'character'}, {'name': 'animals'}, {'name': 'city'}, {'name': 'gta'}, {'name': 'itsjayqz'}, {'name': 'style'}, {'name': 'cartoon'}, {'name': 'portraits'}, {'name': 'video game'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/1309', 'versionid': 1393, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/24f9fd4b-07af-4e60-6d6c-54148d453900/width=450/12379.jpeg'}, {'id': 4823, 'type': 'Checkpoint', 'name': 'Deliberate', 'tags': [{'name': 'character'}, {'name': 'girl'}, {'name': '3d'}, {'name': 'subject'}, {'name': 'render'}, {'name': 'photorealistic'}, {'name': 'female'}, {'name': 'retro'}, {'name': 'anatomical'}, {'name': 'art'}, {'name': 'intricate'}, {'name': 'accurate'}, {'name': 'woman'}, {'name': 'illustration'}, {'name': 'cars'}, {'name': 'cartoon'}, {'name': 'cinematic'}, {'name': 'fantasy'}, {'name': 'photography'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/4823', 'versionid': 15236, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0fb83c7f-7760-4870-95ec-4f7653ea4f00/width=450/150226.jpeg'}, {'id': 7279, 'type': 'Checkpoint', 'name': 'Colorful', 'tags': [{'name': 'landscapes'}, {'name': 'person'}, {'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'colorful'}, {'name': 'realism'}, {'name': 'base model'}, {'name': 'vibrant colors'}, {'name': 'art style'}, {'name': 'woman'}, {'name': 'photography'}, {'name': 'portraits'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/7279', 'versionid': 51426, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/900150f0-2069-4c68-978e-9b3346a30500/width=450/553757.jpeg'}, {'id': 30526, 'type': 'Checkpoint', 'name': 'Amixx', 'tags': [{'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/30526', 'versionid': 58369, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/545c1ce0-3ce6-4b19-e68c-2828bae26200/width=450/635254.jpeg'}, {'id': 9114, 'type': 'Checkpoint', 'name': 'Consistent-Factor', 'tags': [{'name': 'photorealistic'}, {'name': 'female'}, {'name': 'porn'}, {'name': 'highly detailed'}, {'name': 'base model'}, {'name': 'nudes'}, {'name': 'woman'}, {'name': 'breasts'}, {'name': 'beautiful'}, {'name': 'faces'}, {'name': 'photography'}, {'name': 'photorealism'}, {'name': 'realistic'}, {'name': 'women'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/9114', 'versionid': 57480, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d85de733-d36b-416c-d25d-d33a9fa3b000/width=450/624311.jpeg'}, {'id': 39044, 'type': 'Checkpoint', 'name': 'Consistent_Colorful_Clarity', 'tags': [{'name': 'landscapes'}, {'name': '3d'}, {'name': 'female'}, {'name': 'inpainting'}, {'name': 'highly detailed'}, {'name': 'scifi'}, {'name': 'style'}, {'name': 'art style'}, {'name': 'paintings'}, {'name': 'woman'}, {'name': 'illustration'}, {'name': 'detailed'}, {'name': 'fantasy'}, {'name': 'portraits'}, {'name': 'realistic'}, {'name': 'face'}, {'name': 'nsfw'}, {'name': 'c3'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/39044', 'versionid': 57473, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6ffbcdb5-3012-4386-bc4f-db169b9c5b00/width=450/624190.jpeg'}, {'id': 28512, 'type': 'LORA', 'name': '裁决者克莱尔(拉缇雅版)洛奇英雄传 Inquisitor Claire (Latiya) Vindictus ', 'tags': [{'name': 'armor'}, {'name': 'knight'}, {'name': '1girl'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/28512', 'versionid': 34198, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d77f4f44-c057-4094-769f-36c568921800/width=450/390761.jpeg'}, {'id': 34855, 'type': 'LORA', 'name': 'SXZ Death Knights [ Warcraft ]', 'tags': [{'name': 'character'}, {'name': 'consistent character'}, {'name': 'wow'}, {'name': 'warcraft'}, {'name': 'video game character'}, {'name': 'fantasy'}, {'name': 'video game'}, {'name': 'world of warcraft'}, {'name': 'knight'}, {'name': 'videogames'}, {'name': 'videogame'}, {'name': 'death knight'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/34855', 'versionid': 41111, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e6eddd1a-0bc5-4ffb-3d9a-4b12c8139e00/width=450/459530.jpeg'}, {'id': 19618, 'type': 'LORA', 'name': 'Angelic Wairrors (Valkyrie, Paladin, Priestess)', 'tags': [{'name': 'anime'}, {'name': 'style'}, {'name': 'armor'}, {'name': 'fantasy'}, {'name': 'paladin'}, {'name': 'knight'}, {'name': 'priestess'}, {'name': 'angel'}, {'name': 'valkyrie'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/19618', 'versionid': 23289, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e90590a4-86a2-4274-c817-737825fb1400/width=450/259792.jpeg'}, {'id': 27892, 'type': 'LoCon', 'name': 'Valkyries', 'tags': [{'name': 'character'}, {'name': 'woman'}, {'name': 'armor'}, {'name': 'valkyrie'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/27892', 'versionid': 33429, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fa08d1eb-5f1d-4115-0cd2-313c541b8000/width=450/381038.jpeg'}, {'id': 25225, 'type': 'LoCon', 'name': 'Harajuku Knights', 'tags': [{'name': 'woman'}, {'name': 'armor'}, {'name': 'clothing'}, {'name': 'fantasy'}, {'name': 'harajuku'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/25225', 'versionid': 30189, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5e9d3989-4762-40e2-4fde-e8af9a7f0000/width=450/342556.jpeg'}, {'id': 25732, 'type': 'LoCon', 'name': 'Artistic Eastern Fantasy Armor and Dress', 'tags': [{'name': 'dress'}, {'name': 'warrior'}, {'name': 'woman'}, {'name': 'armor'}, {'name': 'clothing'}, {'name': 'fantasy'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/25732', 'versionid': 30803, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d127afa3-4071-41b9-ff4c-d1febc9c1900/width=450/349877.jpeg'}, {'id': 16766, 'type': 'LORA', 'name': 'Ao Dai - Vietnamese Long Dress', 'tags': [{'name': 'girl'}, {'name': 'dress'}, {'name': 'clothing'}, {'name': 'viet nam'}, {'name': 'áo dài việt nam'}, {'name': 'long dress'}, {'name': 'ao dai'}, {'name': 'beautiful dress'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/16766', 'versionid': 19793, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e8be83cb-df5b-4fe9-2d0f-0e8b12a0da00/width=450/208410.jpeg'}, {'id': 15667, 'type': 'LORA', 'name': 'Ghost Runner', 'tags': [{'name': 'character'}, {'name': 'art style'}, {'name': 'fantasy'}, {'name': 'game character'}, {'name': 'video game'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/15667', 'versionid': 18482, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a5597252-014e-4795-ee09-7ba0fa7df500/width=450/190932.jpeg'}, {'id': 17956, 'type': 'LORA', 'name': 'Jinsoyun Blade and soul', 'tags': [{'name': 'anime'}, {'name': 'character'}, {'name': 'girl'}, {'name': 'female'}, {'name': 'digital art'}, {'name': 'art style'}, {'name': 'woman'}, {'name': 'fantasy'}, {'name': 'game character'}, {'name': 'girls'}, {'name': 'video game'}, {'name': 'women'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/17956', 'versionid': 45879, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/219387a9-f0b9-4cdd-0196-3aedb5567600/width=450/497020.jpeg'}, {'id': 25107, 'type': 'LoCon', 'name': 'HanFusion Armor', 'tags': [{'name': 'chinese'}, {'name': 'woman'}, {'name': 'armor'}, {'name': 'clothing'}, {'name': 'fantasy'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/25107', 'versionid': 30037, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a6e5efeb-bb7f-4896-f641-743729b54700/width=450/340732.jpeg'}, {'id': 25494, 'type': 'Checkpoint', 'name': 'BRA(Beautiful Realistic Asians) V4', 'tags': [{'name': 'asian'}, {'name': 'photo'}, {'name': 'japanese'}, {'name': 'korean'}, {'name': 'realistic'}, {'name': 'women'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/25494', 'versionid': 51395, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1a995fcd-1394-4556-bcfb-a65bbb968e00/width=450/553410.jpeg'}, {'id': 42292, 'type': 'LORA', 'name': 'NightMarketIICyberarmor_LoRA', 'tags': [{'name': 'anime'}, {'name': 'character'}, {'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'woman'}, {'name': 'semirealistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/42292', 'versionid': 46974, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9212833d-df57-4edc-3232-a7cedf6c9900/width=450/508041.jpeg'}, {'id': 6793, 'type': 'LORA', 'name': "RFKTR's Technotrex v1.0", 'tags': [{'name': 'subject'}, {'name': 'cyborg'}, {'name': 'mecha'}, {'name': 'cybernetic'}, {'name': 'technology'}, {'name': 'techno'}, {'name': 'robots'}, {'name': 'hard surface'}, {'name': 'metal gear revengance'}, {'name': 'sci fi'}, {'name': 'video game'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/6793', 'versionid': 7989, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9d1af4a9-1993-4db1-d3a5-58b95f2c7f00/width=450/75311.jpeg'}, {'id': 8237, 'type': 'LORA', 'name': 'Flonix MJ Style', 'tags': [{'name': 'midjourney'}, {'name': 'magical'}, {'name': 'style'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/8237', 'versionid': 9721, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9a21d435-cd51-42f7-2886-ee8379dae200/width=450/94130.jpeg'}, {'id': 48139, 'type': 'LORA', 'name': 'LowRA', 'tags': [{'name': 'dark'}, {'name': 'masterpiece'}, {'name': 'style'}, {'name': 'epic'}, {'name': 'smooth'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/48139', 'versionid': 52753, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2a5c8ec7-515d-4e93-9c56-6f07ad58cb00/width=450/569206.jpeg'}, {'id': 21813, 'type': 'Checkpoint', 'name': 'Edge Of Realism', 'tags': [{'name': 'photorealistic'}, {'name': 'highly detailed'}, {'name': 'realistic'}, {'name': 'semi-realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/21813', 'versionid': 51913, 'imageurl': 'https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5462fe1b-6928-4c9e-3016-8ef467b65200/width=450/559443.jpeg'}, {'id': 7094, 'type': 'LORA', 'name': 'Arcane Style LoRA', 'tags': [{'name': 'anime'}, {'name': 'arcane'}, {'name': 'league of legends'}, {'name': 'girl'}, {'name': 'sexy'}, {'name': 'tv show'}, {'name': 'style'}, {'name': 'art style'}, {'name': 'artstyle'}, {'name': 'girls'}, {'name': 'video game'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/7094', 'versionid': 8339, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/93e74bc8-97ce-4826-e142-594cdd134d00/width=450/79106.jpeg'}, {'id': 12874, 'type': 'LORA', 'name': 'VirtualGirl-Rin', 'tags': [{'name': 'girl'}, {'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'cute'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/12874', 'versionid': 19101, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/72b83889-919b-46cd-0f03-0c0561e97100/width=450/199924.jpeg'}, {'id': 11367, 'type': 'LORA', 'name': 'Tifa_meenow', 'tags': [{'name': 'final fantasy'}, {'name': 'tifa lockhart'}, {'name': 'tifa'}, {'name': 'final fantasy vii remake'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/11367', 'versionid': 16793, 'imageurl': None}, {'id': 18759, 'type': 'LORA', 'name': 'Tifa Lockhart Lora', 'tags': [{'name': 'final fantasy'}, {'name': 'tifa lockhart'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/18759', 'versionid': 22270, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fce2dcf4-d57f-4dc8-f53c-c71802f1e200/width=450/239454.jpeg'}, {'id': 36212, 'type': 'LORA', 'name': 'Ombre Hair (Two-tone hair)', 'tags': [{'name': 'concept'}, {'name': 'hair'}, {'name': 'color'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/36212', 'versionid': 42362, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f82f50ce-4962-4551-63cd-e781c047d600/width=450/464904.jpeg'}, {'id': 5529, 'type': 'LORA', 'name': 'Eye - LoRa', 'tags': [{'name': 'anime'}, {'name': 'eyes'}, {'name': 'reflection'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/5529', 'versionid': 6433, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/85f9b688-0356-499d-dd41-e8a4e6250a00/width=450/59640.jpeg'}, {'id': 6669, 'type': 'LORA', 'name': 'St. Louis (Luxurious Wheels) (Azur Lane)', 'tags': [{'name': 'anime'}, {'name': 'character'}, {'name': 'azur lane'}, {'name': 'st. louis'}, {'name': 'game character'}, {'name': 'hentai'}, {'name': 'video game'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/6669', 'versionid': 7840, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2321f889-e819-4e93-5763-c7dc10df2200/width=450/73698.jpeg'}, {'id': 8685, 'type': 'LORA', 'name': 'EyesGen - Lora - WIP!', 'tags': [{'name': 'anime'}, {'name': 'character'}, {'name': 'beautiful anime eyes'}, {'name': 'eyes'}, {'name': 'style'}, {'name': 'beautiful detailed eyes'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/8685', 'versionid': 10243, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ea1273d3-9db5-4413-8abf-d97ccf9dd700/width=450/100143.jpeg'}, {'id': 38567, 'type': 'LORA', 'name': 'betterCuteAsian', 'tags': [{'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'woman'}, {'name': 'girls'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/38567', 'versionid': 44501, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c66568ab-9b17-4698-748c-ace1efaacf00/width=450/484837.jpeg'}, {'id': 24833, 'type': 'LORA', 'name': 'Minimalist Anime Style', 'tags': [{'name': 'anime'}, {'name': 'minimalist'}, {'name': 'style'}, {'name': 'artstyle'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/24833', 'versionid': 29709, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3dc34bb7-c730-4f14-556d-b9dd36493400/width=450/336272.jpeg'}, {'id': 11619, 'type': 'LORA', 'name': 'Korean Doll Likenesss', 'tags': [], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/11619', 'versionid': 13739, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c2c733d7-58ad-4ea7-da72-16a533f80a00/width=450/133029.jpeg'}, {'id': 17752, 'type': 'LORA', 'name': 'korean', 'tags': [{'name': 'girl'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/17752', 'versionid': 20987, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/37c58fb3-864b-4d9e-bc7a-835dfbd26900/width=450/268510.jpeg'}, {'id': 15858, 'type': 'LORA', 'name': 'T2W2', 'tags': [], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/15858', 'versionid': 18718, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/069c01df-5fb7-40f1-e77a-516b94bb9a00/width=450/194316.jpeg'}, {'id': 23337, 'type': 'LORA', 'name': 'Urban Samurai | v0.14 | Clothing LoRA', 'tags': [{'name': 'clothing'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/23337', 'versionid': 27871, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e29e5b22-3eb9-4807-c664-63ad605a5100/width=450/313048.jpeg'}, {'id': 12113, 'type': 'LORA', 'name': 'HONDA NSX NA1 car LORA', 'tags': [{'name': 'photorealistic'}, {'name': 'autos'}, {'name': 'cars'}, {'name': 'photography'}, {'name': 'realistic'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/12113', 'versionid': 14298, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/aeeb0616-2dd9-4413-411b-eca35a1d1f00/width=450/139254.jpeg'}, {'id': 24385, 'type': 'Checkpoint', 'name': 'MadVision ', 'tags': [{'name': 'nude'}, {'name': 'woman'}, {'name': 'realistic'}, {'name': 'nsfw'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/24385', 'versionid': 44105, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/05902542-794c-4833-5782-9899d67d9600/width=450/481575.jpeg'}, {'id': 10730, 'type': 'Hypernetwork', 'name': 'Wedgeewoo - Engram', 'tags': [{'name': 'music'}, {'name': 'spectrogram'}, {'name': 'riffusion'}, {'name': 'edm'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/10730', 'versionid': 18411, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b9ae664a-d410-436a-3af7-7444492eba00/width=450/189858.jpeg'}, {'id': 30452, 'type': 'TextualInversion', 'name': 'bad hands', 'tags': [], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/30452', 'versionid': 36745, 'imageurl': None}, {'id': 4845, 'type': 'Hypernetwork', 'name': 'SXZ Bloom', 'tags': [{'name': 'bloom'}, {'name': 'effect'}, {'name': 'blur'}, {'name': 'style'}, {'name': 'art style'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/4845', 'versionid': 5569, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a3eae4d6-7c23-4e12-4b02-5ef9bd1e1b00/width=450/44672.jpeg'}, {'id': 8109, 'type': 'TextualInversion', 'name': 'Ulzzang-6500 (Korean doll aesthetic)', 'tags': [{'name': 'girl'}, {'name': 'person'}, {'name': 'photorealistic'}, {'name': 'sexy'}, {'name': 'female'}, {'name': 'textual inversion'}, {'name': 'asian'}, {'name': 'ulzzang'}, {'name': 'woman'}, {'name': 'embedding'}, {'name': 'faces'}, {'name': 'girls'}, {'name': 'korean'}, {'name': 'portraits'}, {'name': 'realistic'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/8109', 'versionid': 10107, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0bf5ee92-9c61-42a4-7ec4-f166738b6800/width=450/98566.jpeg'}, {'id': 4514, 'type': 'TextualInversion', 'name': 'Pure Eros Face', 'tags': [{'name': 'girl'}, {'name': 'person'}, {'name': 'photorealistic'}, {'name': 'textual inversion'}, {'name': 'beauties'}, {'name': 'asian'}, {'name': 'kpop'}, {'name': 'woman'}, {'name': 'faces'}, {'name': 'girls'}, {'name': 'photography'}, {'name': 'portraits'}, {'name': 'realistic'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/4514', 'versionid': 5119, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9fbf8bf0-aad7-4360-eeb0-3e2e09628900/width=450/110973.jpeg'}, {'id': 4629, 'type': 'TextualInversion', 'name': 'Deep Negative V1.x', 'tags': [{'name': 'negative'}, {'name': 'negative embedding'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/4629', 'versionid': 5637, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f7fe0b31-86a6-48ff-4fc2-906227af9300/width=450/45555.jpeg'}, {'id': 7808, 'type': 'TextualInversion', 'name': 'EasyNegative', 'tags': [{'name': 'anime'}, {'name': 'negative'}, {'name': 'negative embedding'}, {'name': 'textual inversion'}, {'name': 'embedding'}, {'name': 'tool'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/7808', 'versionid': 9208, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a2505a48-8eed-4b12-b6a0-6a8ec7e0c600/width=450/88246.jpeg'}, {'id': 11772, 'type': 'TextualInversion', 'name': 'veryBadImageNegative', 'tags': [{'name': 'negative'}, {'name': 'negative embedding'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/11772', 'versionid': 25820, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/14337a5b-7dd1-4cab-4d8e-858f38201200/width=450/283901.jpeg'}, {'id': 17083, 'type': 'TextualInversion', 'name': 'bad-picture negative embedding for ChilloutMix', 'tags': [{'name': 'negative embedding'}, {'name': 'textual inversion'}, {'name': 'bad prompt'}, {'name': 'embedding'}, {'name': 'tool'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/17083', 'versionid': 20170, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b5cd1669-7a84-44e8-7cb3-6a7565636500/width=450/213186.jpeg'}, {'id': 16993, 'type': 'TextualInversion', 'name': 'badhandv4 - AnimeIllustDiffusion', 'tags': [{'name': 'anime'}, {'name': 'textual inversion'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/16993', 'versionid': 20068, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/45318cc7-231d-4d8a-044d-a081d0a40700/width=450/212048.jpeg'}, {'id': 22544, 'type': 'TextualInversion', 'name': 'GNTZ', 'tags': [{'name': 'anime'}, {'name': 'manga'}, {'name': 'science fiction'}, {'name': 'outfit'}, {'name': 'clothing'}, {'name': 'sci fi'}, {'name': 'gantz'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/22544', 'versionid': 26917, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b003a61e-4aeb-4f93-3aca-891ea9a8d900/width=450/296525.jpeg'}, {'id': 6376, 'type': 'TextualInversion', 'name': "RFKTR's Fashionista v1.0", 'tags': [{'name': 'subject'}, {'name': 'fashion'}, {'name': 'textual inversion'}, {'name': 'lingerie'}, {'name': 'latex'}, {'name': 'bodysuit'}, {'name': 'design'}, {'name': 'fashion design'}, {'name': 'outfit'}, {'name': 'artistic'}, {'name': 'clothing'}, {'name': 'embedding'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/6376', 'versionid': 7483, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/27df23d0-1f8e-4a88-cc86-fe2678f61000/width=450/70071.jpeg'}, {'id': 5000, 'type': 'TextualInversion', 'name': 'Ghostly Diffusion', 'tags': [{'name': 'horror'}, {'name': 'spooky'}, {'name': 'textual inversion'}, {'name': 'style'}, {'name': 'embedding'}, {'name': 'portraits'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/5000', 'versionid': 5766, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/25ddc455-e4cc-46f1-7286-4019facf8300/width=450/47682.jpeg'}, {'id': 5224, 'type': 'TextualInversion', 'name': 'Bad artist Negative embedding ', 'tags': [{'name': 'bad artist'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/5224', 'versionid': 6056, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cb4bd554-c7ed-4837-3803-8f24fa8fc900/width=450/52078.jpeg'}, {'id': 7172, 'type': 'TextualInversion', 'name': 'Flame Surge Style', 'tags': [{'name': 'anime'}, {'name': 'girl'}, {'name': 'female'}, {'name': 'general purpose'}, {'name': 'textual inversion'}, {'name': 'style'}, {'name': 'art style'}, {'name': 'illustration'}, {'name': 'digital illustration'}, {'name': 'embedding'}, {'name': 'girls'}, {'name': 'portraits'}, {'name': 'vivid colors'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/7172', 'versionid': 8432, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2e798978-d209-476a-581d-1a6192248e00/width=450/80021.jpeg'}, {'id': 6258, 'type': 'TextualInversion', 'name': "Rina's Nuke Embed - v1 and v2", 'tags': [{'name': 'effect'}, {'name': 'vfx'}, {'name': 'style'}, {'name': 'embedding'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/6258', 'versionid': 7340, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7edbcde8-9441-4c4e-208a-e30fef1a0e00/width=450/68171.jpeg'}, {'id': 55700, 'type': 'TextualInversion', 'name': 'bad_prompt Negative Embedding', 'tags': [{'name': 'concept'}, {'name': 'negative embedding'}, {'name': 'embedding'}, {'name': 'orginal content'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/55700', 'versionid': 60095, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0f12ec45-0d26-4e15-0bb1-6e23230d8700/width=450/656105.jpeg'}, {'id': 22922, 'type': 'Checkpoint', 'name': 'Lyriel', 'tags': [{'name': 'girl'}, {'name': 'style'}, {'name': 'art style'}, {'name': 'woman'}, {'name': 'beautiful'}, {'name': 'fantasy'}, {'name': '1boy'}, {'name': '1girl'}, {'name': '1man'}, {'name': '1guy'}], 'nsfw': False, 'url': 'https://civitai.com/api/v1/models/22922', 'versionid': 50127, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f8718950-2a4c-4a5b-1df6-25fe07efde00/width=450/539213.jpeg'}, {'id': 34393, 'type': 'LORA', 'name': 'Micro Mini Skirt - LoRA', 'tags': [{'name': 'clothing'}, {'name': 'realistic'}, {'name': 'skirt'}, {'name': 'madvision'}], 'nsfw': True, 'url': 'https://civitai.com/api/v1/models/34393', 'versionid': 40673, 'imageurl': 'https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6d4dad68-3686-4587-9a34-65ba59623e00/width=450/449349.jpeg'}]) ```

Selecting any classification empty list:

Civitai Shortcut: clfs_list:[]
Civitai Shortcut: last:[]
Civitai Shortcut: clfs_list:[]
Civitai Shortcut: last:[]
sunnyark commented 1 year ago

I have found the cause. It seems to have been my mistake. I accidentally set the search to convert everything to lowercase. Sorry about that.

BanditSan commented 1 year ago

I was thinking maybe i need to update SD-webui to latest because of something like this: image

Yet im not in the rush to always run latest when this is such fast evolving software and already had issues with some versions crashing GPU.

sunnyark commented 1 year ago

I have fixed the bug and uploaded the updated version. Could you please check if everything is working properly now?

sunnyark commented 1 year ago

I will develop with a reasonable level of compatibility in mind. I didn't think about it as I was building with the goal of always being up to date with the latest version.

BanditSan commented 1 year ago

I have fixed the bug and uploaded the updated version. Could you please check if everything is working properly now?

Seems to be working fine now.

I will develop with a reasonable level of compatibility in mind. I didn't think about it as I was building with the goal of always being up to date with the latest version.

When you talk about security sure you always want to be up to date But for compatibily not always. Good example on sd-webui patch notes: image I suspect this touch 2.0 not working affects latest RDNA AMD gpu's like 7000 series. Yet im running tourch 2.0 on my RX590 without issues since end of march when it was updated in archlinux repository. RDNA architecture is a lot diferent from CDNA server monsters like AMD Instinct MI250. My old RX590 architecture is more similar to server gpu's so i guess thats why it's working.

BanditSan commented 1 year ago

Fixed 097decb2d4be9a9bf2c28d2f08f795e10c389793

sunnyark commented 1 year ago

Thank you for your advice. It was a bug that I didn't expect, so I wouldn't have known about it if you hadn't mentioned it. Thanks to you, I was able to fix the bug. Thank you.

BanditSan commented 1 year ago

Software without bugs does not exists. Well maybe print("Hello world") has no bugs :) Eventually someone whould have noticed or maybe already had, just people to lazy report bugs. I'm myself some times to lazy to report them.