Git Product home page Git Product logo

Comments (3)

dnouri avatar dnouri commented on July 20, 2024

Hey Alex, can you provide a little more background to this? I've checked the discussion you link to, but what's exactly the motivation for not storing these particular Theano functions? After all, we're still keeping the _output_layer around, which looks like it's the bulkier part. In fact, I've tried to pickle a small net and the difference in pickle size was neglectable. Maybe you've had different results with your nets? Or else, is there any other reason not to pickle these?

from nolearn.

cancan101 avatar cancan101 commented on July 20, 2024

I might start by turning the question around: is there any reason TO pickle these values? The network is fully specified without needing these functions (ie they are purely derived values from other values that are already being stored). In saving these functions, you are basically creating larger pickle files and storing no additional information.

The downsides of pickling though are: the generated function may be specific to the settings of the computer used to fit (ie CPU vs GPU, optimization levels) and you actually do want to re-compile the function on unpickling. A example of this is a fit on a GPU cluster, save the fits and then reload them on a machine with CPU only.

The more pressing issue is that some of the Theano function simply will not pickle using the default pickling library. Sure there is dill, etc, but this seems like a hack in order to save a derived value. At the very least I would argue that the default is to just save the bear minimum to reload the net. If the user wants to "cache" the functions and save them (perhaps to avoid a recompile), that should be an opt in.

from nolearn.

dnouri avatar dnouri commented on July 20, 2024

Very good points. Could you check and see if the pull request in #37 sufficiently solves this issue for you?

from nolearn.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.