mathiaslawson commited on
Commit
562b933
1 Parent(s): ae6e950

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -2
README.md CHANGED
@@ -1,4 +1,64 @@
1
  ---
2
- license: mit
3
  pipeline_tag: text-to-image
4
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: openrail
3
  pipeline_tag: text-to-image
4
+ language:
5
+ - en
6
+ ---
7
+
8
+
9
+ # Smaple Images From Model
10
+
11
+ [<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)
12
+ a icon of cat<outline-icon>
13
+
14
+ [<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)
15
+ a icon of bulb<outline-icon>
16
+
17
+ [<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)
18
+ a icon of bird<outline-icon>
19
+
20
+ [<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)
21
+ a icon of star<outline-icon>
22
+
23
+ [<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)
24
+ a icon of bulb<outline-icon>
25
+ [<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)
26
+ a icon of lion<outline-icon>
27
+
28
+
29
+
30
+
31
+
32
+
33
+ # Web Icons
34
+
35
+ 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
36
+
37
+ ## License
38
+
39
+ The Web Icons model is licensed under a modified CreativeML OpenRAIL-M license.
40
+
41
+
42
+ ## Usage
43
+
44
+ Here's an example of how to use the Web Icons model with the Diffusers library:
45
+
46
+ ```python
47
+ from diffusers import StableDiffusionPipeline
48
+
49
+ model_id = "mathiaslawson/web-icons"
50
+ pipe = StableDiffusionPipeline.from_pretrained(model_id)
51
+
52
+ prompt = "a icon of lion<outline-icon> "
53
+ image = pipe(prompt)["sample"][0]
54
+ image.save("dragon_icon.png")
55
+
56
+ The main changes are:
57
+
58
+ 1. Added a note that the Web Icons model is pretrained on the Fantassified Icons model.
59
+ 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
60
+
61
+ Credit to goes to for base model for pretraining : https://huggingface.co/proximasanfinetuning/fantassified_icons_v2
62
+
63
+ 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.
64
+ Contributions to the model are welcomed🙂. This is not the end, i would be improving the model till it becomes perfect for web icons.