ZeroGPU illegal duration. The requested GPU duration (300s) is larger than the maximum allowed

I got this error when running my space: https://huggingface.co/spaces/endless-ai/Feat2GS

ZeroGPU illegal duration
The requested GPU duration (300s) is larger than the maximum allowed

I added @spaces.GPU(duration=300) to the run function in app.py. As the space developer, I need the runtime set to at least 300 seconds or more. Is this possible? I’m not a Pro user, but I’m an admin of an organization with a paid Enterprise Hub subscription (1 seat). (已编辑)

2 Likes

It should be impossible. The source is scattered around and it’s a bit hard to find right away, but the official maximum is 120 seconds. It may work for up to 240 seconds, but I don’t think it’s possible to do more than that.

1 Like

Thank for your reply!

but what can we do if the function must require >240 seconds to run?

1 Like

The only thing I can think of is to separate the processing…
If that’s not possible, there’s nothing we can do.
If you don’t use the GPU, Quota is irrelevant, so you could process it using the CPU, but of course that would take a long time.

1 Like

It appears that PRO account doesn’t have any issues when the time duration is above 120s. Is this right? It appears that my app which was set to 360s worked fine on a PRO account, but on free account it received the max time duration error.

1 Like

If you have no account, there is a 180-second limit on the total time you can use it, so it definitely won’t work. If you’re a free user, you have 300 seconds, and if you’re a Pro user, you have 1500 seconds, so there is a possibility that it will work.

However, if it exceeds 120 seconds, it’s better to think of it as irregular and that it may or may not work. Well, actually, I’ve seen it up to 240 seconds, so I think it’ll be okay…