On restart ZeroGPU not working but on CPU it works

With no changes after restarting the space I get this error on ZeroGPU:

example space : StrawberryDiseaseDetector - a Hugging Face Space by PERCEIVE-Demos

runtime error

Exit code: ?. Reason:

Container logs:

===== Application Startup at 2025-07-29 16:27:34 =====

Previously it was working. Can someone help me with this? Seems to be an issue on the side of HuggingFace

It started working after turning off the cache for Example for now.

iface = gr.Interface(
    fn=process_input,
    inputs=[
        gr.Image(label="Upload Image", type="pil"),  # File input as PIL Image
    ],
    outputs=gr.Image(type="pil", label="Output (Image)"),  # Show output as an image
    examples=default_images,
    cache_examples=False, # <=
    title="Strawberry Disease Detection",
    description="This application detects diseases in strawberries using a trained YOLOX model. Upload an image, video, or use your webcam for analysis."
)

At least for me all the spaces are working again with ZeroGPU. :heart_eyes: I don’t know what Hugging Face has changed.