Ivan Felipe Rodriguez
Ivan Felipe Rodriguez
Hey @BRadFPV did you get it to work ? Something that worked for me was adding this line to PID-Analyzer.py at the beginning: import matplotlib matplotlib.use('agg') Maybe this works for...
hey @BRadFPV could you put your full log again. I will try to replicate.
@BRadFPV Can you run this line : pip install pandas and try again?
It seems that your system is seeing a different python. Can you do this: which python just to check you are installing to the same python you are running the...
So yes, it is using a different python. Your system is running : /opt/local/bin/python, but your pip ins running on /usr/local/lib/python2.7/. Let's try this : python -m ensurepip That makes...
I made a little very simple script so you can put your data in the right format. Check it out: https://github.com/piperod/DeblurGAN/blob/master/datasets/split_train_test_val.py run this script, then run combine script. Then you...
@zhihaolee were you able to fix the problem with your idea? I am stuck on training too, it is not learning properly.
This happens to me also. I tried to put an iterator but It is taking 8 seconds per image. I did it this way: ``` for input_image in imagelist: tic...
Hi @albertchristianto , There is a couple of tricks I have tried to improve the performance. 1. If you notice in the config file, there is this parameter for scale,...
Yes that still happens to me too. I think for some reason the model get flush from the GPU memory. But not really sure about it. It might be worthy...