Commit
·
b92717f
1
Parent(s):
ab78135
add readme for individual lora
Browse files- cyb_m-76e_omaha/README.MD +127 -0
- cyb_m-76e_omaha/Screenshots/2137-noobaiXLNAIXL_epsilonPred075-796353812176098.png +3 -0
- cyb_m-76e_omaha/Screenshots/2148-noobaiXLNAIXL_epsilonPred075-66287916422986.png +3 -0
- cyb_m-76e_omaha/Screenshots/2149-noobaiXLNAIXL_epsilonPred075-977461078827091.png +3 -0
- cyb_m-76e_omaha/Screenshots/2151-noobaiXLNAIXL_epsilonPred075-490864349479205.png +3 -0
cyb_m-76e_omaha/README.MD
ADDED
@@ -0,0 +1,127 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- text-to-image
|
4 |
+
- stable-diffusion
|
5 |
+
- lora
|
6 |
+
- diffusers
|
7 |
+
- not-for-all-audiences
|
8 |
+
license: apache-2
|
9 |
+
base_model:
|
10 |
+
- Laxhar/noobai-XL-0.75
|
11 |
+
---
|
12 |
+
<style>
|
13 |
+
.title-container {
|
14 |
+
display: flex;
|
15 |
+
justify-content: center;
|
16 |
+
align-items: center;
|
17 |
+
height: 100vh; /* Adjust this value to position the title vertically */
|
18 |
+
}
|
19 |
+
|
20 |
+
.title {
|
21 |
+
font-size: 2.5em;
|
22 |
+
text-align: center;
|
23 |
+
color: #333;
|
24 |
+
font-family: "lucida sans unicode", "lucida grande", sans-serif;
|
25 |
+
font-style: italic;
|
26 |
+
font-weight: bold;
|
27 |
+
font-variant: small-caps;
|
28 |
+
letter-spacing: 0.05em;
|
29 |
+
padding: 0.5em 0;
|
30 |
+
background: transparent;
|
31 |
+
}
|
32 |
+
|
33 |
+
.title span {
|
34 |
+
background: -webkit-linear-gradient(45deg, #fffa00, #01688f);
|
35 |
+
-webkit-background-clip: text;
|
36 |
+
-webkit-text-fill-color: transparent;
|
37 |
+
}
|
38 |
+
|
39 |
+
.content-warning {
|
40 |
+
font-size: 1.5em;
|
41 |
+
text-align: center;
|
42 |
+
color: #333;
|
43 |
+
font-weight: bold;
|
44 |
+
font-variant: small-caps;
|
45 |
+
letter-spacing: 0.05em;
|
46 |
+
padding: 0.5em 0;
|
47 |
+
background: transparent;
|
48 |
+
}
|
49 |
+
|
50 |
+
.content-warning span {
|
51 |
+
background: -webkit-linear-gradient(45deg, #ff9999, #FF5C95);
|
52 |
+
-webkit-background-clip: text;
|
53 |
+
-webkit-text-fill-color: transparent;
|
54 |
+
}
|
55 |
+
|
56 |
+
.custom-table {
|
57 |
+
table-layout: fixed;
|
58 |
+
width: 100%;
|
59 |
+
border-collapse: collapse;
|
60 |
+
margin-top: 0em;
|
61 |
+
}
|
62 |
+
|
63 |
+
.custom-table td {
|
64 |
+
width: 50%;
|
65 |
+
vertical-align: top;
|
66 |
+
padding: 10px;
|
67 |
+
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
|
68 |
+
}
|
69 |
+
.custom-image-container {
|
70 |
+
position: relative;
|
71 |
+
width: 100%;
|
72 |
+
margin-bottom: 0em;
|
73 |
+
overflow: hidden;
|
74 |
+
border-radius: 10px;
|
75 |
+
transition: transform .7s;
|
76 |
+
/* Smooth transition for the container */
|
77 |
+
}
|
78 |
+
.custom-image-container:hover {
|
79 |
+
transform: scale(1.05);
|
80 |
+
/* Scale the container on hover */
|
81 |
+
}
|
82 |
+
.custom-image {
|
83 |
+
width: 100%;
|
84 |
+
height: auto;
|
85 |
+
object-fit: cover;
|
86 |
+
border-radius: 10px;
|
87 |
+
transition: transform .7s;
|
88 |
+
margin-bottom: 0em;
|
89 |
+
}
|
90 |
+
.custom-button {
|
91 |
+
width: auto;
|
92 |
+
height: 100px;
|
93 |
+
object-fit: cover;
|
94 |
+
border-radius: 10px;
|
95 |
+
transition: transform .7s;
|
96 |
+
margin-bottom: 0em;
|
97 |
+
display: block;
|
98 |
+
margin-left: auto;
|
99 |
+
margin-right: auto;
|
100 |
+
}
|
101 |
+
</style>
|
102 |
+
<h1 class="title">
|
103 |
+
<span>Militech M-76e Omaha</span>
|
104 |
+
<br>Cyberpunk 2077
|
105 |
+
</h1>
|
106 |
+
|
107 |
+
Militech M-76e Omaha pistol from Cyberpunk 2077. Primarily trained on screenshots from Cyberpunk 2077.
|
108 |
+
|
109 |
+
# Usage
|
110 |
+
|
111 |
+
Trained on NoobAI Epsilon 0.75.
|
112 |
+
|
113 |
+
## Trigger words
|
114 |
+
|
115 |
+
<b>m-76e omaha, handgun</b>
|
116 |
+
|
117 |
+
## Download model
|
118 |
+
|
119 |
+
Weights for this model are available in Safetensors format.
|
120 |
+
|
121 |
+
[Download](/tree/main) them in the Files & versions tab.
|
122 |
+
|
123 |
+
### License
|
124 |
+
|
125 |
+
This LoRA model is provided under the [Apache License 2.0](https://huggingface.co/datasets/choosealicense/licenses/blob/main/markdown/apache-2.0.md) license.
|
126 |
+
|
127 |
+
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. **Follow all local, state, and federal laws as well as online rules regarding this content and generations with this LoRA. I am not responsible if you are arrested or banned from an online service for using this.**
|
cyb_m-76e_omaha/Screenshots/2137-noobaiXLNAIXL_epsilonPred075-796353812176098.png
ADDED
![]() |
Git LFS Details
|
cyb_m-76e_omaha/Screenshots/2148-noobaiXLNAIXL_epsilonPred075-66287916422986.png
ADDED
![]() |
Git LFS Details
|
cyb_m-76e_omaha/Screenshots/2149-noobaiXLNAIXL_epsilonPred075-977461078827091.png
ADDED
![]() |
Git LFS Details
|
cyb_m-76e_omaha/Screenshots/2151-noobaiXLNAIXL_epsilonPred075-490864349479205.png
ADDED
![]() |
Git LFS Details
|