Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -138,11 +138,6 @@ with gr.Blocks() as demo:
|
|
138 |
def step2(x):
|
139 |
return x * 2
|
140 |
|
141 |
-
gr.Series(
|
142 |
-
gr.Interface(fn=step1, inputs="number", outputs="number"),
|
143 |
-
gr.Interface(fn=step2, inputs="number", outputs="number")
|
144 |
-
)
|
145 |
-
|
146 |
# 24. 🏎️ Parallel - Multitasking: the art of messing up several things simultaneously
|
147 |
gr.Parallel(
|
148 |
gr.Interface(fn=lambda x: f"Path A: {x.upper()}", inputs="text", outputs="text"),
|
|
|
138 |
def step2(x):
|
139 |
return x * 2
|
140 |
|
|
|
|
|
|
|
|
|
|
|
141 |
# 24. 🏎️ Parallel - Multitasking: the art of messing up several things simultaneously
|
142 |
gr.Parallel(
|
143 |
gr.Interface(fn=lambda x: f"Path A: {x.upper()}", inputs="text", outputs="text"),
|