Skip to content

Commit

Permalink
Prepare the 2.4.0 release (#1471)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikcs authored Nov 15, 2024
1 parent b0a3ae4 commit 11ead50
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 264 deletions.
2 changes: 1 addition & 1 deletion r-package/grf/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: grf
Title: Generalized Random Forests
Version: 2.3.2
Version: 2.4.0
Authors@R: c(
person("Julie", "Tibshirani", role = "aut", email = "[email protected]"),
person("Susan", "Athey", role = "aut"),
Expand Down
7 changes: 0 additions & 7 deletions r-package/grf/NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,15 @@ S3method(print,grf)
S3method(print,grf_tree)
S3method(print,rank_average_treatment_effect)
S3method(print,tuning_output)
export(average_late)
export(average_partial_effect)
export(average_treatment_effect)
export(best_linear_projection)
export(boosted_regression_forest)
export(causal_forest)
export(causal_survival_forest)
export(custom_forest)
export(generate_causal_data)
export(generate_causal_survival_data)
export(get_forest_weights)
export(get_leaf_node)
export(get_sample_weights)
export(get_scores)
export(get_tree)
export(grf_options)
Expand All @@ -53,9 +49,6 @@ export(regression_forest)
export(split_frequencies)
export(survival_forest)
export(test_calibration)
export(tune_causal_forest)
export(tune_instrumental_forest)
export(tune_regression_forest)
export(variable_importance)
importFrom(Matrix,Matrix)
importFrom(Rcpp,evalCpp)
Expand Down
104 changes: 0 additions & 104 deletions r-package/grf/R/deprecated.R

This file was deleted.

19 changes: 0 additions & 19 deletions r-package/grf/man/average_late.Rd

This file was deleted.

19 changes: 0 additions & 19 deletions r-package/grf/man/average_partial_effect.Rd

This file was deleted.

19 changes: 0 additions & 19 deletions r-package/grf/man/custom_forest.Rd

This file was deleted.

16 changes: 0 additions & 16 deletions r-package/grf/man/get_sample_weights.Rd

This file was deleted.

27 changes: 0 additions & 27 deletions r-package/grf/man/tune_causal_forest.Rd

This file was deleted.

31 changes: 0 additions & 31 deletions r-package/grf/man/tune_instrumental_forest.Rd

This file was deleted.

21 changes: 0 additions & 21 deletions r-package/grf/man/tune_regression_forest.Rd

This file was deleted.

9 changes: 9 additions & 0 deletions releases/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to `grf` will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.4.0] - 2024-11-??

### Fixed
- **IMPORTANT:** Make random seed behavior independent of the number of cores the forest is trained with. This fix means code from previous versions will produce slightly different results, even with the same random seed. A global package option `options(grf.legacy.seed)` is added for users who wish to exactly recover past results without reinstalling a previous grf version. [#1447](https://github.com/grf-labs/grf/pull/1447)
- Respect `num.threads` argument in internal debiasing weights estimation. [#1437](https://github.com/grf-labs/grf/pull/1437)
- Relax a minimum cluster size requirement in `boot_grf`. [#1412](https://github.com/grf-labs/grf/pull/1412)
- Ensure input dimensions of covariate matrix X is non-zero. [#1408](https://github.com/grf-labs/grf/pull/1408)
- Fix minor docstring typos. [#1406](https://github.com/grf-labs/grf/pull/1406), [#1420](https://github.com/grf-labs/grf/pull/1420), [#1443](https://github.com/grf-labs/grf/pull/1443)

## [2.3.2] - 2024-02-25

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions releases/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ For a big release, can also run `R CMD check --as-cran --run-donttest --use-valg

## Previous performance test results

**2.4.0**

This is only a minor release with minimal changes.

**2.3.2**

This is only a patch release with minor aesthetic R fixes.
Expand Down
Binary file added releases/grf_2.4.0.tar.gz
Binary file not shown.

0 comments on commit 11ead50

Please sign in to comment.