vars.py 1.63 KB
Newer Older
1
2
3
MAX_SEED = 1000000000

EXAMPLES = [
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
    [
        "https://images.pexels.com/photos/15460314/pexels-photo-15460314.jpeg",
        "Change the color of the woman's dress to red. The background is a beach. "
        "The woman is holding a sign that says 'Nunchaku is awesome'",
        20,
        2.5,
        23,
    ],
    [
        "https://huggingface.co/mit-han-lab/nunchaku-artifacts/resolve/main/ComfyUI-nunchaku/test_data/logo.png",
        "Change the logo of 'MIT HAN Lab' to 'MIT Nunchaku' in the same style.",
        20,
        2.5,
        233,
    ],
    [
        "https://huggingface.co/mit-han-lab/nunchaku-artifacts/resolve/main/ComfyUI-nunchaku/test_data/monalisa.jpg",
        "Convert the image to ghibli style",
        20,
        2.5,
        2333,
    ],
    [
        "https://huggingface.co/mit-han-lab/nunchaku-artifacts/resolve/main/ComfyUI-nunchaku/test_data/mushroom_depth.webp",
        "Transform the depth map into an ethereal fantasy image. A glowing mushroom forms the roof of an ancient treehouse, "
        "its golden light casting warmth over moss, tiny flowers, and a stone path. Smaller glowing mushrooms create a "
        "multi-level home among the tree’s twisted branches. In the background, a misty forest with waterfalls and a "
        "starry night sky adds to the magical atmosphere.",
        20,
        2.5,
        23333,
    ],
36
37
38
    [
        "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/yarn-art-pikachu.png",
        "Make Pikachu hold a sign that says 'Nunchaku is awesome', yarn art style, detailed, vibrant colors",
39
        20,
40
        2.5,
41
        233333,
42
43
    ],
]