Martin Schuster

Results 21 comments of Martin Schuster

I added a `print(res)` to the code to see what falls out, and "fixing" this regexp does indeed not change the behavior -- at least not with the test cases...

> [...] > What I would love to see is an extension that creates a metadata file next to each model. Same, that's why I opened #8029. > [...] >...

Just in case someone found this report because they were searching for the "does not match device" error: It helps to simply *not* specify `-d 0483:df11` when flashing, i.e. just...

I also didn't like the default size of the cards, but simply fixed it by having a `user.css` with ```css .extra-network-cards .card{ width: 12em !important; height: 12em !important; } ```...

Just hit the very same issue. I think there are actually 3 issues here: 1. Confusion on how to disable a specific rule 2. Some parts of a text can...

You can change the card size by putting sth like this in the file `user.css`: ```css .extra-network-cards .card{ width: 12em !important; height: 12em !important; } .extra-network-cards .card .actions .name{ font-size:...

Thanks for your reply, Skeula! > I've actually started something similar to this using a fork of the model-keywords extension Would you mind sharing this? > (though using JSON). Personally...

Added some lines to my fork of stable-diffusion-webui, see [branch `read_metadata_example`](https://github.com/AUTOMATIC1111/stable-diffusion-webui/compare/master...schumar:stable-diffusion-webui:read_metadata_example), to better illustrate my approach. This will read a `.webui.yaml` (@Skeula, tested this with your example JSON, works fine,...

Just updated my branch to also do this for LoRAs.

Pushed the updates for the other 2 types (embeddings and hypernetworks). I would consider this patch "complete" for now, i.e. it makes the webui read meta-data, so that other parts...