Spaces:
Runtime error
Runtime error
File size: 663 Bytes
5c893d3 b0da56d 704ea28 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import gradio as gr
# Load the new model from Shakker-Labs
demo = gr.load("models/Shakker-Labs/AWPortrait-FL")
def process_output(*outputs):
# Assuming the model returns a tuple, and the first element is the image
if isinstance(outputs, tuple):
# Extract the image from the tuple
image = outputs[0]
return image
return outputs
# Create a wrapper to process the output correctly
def wrapped_inference(*inputs):
outputs = demo(*inputs)
return process_output(*outputs)
# Launch the Gradio interface with the corrected output processing
gr.Interface(
wrapped_inference,
demo.inputs,
demo.outputs,
).launch()
|