AlexKoff88 commited on
Commit
7e75aa2
·
1 Parent(s): 26fbd8a

Fixed the set of pipelines

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ pipe_tome_int8.reshape(batch_size=1, height=512, width=512, num_images_per_promp
22
  pipe_tome_int8.compile()
23
 
24
  pipes = {
25
- "Torch fp32"
26
  "OpenVINO fp32": pipe_fp32,
27
  "OpenVINO 8-bit quantized": pipe_int8,
28
  "OpenVINO merged and quantized": pipe_tome_int8
 
22
  pipe_tome_int8.compile()
23
 
24
  pipes = {
25
+ "Torch fp32": pipe_torch_fp32,
26
  "OpenVINO fp32": pipe_fp32,
27
  "OpenVINO 8-bit quantized": pipe_int8,
28
  "OpenVINO merged and quantized": pipe_tome_int8