Update README.md
Browse files
README.md
CHANGED
@@ -10,7 +10,7 @@ library_name: diffusers
|
|
10 |
## Model Details
|
11 |
|
12 |
### Model Description
|
13 |
-
The Imagine V5, developed by Vyro AI, represents the pinnacle of photorealism in AI art generation. Specializing in photographs and portraits, V5 is known for its exceptional ability to create images that closely mimic reality.
|
14 |
|
15 |
V5 boasts an impressive ability to recognize a wide array of prompts and handle multiple subjects effortlessly. It's important to note that V5, with its vast capabilities, also demands significant computational resources and may exhibit slower processing times. This model is best suited for users with a good understanding of prompt composition, as it offers high-quality outputs for those who can navigate its complexities.
|
16 |
|
@@ -54,10 +54,11 @@ We offer two workflows:
|
|
54 |
Clone this repository
|
55 |
```bash
|
56 |
git clone https://huggingface.co/vyroAI/ImagineV5
|
|
|
57 |
```
|
58 |
Create a conda environment
|
59 |
```bash
|
60 |
-
conda create -n
|
61 |
```
|
62 |
Install PyTorch Nightly for ComfyUI
|
63 |
Select the version that matches your system's CUDA version.
|
@@ -120,11 +121,10 @@ cd models/vae
|
|
120 |
- [sdxl_vae.safetensors](https://huggingface.co/stabilityai/sdxl-vae/blob/main/sdxl_vae.safetensors)
|
121 |
- [vae-ft-mse-840000-ema-pruned.safetensors](https://huggingface.co/stabilityai/sd-vae-ft-mse-original/blob/main/vae-ft-mse-840000-ema-pruned.safetensors)
|
122 |
|
|
|
123 |
```bash
|
124 |
-
|
125 |
-
mkdir spacy/encore_web_trf
|
126 |
```
|
127 |
-
- [en_core_web_trf](https://huggingface.co/spacy/en_core_web_trf/tree/main)
|
128 |
|
129 |
The models directory would look like this after all installations.
|
130 |
```
|
@@ -143,8 +143,7 @@ models/
|
|
143 |
β βββ sdxl_vae.safetensors
|
144 |
β βββ vae-ft-mse-840000-ema-pruned.safetensors
|
145 |
βββ spacy/
|
146 |
-
βββ
|
147 |
-
βββ en_core_web_trf
|
148 |
```
|
149 |
|
150 |
### Step 5: Run the Application
|
|
|
10 |
## Model Details
|
11 |
|
12 |
### Model Description
|
13 |
+
The [Imagine V5](https://imagine.art/), developed by Vyro AI, represents the pinnacle of photorealism in AI art generation. Specializing in photographs and portraits, V5 is known for its exceptional ability to create images that closely mimic reality.
|
14 |
|
15 |
V5 boasts an impressive ability to recognize a wide array of prompts and handle multiple subjects effortlessly. It's important to note that V5, with its vast capabilities, also demands significant computational resources and may exhibit slower processing times. This model is best suited for users with a good understanding of prompt composition, as it offers high-quality outputs for those who can navigate its complexities.
|
16 |
|
|
|
54 |
Clone this repository
|
55 |
```bash
|
56 |
git clone https://huggingface.co/vyroAI/ImagineV5
|
57 |
+
cd ImagineV5
|
58 |
```
|
59 |
Create a conda environment
|
60 |
```bash
|
61 |
+
conda create -n imaginev5 python==3.11 -y
|
62 |
```
|
63 |
Install PyTorch Nightly for ComfyUI
|
64 |
Select the version that matches your system's CUDA version.
|
|
|
121 |
- [sdxl_vae.safetensors](https://huggingface.co/stabilityai/sdxl-vae/blob/main/sdxl_vae.safetensors)
|
122 |
- [vae-ft-mse-840000-ema-pruned.safetensors](https://huggingface.co/stabilityai/sd-vae-ft-mse-original/blob/main/vae-ft-mse-840000-ema-pruned.safetensors)
|
123 |
|
124 |
+
Additionally:
|
125 |
```bash
|
126 |
+
git clone https://huggingface.co/spacy/en_core_web_trf models/spacy/en_core_web_trf
|
|
|
127 |
```
|
|
|
128 |
|
129 |
The models directory would look like this after all installations.
|
130 |
```
|
|
|
143 |
β βββ sdxl_vae.safetensors
|
144 |
β βββ vae-ft-mse-840000-ema-pruned.safetensors
|
145 |
βββ spacy/
|
146 |
+
βββ en_core_web_trf
|
|
|
147 |
```
|
148 |
|
149 |
### Step 5: Run the Application
|