Giter Site home page Giter Site logo

Comments (2)

Optimox avatar Optimox commented on July 24, 2024

hello @xywust2014,

There are two distinct metrics to consider:

  • the loss function that your model is trained to minimize
  • the early stopping metric, which is used to select the best epoch and stop the training when no further improvement has been seen.

Currently you can easily change the loss function by using loss_fn parameter during the fit, you can pick any loss function from pytorch https://pytorch.org/docs/stable/nn.html or even create your own if you like. By default TabNetClassifier uses cross entropy while TabnetRegressor uses Mean Squarred Error.

About the early stopping metric, you can't change it easily with the current implementation, this will be improved in the future. For binary classification the early stop metric (which is the metric that the training displays) is AUC. For multiclass classfication it's the accuracy. For regression it's the mean squarred error.

You can easily access your training loss and early stop metrics by calling clf.history['train']['loss'] or clf.history['train']['metric'] or with the same command for the valid set clf.history['valid']['metric']

Hope this helps!

from tabnet.

xywust2014 avatar xywust2014 commented on July 24, 2024

hello @xywust2014,

There are two distinct metrics to consider:

  • the loss function that your model is trained to minimize
  • the early stopping metric, which is used to select the best epoch and stop the training when no further improvement has been seen.

Currently you can easily change the loss function by using loss_fn parameter during the fit, you can pick any loss function from pytorch https://pytorch.org/docs/stable/nn.html or even create your own if you like. By default TabNetClassifier uses cross entropy while TabnetRegressor uses Mean Squarred Error.

About the early stopping metric, you can't change it easily with the current implementation, this will be improved in the future. For binary classification the early stop metric (which is the metric that the training displays) is AUC. For multiclass classfication it's the accuracy. For regression it's the mean squarred error.

You can easily access your training loss and early stop metrics by calling clf.history['train']['loss'] or clf.history['train']['metric'] or with the same command for the valid set clf.history['valid']['metric']

Hope this helps!

Thank you! Optimox. This helps a lot.

from tabnet.

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.