Skip to content

Commit af76334

Browse files
achoumcopybara-github
authored andcommitted
Internal change
PiperOrigin-RevId: 461446728
1 parent d79e984 commit af76334

File tree

5 files changed

+165
-91
lines changed

5 files changed

+165
-91
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.2.7 - 2022-06-15
4+
5+
### Features
6+
7+
- Multithreading of the oblique splitter for gradient boosted tree models.
8+
- Support for pure serving model i.e. model containing only serving data.
9+
- Add "edit_model" cli tool.
10+
11+
### Fix
12+
13+
- Remove bias toward low outcome in uplift modeling.
14+
315
## 0.2.6 - 2022-05-17
416

517
### Features

configure/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from setuptools.command.install import install
2121
from setuptools.dist import Distribution
2222

23-
_VERSION = "0.2.6"
23+
_VERSION = "0.2.7"
2424

2525
with open("README.md", "r", encoding="utf-8") as fh:
2626
long_description = fh.read()

documentation/known_issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The following table shows the compatibility between
4747

4848
tensorflow_decision_forests | tensorflow
4949
--------------------------- | ----------
50-
0.2.6 | 2.9.1
50+
0.2.6 - 0.2.7 | 2.9.1
5151
0.2.5 | 2.9
5252
0.2.4 | 2.8
5353
0.2.1 - 0.2.3 | 2.7

tensorflow_decision_forests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
5252
"""
5353

54-
__version__ = "0.2.6"
54+
__version__ = "0.2.7"
5555
__author__ = "Mathieu Guillame-Bert"
5656

5757
compatible_tf_versions = ["2.9.1"]

0 commit comments

Comments
 (0)