Ravindra Yadav
Ravindra Yadav
@brandonhuo @Chuckie-He You need to run the download_and_preprocess_dataset.sh script after commenting out the Line#118 in kth_dataset.py file. And then run the code. It will work. https://github.com/alexlee-gk/video_prediction/blob/master/video_prediction/datasets/kth_dataset.py#L118
> > > > Code is not working for celeba. I am not able to obtain the results as reported in the paper. The image reconstruction and random sample generation...
Go to the /data/keypoint2img.py file. Change line 311, that is, curve_x = np.linspace(x[0], x[-1], (x[-1]-x[0])) to curve_x = np.linspace(x[0].astype(int), x[-1].astype(int), (x[-1].astype(int)-x[0].astype(int))) Then it will work.
@akshay-krishnan How did you manually linked libcuda.so?
The answer from @akshay-krishnan worked for me also, ln -s /usr/lib/x86_64-linux-gnu/libcuda.so anaconda3/envs/nerfstudio/lib/libcuda.so and not, export LIBRARY_PATH="/usr/local/cuda/lib64/stubs:$LIBRARY_PATH" It seems there is no clear-cut solution to this problem, right now.
Hi, The code should work fine. There might some difference with respect to the python version or similar to that. The error you are getting is not an uncommon error,...