pettankoutei commited on
Commit
1cab111
1 Parent(s): bf3e94d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +170 -45
README.md CHANGED
@@ -4,58 +4,183 @@ tags:
4
  - stable-diffusion
5
  - lora
6
  - diffusers
7
- - template:sd-lora
8
- widget:
9
- - text: score_9, score_8_up, score_7_up, rating_safe BREAK
10
- parameters:
11
- negative_prompt: >-
12
- score_4, score_5, score_6, simple background, white background,
13
- source_furry, source_pony, source_cartoon
14
- output:
15
- url: images/Model_Sample_00001 (2).png
16
- - text: score_9, score_8_up, score_7_up, rating_safe BREAK
17
- parameters:
18
- negative_prompt: >-
19
- score_4, score_5, score_6, simple background, white background,
20
- source_furry, source_pony, source_cartoon
21
- output:
22
- url: images/Model_Sample_00003.png
23
- - text: score_9, score_8_up, score_7_up, rating_safe BREAK
24
- parameters:
25
- negative_prompt: >-
26
- score_4, score_5, score_6, simple background, white background,
27
- source_furry, source_pony, source_cartoon
28
- output:
29
- url: images/Model_Sample_00004.png
30
- - text: score_9, score_8_up, score_7_up, rating_safe BREAK
31
- parameters:
32
- negative_prompt: >-
33
- score_4, score_5, score_6, simple background, white background,
34
- source_furry, source_pony, source_cartoon
35
- output:
36
- url: images/Model_Sample_00006.png
37
- - text: score_9, score_8_up, score_7_up, source_anime, rating_safe BREAK
38
- parameters:
39
- negative_prompt: >-
40
- score_4, score_5, score_6, simple background, white background,
41
- source_furry, source_pony, source_cartoon
42
- output:
43
- url: images/Model_Sample_00010.png
44
- base_model: stablediffusionapi/pony-diffusion-v6-xl
45
  instance_prompt: null
46
  license: cc-by-nc-sa-4.0
47
  ---
48
- # Takamichi Style
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
- <Gallery />
 
 
 
 
 
 
 
 
51
 
52
- ## Model description
53
 
54
- Lora inspired by the style of Takamichi. Recommended weight 0.8.
55
 
 
 
56
 
57
- ## Download model
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
 
59
- Weights for this model are available in Safetensors format.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
- [Download](/pettankoutei/Loras/tree/main) them in the Files & versions tab.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - stable-diffusion
5
  - lora
6
  - diffusers
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  instance_prompt: null
8
  license: cc-by-nc-sa-4.0
9
  ---
