Rehan Ali
Results
2
comments of
Rehan Ali
I tried this with the following code: ``` % after running test_example_CNN.m img = squeeze(test_x(:,:,1)); net = cnnff(cnn,img); ``` And got the following error: ``` Matrix dimensions must agree. Error...
The problem is because cnnff is looking for a 3rd dimension, and the single image case yields 2 dimensions only. As far as I can see, you can't artificially add...