Git Product home page Git Product logo

Comments (3)

cancan101 avatar cancan101 commented on July 2, 2024

I am currently using this:

class NeuralNetFix(NeuralNet):
    def train_test_split(self, X, y, eval_size):
        assert eval_size is None
        X_train = X
        y_train = y
        X_valid = self.X_valid
        y_valid = self.y_valid
        if not self.regression and self.use_label_encoder:
            y_valid = self.enc_.transform(y_valid).astype(np.int32)
        return X_train, X_valid, y_train, y_valid

I then handle the train_test_split myself.

UPDATE: I no longer read X_valid and y_valid from self.

from nolearn.

dnouri avatar dnouri commented on July 2, 2024

@cancan101 To answer your first question: You'll notice that NeuralNet.train_test_split uses StratifiedKFold for classification tasks. That's different to what sklearn's train_test_split would give you.

But maybe the stratified split isn't all that important, and we can just use an overridable train_test_split (component) by default.

from nolearn.

dnouri avatar dnouri commented on July 2, 2024

I think we can merge this discussion with #42, and close this one. Also consider #45 when thinking about a better way to override the train_test_split method.

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.