Skip to content

Commit

Permalink
[PYDF] Release Version 0.1.0
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 601691299
  • Loading branch information
rstz authored and copybara-github committed Jan 26, 2024
1 parent 3d90960 commit b50b56c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion yggdrasil_decision_forests/port/python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
# Changelog

## HEAD
## 0.1.0 - 2024-01-25

### Features

- Added model validation evaluation (for GBTs) and OOB evaluation (for RFs).
- Expose winner-takes-all for Random Forests.
- Added model self evaluation.
- Added `ydf.from_tensorflow_decision_forests()` for importing TF-DF models.
- Allow feeding datasets as sequence of strings.

### Fixes

- Fixes a plotting issue for GBTs without validation loss

#### Release music

Flötenuhren von 1772 und 1793 - Vivace (Hob XIX:13). Joseph Haydn

## 0.0.8 - 2023-12-19

Expand Down
2 changes: 1 addition & 1 deletion yggdrasil_decision_forests/port/python/config/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from setuptools.command.install import install
from setuptools.dist import Distribution

_VERSION = "0.0.8"
_VERSION = "0.1.0"

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
Expand Down
2 changes: 1 addition & 1 deletion yggdrasil_decision_forests/port/python/ydf/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version = "0.0.8"
version = "0.1.0"

0 comments on commit b50b56c

Please sign in to comment.