algila

Results 9 comments of algila

I do believe I solved using ssd300MobileNet, I changed in file `videotest_example.py` the following code line ``` # Change this path if you want to use your own trained weights...

Hi, may I recomment the users uploading their weights in folder "YourFineTunedWeights" to communicate also the dataset used doing training ? It should be beneficial for the other users doing...

I have a CNN perfectly working and trained. At the end of the training I save the parameters into a file named "file_modelCNN". Next step I want to upload the...

Sorry it still doesn't work, I report a bigger portion of the code ``` cnn = NeuralNet( layers=[ ('input', layers.InputLayer), ('conv1', layers.Conv2DLayer), ('pool1', layers.MaxPool2DLayer), ('conv2', layers.Conv2DLayer), ('pool2', layers.MaxPool2DLayer), ('conv3', layers.Conv2DLayer),...

In effect 'pad is working just not documented in nolearn not so important. It is the 'flip_filters' that is not working. hereafter the portion of the code where I define...

I have nolearn 0.6.1 Theano 0.8.2 Lasagne 0.1 but in my version the file into the package folder lasagne/layers/conv.py has not into the class BaseConvLayer the 'flip_filter'. It is mentioned...

I solved, the reason was exactly the old lasagne version. Using: pip install --upgrade https://github.com/Theano/Theano/archive/master.zip pip install --upgrade https://github.com/Lasagne/Lasagne/archive/master.zip I installed lasagne 0.2dev2 with also Theano 0.9dev4 and now it...

Hi, exactly on those lines of code I have the following error `IndexError: list index out of range` with or without the above suggestion. Why number 4 is so special...