Software
workflows

workflows

Modeling Workflows

R

The workflows package bundles together pre-processing recipes, modeling specifications, and post-processing steps into a single object for machine learning workflows in R. It integrates with the tidymodels ecosystem, particularly the recipes and parsnip packages, to streamline the modeling process.

This package solves the problem of managing multiple separate objects (like prepared recipes and fitted models) in your workspace and ensures they stay paired correctly. It simplifies the modeling process by allowing you to prepare data, fit models, and make predictions through a single unified interface, reducing the risk of mixing up model/recipe combinations. The package also integrates with the tune package to simplify hyperparameter tuning workflows.

Contributors