-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some errors to run mnist_draw.py in examples #1
Comments
Hey, I have same error as you had. Did you solve the issue or not? Thanks |
I also go the same errors, and the fixes above seem to work. Except there are more errors to deal with as well. On line 35 of draw.py I'm getting
Changing 35 to
silences this one. But then I am also getting an error on line 70
I found this link that suggested this was because of an api change in lasagne. So I changed it to
But now I get
It looks like this is being called from line 81 of mnist_draw.py
But I'm not sure where to go next... |
@aferriss here are some more changes I made
and it starts training in my case. |
Hi :)
Thanks a lot for your codes.
I tried to run mnist_draw.py in examples folder after installation, and I got some errors.
I solved the issues by following modifications. (I installed theano and lasagne with sudo)
change followings
from . import confusionmatrix
from . import layers
from . import batchiterator
to follows;
import confusionmatrix
import layers
import batchiterator
change followings
from .base import *
from .draw import *
to as follows;
from lasagne.layers.base import *
from draw import *
line 8
comment out
from .. import logdists
The text was updated successfully, but these errors were encountered: