Update README.md
Browse files
README.md
CHANGED
@@ -5,6 +5,12 @@
|
|
5 |
# ViPer: Visual Personalization of Generative Models via Individual Preference Learning
|
6 |
GitHub: https://github.com/sogandstorme/ViPer_Personalization
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
```bash
|
9 |
git clone https://github.com/sogandstorme/ViPer_Personalization.git
|
10 |
cd ViPer_Personalization
|
@@ -22,41 +28,21 @@ from ViPer import (
|
|
22 |
generate_images
|
23 |
)
|
24 |
|
25 |
-
comments
|
|
|
|
|
26 |
"These are beautiful, intricate patterns. Very elegant, and the teal blue colors are lovely. I love the flowing lines.",
|
27 |
-
"I find the Pointillism pattern very interesting. I love it.",
|
28 |
-
"I love the transparent and multi-layered texture here. The lines are flowing and it feels free yet structured. It has a gloomy, haunted, mysterious vibe to it. And the colors? Purples and indigo blues are perfection!",
|
29 |
"The colors here don't quite work for me. They feel a bit unmatched and artificial. The concept also seems a bit boring and artificial to me.",
|
30 |
-
|
31 |
-
"I really like the cyberpunk vibes here! The neon lighting is pretty cool to look at, and the mysterious, creepy vibes are so cool!",
|
32 |
-
"This piece doesn't resonate with me. I'm not a fan of naive art or vibrant colors. It feels lacking in skills to me.",
|
33 |
-
"I'm a bit conflicted about this one. I like how everything here feels like an illusion and how extreme the patterns are. It's both unsettling and nice. I just wish it wasn't so abstract.",
|
34 |
-
"Perfection! Such a beautiful combination of Art Nouveau and Steampunk! The dark gold, silver, and blue combination makes it feel so expensive. It feels like a mystical dream, and I love it.",
|
35 |
-
"This one isn't for me. The vibrant colors are too bright and overwhelming. The 3D effect isn't quite working for me either. The bright yellow is a bit too intense and realistic.",
|
36 |
-
"Gorgeous work! I love the dark Surrealism here! It feels so nightmarish and exciting! I do wish it had more colors though. A purple and blue palette would be awesome."
|
37 |
-
]
|
38 |
|
39 |
image_paths = [
|
40 |
"/images/6.png",
|
41 |
-
"/images/9.png"
|
42 |
-
"/images/13.png",
|
43 |
-
"/images/16.png",
|
44 |
-
"/images/18.png",
|
45 |
-
"/images/21.png",
|
46 |
-
"/images/55.png",
|
47 |
-
"/images/39.png",
|
48 |
-
"/images/42.png",
|
49 |
-
"/images/45.png",
|
50 |
-
"/images/22.png",
|
51 |
]
|
52 |
|
53 |
prompts = [
|
54 |
-
"Town, People walking in the streets",
|
55 |
"Whimsical tea party in a bioluminescent forest",
|
56 |
-
"Tiny houses on top of each other above clouds"
|
57 |
-
"A person reaching for stars",
|
58 |
-
"Human in a frame",
|
59 |
-
"Happy cats"
|
60 |
]
|
61 |
|
62 |
output_dir = "results/"
|
|
|
5 |
# ViPer: Visual Personalization of Generative Models via Individual Preference Learning
|
6 |
GitHub: https://github.com/sogandstorme/ViPer_Personalization
|
7 |
|
8 |
+

|
9 |
+
|
10 |
+
## Example
|
11 |
+
|
12 |
+
To use ViPer, start by cloning it from our GitHub page. For effective personalization, we recommend commenting on at least eight images.
|
13 |
+
|
14 |
```bash
|
15 |
git clone https://github.com/sogandstorme/ViPer_Personalization.git
|
16 |
cd ViPer_Personalization
|
|
|
28 |
generate_images
|
29 |
)
|
30 |
|
31 |
+
# Ensure that the order of the comments matches the path of the images they refer to.
|
32 |
+
|
33 |
+
comments = [
|
34 |
"These are beautiful, intricate patterns. Very elegant, and the teal blue colors are lovely. I love the flowing lines.",
|
|
|
|
|
35 |
"The colors here don't quite work for me. They feel a bit unmatched and artificial. The concept also seems a bit boring and artificial to me.",
|
36 |
+
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
image_paths = [
|
39 |
"/images/6.png",
|
40 |
+
"/images/9.png"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
]
|
42 |
|
43 |
prompts = [
|
|
|
44 |
"Whimsical tea party in a bioluminescent forest",
|
45 |
+
"Tiny houses on top of each other above clouds"
|
|
|
|
|
|
|
46 |
]
|
47 |
|
48 |
output_dir = "results/"
|