Spaces:
Runtime error
Runtime error
added # Modify the Gradio interface to use a "label" type output instead of "textbox" webcam_interface = gr.Interface( fn=predict_with_webcam, inputs=gr.inputs.Image(shape=(480, 640), source="webcam"), outputs=gr.outputs.Label(), # Use "label" type instead of "textbox" live=True, interpretation="default", title="Webcam Landmark Prediction", description="Make predictions using landmarks extracted from your webcam stream.", )
03fbdcd