Which gave me a build error in the requirements files (it was using the #egg= syntax).
Old line in requirements: git+https://github.com/NVIDIA/NeMo.git@main#egg=nemo_toolkit[asr]
Updated to: nemo_toolkit[asr] @ git+https://github.com/NVIDIA/NeMo.git@main
(You can see the commit history on the duplicated space)
Now, the space builds and is in a running state, but I can’t seem to get any transcription output out of it. On the original space, I can upload any file (5 min, 15 min, 30 min) and get the output within 20 seconds. But on my duplicated space, I get an error even on a small 5 minute file.
I don’t see any specific errors in the container logs.
What is going on here? Both spaces are using the same ZeroGPU hardware. One works, the other doesn’t.
Can you please help me with this?
After cloning the repository and pinning the dependencies to older versions, transcription now completes successfully. So I’ve sent PR.
The cause was likely that PyTorch on Zero GPU defaulted to version 2.9, combined with the fact that PyTorch 2.9 and the new NeMo don’t seem to play well together.
Also, I’m still not quite sure how to stabilize this Space with the new PyTorch and NeMo…