phenomenon1981 commited on
Commit
d2f1af3
1 Parent(s): db8b594

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -89,7 +89,7 @@ def send_it5(inputs, noise_level, proc1=proc1):
89
  if not queue.empty():
90
  queue.queue.clear()
91
  queue_length_counter = 0
92
- output5 = proc5(prompt_with_noise)
93
  queue_length_counter += 1
94
  return output5
95
  time.sleep(1)
@@ -101,7 +101,7 @@ def send_it6(inputs, noise_level, proc1=proc1):
101
  if not queue.empty():
102
  queue.queue.clear()
103
  queue_length_counter = 0
104
- output6 = proc5(prompt_with_noise)
105
  queue_length_counter += 1
106
  return output6
107
  time.sleep(1)
@@ -113,7 +113,7 @@ def send_it7(inputs, noise_level, proc1=proc1):
113
  if not queue.empty():
114
  queue.queue.clear()
115
  queue_length_counter = 0
116
- output7 = proc5(prompt_with_noise)
117
  queue_length_counter += 1
118
  return output7
119
  time.sleep(1)
@@ -125,7 +125,7 @@ def send_it8(inputs, noise_level, proc1=proc1):
125
  if not queue.empty():
126
  queue.queue.clear()
127
  queue_length_counter = 0
128
- output8 = proc5(prompt_with_noise)
129
  queue_length_counter += 1
130
  return output8
131
  time.sleep(1)
 
89
  if not queue.empty():
90
  queue.queue.clear()
91
  queue_length_counter = 0
92
+ output5 = proc1(prompt_with_noise)
93
  queue_length_counter += 1
94
  return output5
95
  time.sleep(1)
 
101
  if not queue.empty():
102
  queue.queue.clear()
103
  queue_length_counter = 0
104
+ output6 = proc1(prompt_with_noise)
105
  queue_length_counter += 1
106
  return output6
107
  time.sleep(1)
 
113
  if not queue.empty():
114
  queue.queue.clear()
115
  queue_length_counter = 0
116
+ output7 = proc1(prompt_with_noise)
117
  queue_length_counter += 1
118
  return output7
119
  time.sleep(1)
 
125
  if not queue.empty():
126
  queue.queue.clear()
127
  queue_length_counter = 0
128
+ output8 = proc1(prompt_with_noise)
129
  queue_length_counter += 1
130
  return output8
131
  time.sleep(1)