Andre commited on
Commit
4d1f1eb
·
1 Parent(s): 6ccff70

“Update”

Browse files
Files changed (2) hide show
  1. config/prompts.py +1 -1
  2. src/img_gen_colab.py +1 -1
config/prompts.py CHANGED
@@ -7,7 +7,7 @@ prompts = [
7
  },
8
  {
9
  "alias": "Forest Battle",
10
- "text": "A fierce battle between two armies in a dense forest, with knights wielding swords and axes, horses rearing, and the ground covered in mud and blood. The winning army is dressed in {team_color} armor and banners. The enemy army, dressed in {enemy_color} armor, is locked in brutal combat, with soldiers fighting hand-to-hand amidst the trees. Arrows whiz past, and the sounds of clashing steel echo through the forest. Injured soldiers scream in pain, and the forest is littered with broken weapons and shields. Unreal Engine render style, photorealistic, realistic fantasy style."
11
  },
12
  {
13
  "alias": "Boiling Oil Defense",
 
7
  },
8
  {
9
  "alias": "Forest Battle",
10
+ "text": "A fierce battle between two armies in a dense forest, with knights wielding swords and axes, horses rearing, and the ground covered in mud and blood. The winning army is dressed in {team_color} armor and banners.. The enemy army, dressed in {enemy_color} armor, is locked in brutal combat, with soldiers fighting hand-to-hand amidst the trees. Arrows whiz past, and the sounds of clashing steel echo through the forest. Injured soldiers scream in pain, and the forest is littered with broken weapons and shields. Unreal Engine render style, photorealistic, realistic fantasy style."
11
  },
12
  {
13
  "alias": "Boiling Oil Defense",
src/img_gen_colab.py CHANGED
@@ -36,7 +36,7 @@ def generate_image(prompt, team_color, model_name, height, width, num_inference_
36
  print("Original Prompt:")
37
  print(prompt)
38
  print(f"Enemy Color: {enemy_color}")
39
- print(f"Team Color: {team_color}")
40
 
41
  prompt = prompt.format(team_color=team_color.lower(), enemy_color=enemy_color)
42
 
 
36
  print("Original Prompt:")
37
  print(prompt)
38
  print(f"Enemy Color: {enemy_color}")
39
+ print(f"Team Color: {team_color.lower()}")
40
 
41
  prompt = prompt.format(team_color=team_color.lower(), enemy_color=enemy_color)
42