10
+ <style>
11
+ .title-container {
12
+ display: flex;
13
+ justify-content: center;
14
+ align-items: center;
15
+ height: 100vh; /* Adjust this value to position the title vertically */
16
+ }
17
+
18
+ .title {
19
+ font-size: 2.5em;
20
+ text-align: center;
21
+ color: #333;
22
+ font-family: "lucida sans unicode", "lucida grande", sans-serif;
23
+ font-style: italic;
24
+ font-weight: bold;
25
+ font-variant: small-caps;
26
+ letter-spacing: 0.05em;
27
+ padding: 0.5em 0;
28
+ background: transparent;
29
+ }
30
+
31
+ .title span {
32
+ background: -webkit-linear-gradient(45deg, #99E2FF, #FF5C95);
33
+ -webkit-background-clip: text;
34
+ -webkit-text-fill-color: transparent;
35
+ }
36
+
37
+ .custom-table {
38
+ table-layout: fixed;
39
+ width: 100%;
40
+ border-collapse: collapse;
41
+ margin-top: 0em;
42
+ }
43
+
44
+ .custom-table td {
45
+ width: 50%;
46
+ vertical-align: top;
47
+ padding: 10px;
48
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
49
+ }
50
+ .custom-image-container {
51
+ position: relative;
52
+ width: 100%;
53
+ margin-bottom: 0em;
54
+ overflow: hidden;
55
+ border-radius: 10px;
56
+ transition: transform .7s;
57
+ /* Smooth transition for the container */
58
+ }
59
+ .custom-image-container:hover {
60
+ transform: scale(1.05);
61
+ /* Scale the container on hover */
62
+ }
63
+ .custom-image {
64
+ width: 100%;
65
+ height: auto;
66
+ object-fit: cover;
67
+ border-radius: 10px;
68
+ transition: transform .7s;
69
+ margin-bottom: 0em;
70
+ }
71
+ .custom-button {
72
+ width: auto;
73
+ height: 100px;
74
+ object-fit: cover;
75
+ border-radius: 10px;
76
+ transition: transform .7s;
77
+ margin-bottom: 0em;
78
+ display: block;
79
+ margin-left: auto;
80
+ margin-right: auto;
81
+ }
82
+
83
+ </style>
84
+ <h1 class="title">
85
+ <span>PettanKoutei Lora Repo</span>
86
+ </h1>
87
 
88
+ <table class="custom-table">
89
+ <tr>
90
+ <td>
91
+ <div class="custom-image-container">
92
+ <a href="https://www.buymeacoffee.com/pettankoutei" target="_blank"><img class="custom-button" src="https://huggingface.co/pettankoutei/pettankoRouramashin_ANIMEv3/resolve/main/bmac_button.png" alt="Buy me a cookie!" style="height: 100px;" /></a>
93
+ </div>
94
+ </td>
95
+ </tr>
96
+ </table>
97
 
98
+ > Support me on Buy Me a Coffee! for early access of new content and exclusive models!
99
 
100
+ ## About
101
 
102
+ This is a Lora repository of all my released Loras. They will be organized in folders and showcased in this model card for easy access.
103
+ Any model marked as "Early Access" are available only for supporters and members [here](https://www.buymeacoffee.com/pettankoutei).
104
 
105
+ ### Yamamoto Souichirou Style v1
106
+ * Base model: Pony Diffusion v6 XL
107
+ * Trigger word: none
108
+ * Recommended weight: 0.8
109
+ * [Download Safetensors](https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/Yamamoto-v1/yamamoto-lyco-pony-v1.safetensors)
110
+ <table class="custom-table">
111
+ <tr>
112
+ <td>
113
+ <div class="custom-image-container">
114
+ <img class="custom-image" src="https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/Yamamoto-v1/Model_Sample_00001.png" alt="sample1">
115
+ </div>
116
+ </td>
117
+ <td>
118
+ <div class="custom-image-container">
119
+ <img class="custom-image" src="https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/Yamamoto-v1/Model_Sample_00002.png" alt="sample2">
120
+ </div>
121
+ </td>
122
+ <td>
123
+ <div class="custom-image-container">
124
+ <img class="custom-image" src="https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/Yamamoto-v1/Model_Sample_00003.png" alt="sample3">
125
+ </div>
126
+ </td>
127
+ </tr>
128
+ </table>
129
 
130
+ ### Yamamoto Souichirou Style v1 (Mix)
131
+ * Base model: Pony Diffusion v6 XL
132
+ * Trigger word: none
133
+ * Recommended weight: 0.8
134
+ * [Early Access](https://www.buymeacoffee.com/pettankoutei)
135
+ <table class="custom-table">
136
+ <tr>
137
+ <td>
138
+ <div class="custom-image-container">
139
+ <img class="custom-image" src="https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/Yamamoto-mix-v1/Model_Sample_00001.png" alt="sample1">
140
+ </div>
141
+ </td>
142
+ <td>
143
+ <div class="custom-image-container">
144
+ <img class="custom-image" src="https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/Yamamoto-mix-v1/Model_Sample_00002.png" alt="sample2">
145
+ </div>
146
+ </td>
147
+ <td>
148
+ <div class="custom-image-container">
149
+ <img class="custom-image" src="https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/Yamamoto-mix-v1/Model_Sample_00003.png" alt="sample3">
150
+ </div>
151
+ </td>
152
+ </tr>
153
+ </table>
154
 
155
+ ### Takamichi Style v1
156
+ * Base model: Pony Diffusion v6 XL
157
+ * Trigger word: none
158
+ * Recommended weight: 0.8
159
+ * [Early Access](https://www.buymeacoffee.com/pettankoutei)
160
+ <table class="custom-table">
161
+ <tr>
162
+ <td>
163
+ <div class="custom-image-container">
164
+ <img class="custom-image" src="https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/takamichi-v1/Model_Sample_00001.png" alt="sample1">
165
+ </div>
166
+ </td>
167
+ <td>
168
+ <div class="custom-image-container">
169
+ <img class="custom-image" src="https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/takamichi-v1/Model_Sample_00002.png" alt="sample2">
170
+ </div>
171
+ </td>
172
+ <td>
173
+ <div class="custom-image-container">
174
+ <img class="custom-image" src="https://huggingface.co/pettankoutei/Loras/resolve/main/PonyDiff_v6/takamichi-v1/Model_Sample_00003.png" alt="sample3">
175
+ </div>
176
+ </td>
177
+ </tr>
178
+ </table>
179
+
180
+ ## Disclamer
181
+
182
+ All the models that I have developed and published on this platform are for entertainment purposes only. They are derived from the base Stable Diffusion model, which means it also includes its inherent issues, limitations and unfiltered capabilities. With that in mind, I am in no way responsible for any content that the user creates with malicious intent while using any of these models. The user assumes complete responsibility for the misuse of these tools and any unethical content created with them. This disclaimer is subject to the laws of the United States of America and the state of California. I reserve the right to remove or report any content that violates the terms of service, ethical standards, or applicable laws.
183
+
184
+ ## License conditions
185
+
186
+ All models available in this repository are licensed under [Attribution-NonCommercial-ShareAlike 4.0 International](http://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1).