File tree Expand file tree Collapse file tree 5 files changed +19
-6
lines changed
tensorflow_decision_forests Expand file tree Collapse file tree 5 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.9.0rc0 - 2024-02-26
4
+
5
+ ### Fix
6
+
7
+ - Fix max_depth, early stopping parameter documentation.
8
+ - Fix plotting contains conditions.
9
+
10
+ ### Features
11
+
12
+ - Compatibility with TensorFlow 2.16.0rc0.
13
+ - Using tf_keras instead tf.keras in examples, documentation.
14
+ - Support NAConditions for fast engine.
15
+
3
16
## 1.8.1 - 2023-11-17
4
17
5
18
### Fix
Original file line number Diff line number Diff line change 21
21
from setuptools .command .install import install
22
22
from setuptools .dist import Distribution
23
23
24
- _VERSION = "1.8.1 "
24
+ _VERSION = "1.9.0rc0 "
25
25
26
26
with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
27
27
long_description = fh .read ()
28
28
29
29
REQUIRED_PACKAGES = [
30
30
"numpy" ,
31
31
"pandas" ,
32
- "tensorflow~=2.15.0 " ,
32
+ "tensorflow~=2.16.0rc0 " ,
33
33
"six" ,
34
34
"absl_py" ,
35
35
"wheel" ,
Original file line number Diff line number Diff line change 51
51
52
52
"""
53
53
54
- __version__ = "1.8.1 "
54
+ __version__ = "1.9.0rc0 "
55
55
__author__ = "Mathieu Guillame-Bert"
56
56
57
- compatible_tf_versions = ["2.15.0 " ]
57
+ compatible_tf_versions = ["2.16.0rc0 " ]
58
58
__git_version__ = "HEAD" # Modify for release build.
59
59
60
60
from tensorflow_decision_forests .tensorflow import check_version
Original file line number Diff line number Diff line change 58
58
# ./tools/build_pip_package.sh ALL_VERSIONS_ALREADY_ASSEMBLED
59
59
#
60
60
# https://hub.docker.com/r/tensorflow/build/tags?page=1
61
- DOCKER=tensorflow/build:2.15 -python3.9
61
+ DOCKER=tensorflow/build:2.16 -python3.9
62
62
63
63
# Current directory
64
64
# Useful if Yggdrasil Decision Forests is available locally in a neighbor
Original file line number Diff line number Diff line change 28
28
#
29
29
# Usage example
30
30
#
31
- # RUN_TESTS=1 PY_VERSION=3.9 TF_VERSION=2.13 .0 ./tools/test_bazel.sh
31
+ # RUN_TESTS=1 PY_VERSION=3.9 TF_VERSION=2.15 .0 ./tools/test_bazel.sh
32
32
33
33
set -vex
34
34
You can’t perform that action at this time.
0 commit comments