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)
- lasagne-draw/deepmodels/init.py
change followings
from . import confusionmatrix
from . import layers
from . import batchiterator
to follows;
import confusionmatrix
import layers
import batchiterator
- lasagne-draw/deepmodels/layers/init.py
change followings
from .base import *
from .draw import *
to as follows;
from lasagne.layers.base import *
from draw import *
- lasagne-draw/deepmodels/layers/draw.py
line 8
comment out from .. import logdists
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 confusionmatrixfrom . import layersfrom . import batchiteratorto follows;
import confusionmatriximport layersimport batchiteratorchange 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