Closed ChinookPDX closed 8 years ago
The first issue with it installing nolearn-0.6a0.dev0
: that's fine and expected.
For the second issue with the error you're getting: You forgot to include the last lines of the traceback.
Thanks. Here is the portion of the Traceback I see in the console. It ended up being too long, I saved it to a file.
I have:
theano 0.8.0 lasagne 0.2.dev1 scipy 0.16.1
This may be an issue with your installation. Have you tried running the Lasagne examples?
Thanks again. It looks like I can't run that Lasagne example either. I'll try to get Lasagne running first and report back here. Do we meed to have lasagne 0.2.dev1 for nolearn?
I got it finally, It was a Theano installation issue. In the Anaconda command prompt, I did the following and fixed my issue:
conda install mingw libpython
Thanks.
I'm using the following to install nolearn 0.7 -- I'm using Anaconda with win7 64 bit.
pip install -r https://raw.githubusercontent.com/dnouri/nolearn/master/requirements.txt pip install git+https://github.com/dnouri/nolearn.git@master#egg=nolearn==0.7.git
But instead, it installs nolearn-0.6a0.dev0.
I'm trying to run this code (data file attached):
column_3C.txt
And it gives me the following error (part of it here):
runfile('C:/Users/Chin/.spyder2/temp.py', wdir='C:/Users/Chin/.spyder2') C:\Users\Chin\Anaconda2\lib\site-packages\theano\tensor\signal\downsample.py:6: UserWarning: downsample module has been moved to the theano.tensor.signal.pool module. "downsample module has been moved to the theano.tensor.signal.pool module.") WARNING (theano.gof.compilelock): Overriding existing lock by dead process '6388' (I am process '7840') WARNING:theano.gof.compilelock:Overriding existing lock by dead process '6388' (I am process '7840') Traceback (most recent call last):
File "", line 1, in
runfile('C:/Users/Chin/.spyder2/temp.py', wdir='C:/Users/Chin/.spyder2')
File "C:\Users\Chin\Anaconda2\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 699, in runfile execfile(filename, namespace)
File "C:\Users\Chin\Anaconda2\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 74, in execfile exec(compile(scripttext, filename, 'exec'), glob, loc)
File "C:/Users/Chin/.spyder2/temp.py", line 59, in
clf_.fit(X_dev_scaled, Y_dev)
File "C:\Users\Chin\Anaconda2\lib\site-packages\nolearn\lasagne\base.py", line 521, in fit self.initialize()
File "C:\Users\Chin\Anaconda2\lib\site-packages\nolearn\lasagne\base.py", line 361, in initialize self.y_tensor_type,
Thanks.