-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors running the image #5
Comments
Can you give me the exact command you're using to invoke the application. Ideally as a docker command defining the mounts and a description of what those folder hierarchies look like, then I'll be able to help debug |
Hi Will, Apologies for the delay, just found some time to get back to the issue. My current setup as simple as it could be, a folder with frames called
It appears that I set the input file format correctly, otherwise I'm getting an error along the lines of |
Hi Roman, $ wget https://test-videos.co.uk/vids/bigbuckbunny/mp4/h264/1080/Big_Buck_Bunny_1080_10s_30MB.mp4
$ ffmpeg -i Big_Buck_Bunny_1080_10s_30MB.mp4 jpegs/frame%06d.jpg
$ docker run \
--gpus all \
--rm \
--mount "type=bind,source=$PWD/jpegs,target=/input" \
--mount "type=bind,source=$PWD/flow,target=/output" \
--mount "type=bind,source=$HOME/.nv,target=/cache/nv" \
willprice/furnari-flow \
frame%06d.jpg
Number of GPUs present 1
Device 0: "GeForce GTX 1060 6GB" 6078Mb, sm_61, Driver/Runtime ver.10.20/8.0
TVL1 parameters
- epsilon: 0.01
- lambda: 0.15
- tau: 0.25
- theta: 0.3
- iterations: 300
- nscales: 5
- warps: 5
- use_initial_flow: 0
Processing folder /input
.......................................................................................................................................................................................................................................................................................................... It's possibly an issue with having a 20-series GPU, but since I don't have any of those I'm unable to test. Maybe try with big buck bunny just to check its not a problem with your media. |
Hi, got the same error as before unfortunately :( must be my GPU indeed. |
I'm getting errors like:
The
u
andv
folders are being created, but there's nothing inside.Btw, I changed
--runtime=nvidia
to--gpus all
in the script; it also says justdocker
instead ofdocker run
. My filenames look likeframe000001.jpg
, so I'm usingframe%06d.jpg
.Ubuntu 18.04, Docker 19.03.8
The text was updated successfully, but these errors were encountered: