Git Product home page Git Product logo

Comments (4)

dnouri avatar dnouri commented on July 20, 2024

One way to do this is to subclass NeuralNet and override the train_test_split method to use a StandardScaler in the way you describe. In this method, store the StandardScaler as an attribute on self, and access in the predict_proba method; that you'll have to override as well.

I'll be happy to hear any suggestions on making this more dynamic. In #42, I briefly discussed making train_test_split overridable with a parameter, but in your case, it seems you'd need to subclass for predict_proba anyway.

from nolearn.

hjweide avatar hjweide commented on July 20, 2024

Thanks for getting back to me. I think your suggestion of subclassing NeuralNet and overriding train_test_split and predict_proba is perfectly fine for my situation.

An alternative, but more involved solution, could be to add a standard_scaler=None parameter to the NeuralNet. Then, in train_test_split, one could check if self.standard_scaler is not None and then use it to fit_transform the training set X_train and then transform the validation set X_valid. The same check and transform would have to be done in predict_proba.

from nolearn.

hjweide avatar hjweide commented on July 20, 2024

For my use case, I decided that it would be simpler to implement it as described in my post above. Here is a link to the code in case anyone else wants to do something similar: hjweide@7f30634

Any suggestions for improvements are also welcome.

from nolearn.

dnouri avatar dnouri commented on July 20, 2024

The TrainSplit interface has since been added which should give you a good opportunity to apply correct scaling.

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.