Upload folder using huggingface_hub
Browse files- 17295193.jpeg +0 -0
- GPUs_Everywhere.safetensors +3 -0
- README.md +62 -0
17295193.jpeg
ADDED
GPUs_Everywhere.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2751b490fc7ec07b00ee25651b616954e17209f0fa00dc078e3359d67de711ec
|
3 |
+
size 228456828
|
README.md
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=RentCivit&allowDerivatives=True&allowDifferentLicense=False
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- concept
|
13 |
+
- rtx
|
14 |
+
- gpu
|
15 |
+
- amd
|
16 |
+
- nvidia
|
17 |
+
- gtx
|
18 |
+
|
19 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
20 |
+
instance_prompt:
|
21 |
+
widget:
|
22 |
+
- text: ' '
|
23 |
+
|
24 |
+
output:
|
25 |
+
url: >-
|
26 |
+
17295193.jpeg
|
27 |
+
|
28 |
+
---
|
29 |
+
|
30 |
+
# GPUs Everywhere
|
31 |
+
|
32 |
+
<Gallery />
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
## Model description
|
39 |
+
|
40 |
+
<p>"GPUs Everywhere" a LoRA to generate highly accurate and realistic images and renders for recent Nvidia and AMD GPUs, from RX 5000 to RX 7000 and GTX 10 to RTX 40 series. </p>
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
## Download model
|
45 |
+
|
46 |
+
Weights for this model are available in Safetensors format.
|
47 |
+
|
48 |
+
[Download](/Tech-Meld/gpus-everywhere/tree/main) them in the Files & versions tab.
|
49 |
+
|
50 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
51 |
+
|
52 |
+
```py
|
53 |
+
from diffusers import AutoPipelineForText2Image
|
54 |
+
import torch
|
55 |
+
|
56 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
|
57 |
+
pipeline.load_lora_weights('Tech-Meld/gpus-everywhere', weight_name='GPUs_Everywhere.safetensors')
|
58 |
+
image = pipeline('Your custom prompt').images[0]
|
59 |
+
```
|
60 |
+
|
61 |
+
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
|
62 |
+
|