Coder Social home page Coder Social logo

Comments (6)

koaning avatar koaning commented on September 23, 2024 1

This is a good question. I might argue that:

  1. this could be a setting
  2. the base behaviour should probably be that you don't use the predictions from a previous model, rather that you the same features and that you had before (depending on other transformations)

from scikit-lego.

MaxHalford avatar MaxHalford commented on September 23, 2024

Not sure this is what you're looking for but I wrote a generic gradient library called starboost from which you might want to inspire yourself!

from scikit-lego.

koaning avatar koaning commented on September 23, 2024

The idea here is to implement a pipeline like;

from sklego.transformers import RandomAdder

from sklearn.preprocessing import StandardScaler
from sklearn.linear_model import LogisticRegression
from sklearn.ensemble import RandomForest 

...

mod = BoosterPipeline([
    ("scale", StandardScaler()),
    ("random_noise", RandomAdder()),
    ("global_model", LogisticRegression(solver='lbfgs')), 
    ("residual_model", RandomForest())
])

...

It's more of a UI thing. The global_model will first run and then the BoosterPipeline should recognise that the residuals need to be picked up.

from scikit-lego.

MaxHalford avatar MaxHalford commented on September 23, 2024

So it is still like some form of stacking? Are you going to reuse the features that the global used, or are you going to base yourself on the predictions?

from scikit-lego.

koaning avatar koaning commented on September 23, 2024

I am wondering if this feature might break up the workflow too much. Instead it might also work if we just have a Booster-model that accepts many different models.

from scikit-lego.

MBrouns avatar MBrouns commented on September 23, 2024

I tried to build something like this quite a while back and remember it took a lot of changes in the normal pipeline behaviour. A Booster meta-model might be simpler

from scikit-lego.

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.