|
--- |
|
license: openrail |
|
pipeline_tag: text-to-image |
|
language: |
|
- en |
|
--- |
|
|
|
|
|
# Smaple Images From Model |
|
|
|
NB: Remeber to Add (<'outline-icon'>) at the end of your prompts [please remove the quotes and retain only the angled brackets😅]. Adding this to the end of each prompt allows you to access the facilities of the pretrained model |
|
|
|
[<img src="https://utfs.io/f/e5ac9741-0a34-4300-b045-61c51c903a5e-kjdnie.jpeg" width="112px" height="112px">](https://utfs.io/f/e5ac9741-0a34-4300-b045-61c51c903a5e-kjdnie.jpeg) |
|
a icon of cat<outline-icon> |
|
|
|
[<img src="https://utfs.io/f/2945d9be-7362-43a5-a821-51eec3cbb6be-m74940.jpeg" width="112px" height="112px">](https://utfs.io/f/2945d9be-7362-43a5-a821-51eec3cbb6be-m74940.jpeg) |
|
a icon of bulb "<outline-icon>" |
|
|
|
[<img src="https://utfs.io/f/433b3af0-7335-424d-bd7b-e0e4e3088726-u0byo8.jpeg" width="112px" height="112px">](https://utfs.io/f/433b3af0-7335-424d-bd7b-e0e4e3088726-u0byo8.jpeg) |
|
a icon of bird<outline-icon> |
|
|
|
[<img src="https://utfs.io/f/071d4f72-e20b-4f15-a827-25a7d22695af-vqzwtk.jpeg" width="112px" height="112px">](https://utfs.io/f/071d4f72-e20b-4f15-a827-25a7d22695af-vqzwtk.jpeg) |
|
a icon of star<outline-icon> |
|
|
|
[<img src="https://utfs.io/f/9637f58b-a278-4297-8612-1954079b1ac4-wxijvn.jpeg" width="112px" height="112px">](https://utfs.io/f/9637f58b-a278-4297-8612-1954079b1ac4-wxijvn.jpeg) |
|
a icon of bulb<outline-icon> |
|
[<img src="https://utfs.io/f/22849389-4349-4441-a8dd-09843cb07cc1-j65mkt.jpeg" width="112px" height="112px">](https://utfs.io/f/22849389-4349-4441-a8dd-09843cb07cc1-j65mkt.jpeg) |
|
a icon of lion<outline-icon> |
|
|
|
|
|
|
|
|
|
|
|
|
|
# Web Icons |
|
|
|
This repository contains the Web Icons model, a machine learning model for generating website icon images. The model is built using the Diffusers library and is licensed under a modified CreativeML OpenRAIL-M license. This model was fine tuned from https://huggingface.co/proximasanfinetuning/fantassified_icons_v2 with Textual Inversion |
|
|
|
## License |
|
|
|
The Web Icons model is licensed under a modified CreativeML OpenRAIL-M license. |
|
|
|
|
|
## Usage |
|
|
|
Here's an example of how to use the Web Icons model with the Diffusers library: |
|
|
|
```python |
|
from diffusers import StableDiffusionPipeline |
|
|
|
model_id = "mathiaslawson/web-icons" |
|
pipe = StableDiffusionPipeline.from_pretrained(model_id) |
|
|
|
prompt = "a icon of lion<outline-icon> " |
|
image = pipe(prompt)["sample"][0] |
|
image.save("dragon_icon.png") |
|
|
|
The main changes are: |
|
|
|
1. Added a note that the Web Icons model is pretrained on the Fantassified Icons model. |
|
2. Updated the Acknowledgments section to credit both the Web Icons model author (Mathias Lawson) and the original Fantassified Icons model author (Proximasan). https://huggingface.co/proximasanfinetuning/fantassified_icons_v2 |
|
|
|
Credit to goes to for base model for pretraining : https://huggingface.co/proximasanfinetuning/fantassified_icons_v2 |
|
|
|
Although its not perfect yet, the pretrained model has been able to adequately produce web-like looking icons from 3D looking icons model from https://huggingface.co/proximasanfinetuning/fantassified_icons_v2, already showing steady capacity to produce desired results. |
|
Contributions to the model are welcomed🙂. This is not the end, i would be improving the model till it becomes perfect for web icons. |