Simbolo commited on
Commit
e382ad3
1 Parent(s): 93170cb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -22
README.md CHANGED
@@ -32,35 +32,22 @@ We display the results using a range of training samples and images from differe
32
  ### Problem Statement:
33
  When we prompted the stable diffusion model to generate an image of Bagan, it produced an image depicting a pagoda from Thailand. Hence, our decision was to fine-tune the current stable diffusion model using a multitude of Bagan photos in order to attain a clearer outcome.
34
 
35
- ### How to use:
36
- prompt = "fantasy bagan,hypper detailed , peaceful mood ,The central theme could revolve around a fantastical journey through a magical realm, featuring characters with ethereal and surreal qualities, set against a backdrop of vibrant and enchanting landscapes, The color palette would be a harmonious combination of Jean's bold and surreal hues, by yukisakura sunset."
37
 
38
- negative_prompt = ""
39
 
40
- num_samples = 5
41
 
42
- guidance_scale = 9
43
 
44
- num_inference_steps = 100
45
 
46
- height = 512
47
 
48
- width = 512
49
 
50
- with autocast("cuda"), torch.inference_mode():
51
- images = pipe(
52
- prompt,
53
- height=height,
54
- width=width,
55
- negative_prompt=negative_prompt,
56
- num_images_per_prompt=num_samples,
57
- num_inference_steps=num_inference_steps,
58
- guidance_scale=guidance_scale,
59
- generator=g_cuda
60
- ).images
61
-
62
- for img in images:
63
- display(img)
64
 
65
  ### Contributors:
66
  Main Contributor: [Ye Bhone Lin](https://github.com/Ye-Bhone-Lin)
 
32
  ### Problem Statement:
33
  When we prompted the stable diffusion model to generate an image of Bagan, it produced an image depicting a pagoda from Thailand. Hence, our decision was to fine-tune the current stable diffusion model using a multitude of Bagan photos in order to attain a clearer outcome.
34
 
35
+ ### How to create prompts:
36
+ When we create prompt for bagan, we have to consider 6 keywords. Those are Subject, Medium, Style, Art-sharing website, Resolution, and Additional details.
37
 
38
+ Subject -> What you want to see in the picture is the subject. Not writing enough about the subjects is a common error.
39
 
40
+ Medium -> The medium is the substance that artists work with. Illustration, oil painting, 3D rendering, and photography are a few examples. The impact of Medium is significant because a single keyword can significantly alter the style.
41
 
42
+ Style -> The image's artistic style is referred to as the style. Pop art, impressionist, and surrealist are a few examples.
43
 
44
+ Art-sharing website -> Specialty graphic websites like Deviant Art and Artstation compile a large number of images from various genres. One surefire way to direct the image toward these styles is to use them as a prompt.
45
 
46
+ Resolution -> Resolution represents how sharp and detailed the image is
47
 
48
+ Additional Details -> Sweeteners added to an image are additional details. To give the image a more dystopian and sci-fi feel, we will add those elements.
49
 
50
+ The example prompt for general bagan is: bagan, a creepy and eery Halloween setting, with Jack o lanterns on the street and shadow figures lurking about, dynamic lighting, photorealistic fantasy concept art, stunning visuals, creative, cinematic, ultra detailed, trending on art station, spooky vibe. That prompt gives you the Halloween theme.
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
  ### Contributors:
53
  Main Contributor: [Ye Bhone Lin](https://github.com/Ye-Bhone-Lin)