Instructions to use knoxcs/stable-diffusion-webui-knox with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use knoxcs/stable-diffusion-webui-knox with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("knoxcs/stable-diffusion-webui-knox", dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 419 Bytes
ee56c4e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <div class='card' style={style} onclick={card_clicked} data-name="{name}" {sort_keys}>
{background_image}
<div class="button-row">
{metadata_button}
{edit_button}
</div>
<div class='actions'>
<div class='additional'>
<span style="display:none" class='search_term{search_only}'>{search_term}</span>
</div>
<span class='name'>{name}</span>
<span class='description'>{description}</span>
</div>
</div>
|