Daniel Pressel

Results 27 comments of Daniel Pressel

Also, I am not sure if you are feeding data faster than the inference can be achieved. You may wish to throttle, or better yet, use a ring-buffer or some...

Maybe looking at ticket #19 would be helpful? I personally have not run it on video myself but I think others have. If somebody wants to send me a patch,...

I dont use windows, but this appears to be a windows issue with how you are running your command line. Maybe you need quotes?

From the error it doesn't seem that there is anything wrong with the code. It's an issue with how you are passing commands in the windows command terminal. Your path...

I am having this same issue with both PyTorch Elastic and Kubeflow's PyTorchJob CRDs. A single multi-worker job works as expected, scheduling to N unique GPUs. But, when I schedule...

In my case it appears I was able to fix by setting `nvidia.com/gpu`: ``` resources: limits: nvidia.com/gpu: 1 ```

we were using code to generate the kubernetes request via the API and it was erroneously setting the limit to `0`, which did not try to take all GPUs on...