diff --git a/DESCRIPTION b/DESCRIPTION index 8754b8114..3d90fb7c5 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: tune Title: Tidy Tuning Tools -Version: 1.0.0.9000 +Version: 1.0.1 Authors@R: c( person("Max", "Kuhn", , "max@rstudio.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2402-136X")), diff --git a/NEWS.md b/NEWS.md index 522de4521..1a56e89d0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# tune (development version) +# tune 1.0.1 * `last_fit()`, `fit_resamples()`, `tune_grid()`, and `tune_bayes()` do not automatically error if the wrong type of `control` object is passed. If the passed control object is not a superset of the one that is needed, the function will still error. As an example, passing `control_grid()` to `tune_bayes()` will fail but passing `control_bayes()` to `tune_grid()` will not. ([#449](https://github.com/tidymodels/tune/issues/449)) @@ -8,11 +8,9 @@ * The `control_bayes()` got a new argument `verbose_iter` that is used to control the verbosity of the Bayesian calculations. This change means that the `verbose` argument is being passed to `tune_grid()` to control its verbosity. - * The `control_last_fit()` function gained an argument `allow_par` that defaults to `FALSE`. This change addresses failures after `last_fit()` using modeling engines that require native serialization, and we anticipate little to no increase in time-to-fit resulting from this change. (#539, tidymodels/bonsai#52) -* `show_notes()` does a better jobs of... showing notes. - +* `show_notes()` does a better jobs of... showing notes. (#558) # tune 1.0.0 diff --git a/README.md b/README.md index a9b0869b0..a5ed27305 100644 --- a/README.md +++ b/README.md @@ -44,23 +44,23 @@ tune. Good places to begin include: -- [Getting started with cell segmentation - data](https://www.tidymodels.org/start/tuning/) -- [Getting started with Ames housing - data](https://tune.tidymodels.org/articles/getting_started.html) +- [Getting started with cell segmentation + data](https://www.tidymodels.org/start/tuning/) +- [Getting started with Ames housing + data](https://tune.tidymodels.org/articles/getting_started.html) More advanced resources available are: -- [Basic grid search for an SVM - model](https://www.tidymodels.org/learn/work/tune-svm/) -- [Iterative Bayesian optimization of a classification - model](https://www.tidymodels.org/learn/work/bayes-opt/) -- [Advanced text mining - example](https://tune.tidymodels.org/articles/extras/text_analysis.html) -- [Notes on optimizations and parallel - processing](https://tune.tidymodels.org/articles/extras/optimizations.html) -- [Details on acquisition function for scoring parameter - combinations](https://tune.tidymodels.org/articles/acquisition_functions.html) +- [Basic grid search for an SVM + model](https://www.tidymodels.org/learn/work/tune-svm/) +- [Iterative Bayesian optimization of a classification + model](https://www.tidymodels.org/learn/work/bayes-opt/) +- [Advanced text mining + example](https://tune.tidymodels.org/articles/extras/text_analysis.html) +- [Notes on optimizations and parallel + processing](https://tune.tidymodels.org/articles/extras/optimizations.html) +- [Details on acquisition function for scoring parameter + combinations](https://tune.tidymodels.org/articles/acquisition_functions.html) ## Contributing @@ -68,18 +68,18 @@ This project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms. -- For questions and discussions about tidymodels packages, modeling, - and machine learning, please [post on RStudio - Community](https://community.rstudio.com/new-topic?category_id=15&tags=tidymodels,question). +- For questions and discussions about tidymodels packages, modeling, and + machine learning, please [post on RStudio + Community](https://community.rstudio.com/new-topic?category_id=15&tags=tidymodels,question). -- If you think you have encountered a bug, please [submit an - issue](https://github.com/tidymodels/tune/issues). +- If you think you have encountered a bug, please [submit an + issue](https://github.com/tidymodels/tune/issues). -- Either way, learn how to create and share a - [reprex](https://reprex.tidyverse.org/articles/articles/learn-reprex.html) - (a minimal, reproducible example), to clearly communicate about your - code. +- Either way, learn how to create and share a + [reprex](https://reprex.tidyverse.org/articles/articles/learn-reprex.html) + (a minimal, reproducible example), to clearly communicate about your + code. -- Check out further details on [contributing guidelines for tidymodels - packages](https://www.tidymodels.org/contribute/) and [how to get - help](https://www.tidymodels.org/help/). +- Check out further details on [contributing guidelines for tidymodels + packages](https://www.tidymodels.org/contribute/) and [how to get + help](https://www.tidymodels.org/help/).