> Le 28 août 2018 à 14:43, Ab Ab <[email protected]> a écrit : > > because I get this error AttributeError: type object > 'MiniBatchIteratorConstantBatchSize' has no attribute 'dataset' >
This error is probably because MiniBatchIteratorConstantBatchSize doesn't properly support pickle, but there could be other reasons. This isn't a Theano problem so I can't help with that. You might want to look into using another mechanism to serialize models. At the very least I know that Theano supports pickle for compiled functions. Arnaud > > I have searched a lot but I could not find any better way to predict with new > dataset on a saved model in python. > > On Tue, Aug 28, 2018 at 2:13 PM Arnaud Bergeron <[email protected] > <mailto:[email protected]>> wrote: > Why are you trying to do this? > >> from MiniBatchIteratorConstantBatchSize import dataset > > This cannot work with the code you posted since > MiniBatchIteratorConstantBatchSize is not a module. That has nothing to to > with Theano, but rather is due to how python works. > > Arnaud > > -- > > --- > You received this message because you are subscribed to the Google Groups > "theano-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. > > -- > > --- > You received this message because you are subscribed to the Google Groups > "theano-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. -- --- You received this message because you are subscribed to the Google Groups "theano-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
