Skip to content

Commit

Permalink
Prepare release of TF-DF 1.9.0rc0 and YDF 1.9.0rc0
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 610665881
  • Loading branch information
rstz authored and copybara-github committed Feb 27, 2024
1 parent bfcdd7b commit 50a3f02
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Changelog

## HEAD
## 1.9.0rc0 - 2024-02-26

### Feature

- Add "parallel_trials" parameter in the hyper-parameter tuner to control the
number of trials to run in parallel.
- Add "parallel_trials" parameter in the hyper-parameter tuner to control the number of trials to run in parallel.
- Add support for custom losses.

## 1.8.0 - 2023-11-17

Expand Down
13 changes: 8 additions & 5 deletions documentation/public/docs/hyperparameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ learner: "RANDOM_FOREST"
num_trees: 1000
}
```

## GRADIENT_BOOSTED_TREES

A [Gradient Boosted Trees](https://statweb.stanford.edu/~jhf/ftp/trebst.pdf)
Expand Down Expand Up @@ -295,7 +294,8 @@ reasonable time.
- **Type:** Integer **Default:** 6 **Possible values:** min:-1

- Maximum depth of the tree. `max_depth=1` means that all trees will be roots.
Negative values are ignored.
`max_depth=-1` means that tree depth is not restricted by this parameter.
Values <= -2 will be ignored.

#### [max_num_nodes](https://github.com/google/yggdrasil-decision-forests/blob/main/yggdrasil_decision_forests/learner/decision_tree/decision_tree.proto)

Expand Down Expand Up @@ -698,7 +698,8 @@ reasonable time.
- **Type:** Integer **Default:** 16 **Possible values:** min:-1

- Maximum depth of the tree. `max_depth=1` means that all trees will be roots.
Negative values are ignored.
`max_depth=-1` means that tree depth is not restricted by this parameter.
Values <= -2 will be ignored.

#### [max_num_nodes](https://github.com/google/yggdrasil-decision-forests/blob/main/yggdrasil_decision_forests/learner/decision_tree/decision_tree.proto)

Expand Down Expand Up @@ -983,7 +984,8 @@ The hyper-parameter protobuffers are used with the C++ and CLI APIs.
- **Type:** Integer **Default:** 16 **Possible values:** min:-1

- Maximum depth of the tree. `max_depth=1` means that all trees will be roots.
Negative values are ignored.
`max_depth=-1` means that tree depth is not restricted by this parameter.
Values <= -2 will be ignored.

#### [max_num_nodes](https://github.com/google/yggdrasil-decision-forests/blob/main/yggdrasil_decision_forests/learner/decision_tree/decision_tree.proto)

Expand Down Expand Up @@ -1165,7 +1167,8 @@ The hyper-parameter protobuffers are used with the C++ and CLI APIs.
- **Type:** Integer **Default:** 6 **Possible values:** min:-1

- Maximum depth of the tree. `max_depth=1` means that all trees will be roots.
Negative values are ignored.
`max_depth=-1` means that tree depth is not restricted by this parameter.
Values <= -2 will be ignored.

#### [max_unique_values_for_discretized_numerical](https://github.com/google/yggdrasil-decision-forests/blob/main/yggdrasil_decision_forests/learner/distributed_gradient_boosted_trees/distributed_gradient_boosted_trees.proto)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import "yggdrasil_decision_forests/learner/abstract_learner.proto";
import "yggdrasil_decision_forests/learner/distributed_decision_tree/dataset_cache/dataset_cache.proto";
import "yggdrasil_decision_forests/learner/distributed_decision_tree/load_balancer/load_balancer.proto";
import "yggdrasil_decision_forests/learner/gradient_boosted_trees/gradient_boosted_trees.proto";
import "yggdrasil_decision_forests/model/gradient_boosted_trees/gradient_boosted_trees.proto";

// Training configuration for the Distributed Gradient Boosted Trees algorithm.
message DistributedGradientBoostedTreesTrainingConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ package yggdrasil_decision_forests.model.distributed_gradient_boosted_trees.prot
import "yggdrasil_decision_forests/dataset/data_spec.proto";
import "yggdrasil_decision_forests/learner/abstract_learner.proto";
import "yggdrasil_decision_forests/learner/decision_tree/decision_tree.proto";
import "yggdrasil_decision_forests/learner/distributed_decision_tree/dataset_cache/dataset_cache.proto";
import "yggdrasil_decision_forests/learner/distributed_decision_tree/load_balancer/load_balancer.proto";
import "yggdrasil_decision_forests/learner/distributed_decision_tree/training.proto";
import "yggdrasil_decision_forests/model/decision_tree/decision_tree.proto";
Expand Down
1 change: 0 additions & 1 deletion yggdrasil_decision_forests/model/abstract_model.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ syntax = "proto2";

package yggdrasil_decision_forests.model.proto;

import "yggdrasil_decision_forests/dataset/data_spec.proto";
import "yggdrasil_decision_forests/dataset/weight.proto";
import "yggdrasil_decision_forests/model/hyperparameter.proto";

Expand Down

0 comments on commit 50a3f02

Please sign in to comment.