Ibraheem Al-Dhamari

Results 50 comments of Ibraheem Al-Dhamari

I have the same error in Ubuntu16, The pythonpath was not defined correctly. I created a demo file as the run scripts in the examples folder, everything works. pdnndir=/pdnn #...

A simpler solution is to use the correct versions: pip uninstall -y tensorflow pip install tensorflow-gpu==1.14.0 pip uninstall keras pip install keras==2.1.2

Issues related to image size: resize the images to one channel (256,304) e.g. import os from PIL import Image newSize = (256, 304) dirNms=["trainA","trainB","testA","testB"] for d in dirNms: fnms =...

Issues related to black output image: the output of the model has a range [-1,1]. It needs to be rescaled before saving it e.g. synt_A = synthetic_images_A[i] synt_A = (...

@simontomaskarlsson > Image sizes are tricky since the layers in the models automatically add padding, as default behaviour by keras, which results in changes in output sizes. can't we change...

@prasser @srcds sounds interesting, I will have a look at this next week.

@prasser When a user select random records by clicking on "Select Randomly", a view output does not reflect that e.g. by selecting 0.80: System.out.println("this.model.getOutput().getNumRows() : " + this.model.getOutput().getNumRows()); System.out.println("this.model.getOutput().getView().getNumRows() :...

Thanks for concern and quick reply. I am using python 2.7 (I built all other tools using it). Is there a way to make it works in python 2.7? or...

Thanks for explaining, I will try your suggestion. I am using pip and Ubuntu 16 system.

thanks for the info. I tried the coronal idea but I keep getting this error: WARNING: error reading MR params Index exceeds matrix dimensions. Error in MRIread (line 100) tr...