nupurkmr9 commited on
Commit
1715ead
·
verified ·
1 Parent(s): f16d888

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -113,15 +113,6 @@ def generate_image(text, img1, img2, img3, guidance_scale, inference_steps, seed
113
 
114
  def get_example():
115
  case = [
116
- [
117
- "A toy on a beach. Waves in the background. Realistic shot.",
118
- "./imgs/test_cases/rc_car/02.jpg",
119
- "./imgs/test_cases/rc_car/03.jpg",
120
- "./imgs/test_cases/rc_car/04.jpg",
121
- 3.5,
122
- 42,
123
- True,
124
- ],
125
  [
126
  "An action figure on top of a mountain. Sunset in the background. Realistic shot.",
127
  "./imgs/test_cases/action_figure/0.jpg",
@@ -132,7 +123,7 @@ def get_example():
132
  True,
133
  ],
134
  [
135
- "A penguin plushing wearing pink sunglasses is lounging on a beach. Realistic shot.",
136
  "./imgs/test_cases/penguin/0.jpg",
137
  "./imgs/test_cases/penguin/1.jpg",
138
  "./imgs/test_cases/penguin/2.jpg",
@@ -140,6 +131,15 @@ def get_example():
140
  42,
141
  True,
142
  ],
 
 
 
 
 
 
 
 
 
143
  ]
144
  return case
145
 
 
113
 
114
  def get_example():
115
  case = [
 
 
 
 
 
 
 
 
 
116
  [
117
  "An action figure on top of a mountain. Sunset in the background. Realistic shot.",
118
  "./imgs/test_cases/action_figure/0.jpg",
 
123
  True,
124
  ],
125
  [
126
+ "A penguin plushie wearing pink sunglasses is lounging on a beach. Realistic shot.",
127
  "./imgs/test_cases/penguin/0.jpg",
128
  "./imgs/test_cases/penguin/1.jpg",
129
  "./imgs/test_cases/penguin/2.jpg",
 
131
  42,
132
  True,
133
  ],
134
+ [
135
+ "A toy on a beach. Waves in the background. Realistic shot.",
136
+ "./imgs/test_cases/rc_car/02.jpg",
137
+ "./imgs/test_cases/rc_car/03.jpg",
138
+ "./imgs/test_cases/rc_car/04.jpg",
139
+ 3.5,
140
+ 42,
141
+ True,
142
+ ],
143
  ]
144
  return case
145