Daniel Nouri
Daniel Nouri
> Okay, so you would suggest to use this if extra data needs to be saved? Hmm, just had another look and it seems that at least `palladium.persistence.Database` assumes it...
Last time I checked, setuptools didn't allow to have top-level and subpackage to be different projects. So you can have two software projects with packages called `lasagne.core` and `lasagne.recipes`, but...
I'm wondering if these should really be recipes. Maybe a small add-on library is better suited? Just a serving suggestion.
> The following is in the file pylearn2/setup.py.. > > Basically it will hang forever because it is expecting an input as > shown below... > > As shown below?...
I've updated the requirements, can you run this again: `pip install -r https://raw.githubusercontent.com/dnouri/kfkd-tutorial/master/requirements.txt`
You may have experienced this error because the Theano version wasn't compatible with your version of CUDA. I've updated the requirements. Can you run this again and see if this...
@kashif, any ideas?
Sorry about that. You could either try to downgrade Numpy. (Somewhere it says that the breaking change was added in Numpy version 1.16.) Or you can try to upgrade Theano....
Link in the previous comment is now broken. Here's a working one: https://github.com/tensorflow/models/blob/master/inception/inception/slim/README.md
I think the right term for those chunks of data that you want to load into memory one after the other is 'batch' (versus minibatch). There's actually two cases hidden...