Skip to content

Commit

Permalink
Merge pull request #4 from google/test_374201786
Browse files Browse the repository at this point in the history
Release of v0.1.1
  • Loading branch information
achoum authored May 17, 2021
2 parents 14210e6 + 5373a4d commit 3c8d9a6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.1.1 - 2021-05-17

### Features

- Migration to TensorFlow 2.5.0.

## 0.1.0 - 2021-05-11

Initial release of Yggdrasil Decision Forests.
Expand Down
6 changes: 3 additions & 3 deletions documentation/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Once Bazel is installed, clone the github repository and start the compilation:

```shell
git clone https://github.com/google/yggdrasil-decision-forests.git
cd yggdrasil_decision_forests
cd yggdrasil-decision-forests

bazel build //yggdrasil_decision_forests/...:all --config=<platform config>
```
Expand All @@ -71,7 +71,7 @@ For example:

```shell
git clone https://github.com/google/yggdrasil-decision-forests.git
cd yggdrasil_decision_forests
cd yggdrasil-decision-forests

bazel build //yggdrasil_decision_forests/cli/...:all --config=linux_cpp17 --config=linux_avx2
```
Expand All @@ -97,7 +97,7 @@ pip is not available on the paths used by bazel.
set PYTHON_BIN_PATH=C:\Python38\python.exe

git clone https://github.com/google/yggdrasil-decision-forests.git
cd yggdrasil_decision_forests
cd yggdrasil-decision-forests

bazel build //yggdrasil_decision_forests/cli/...:all --config=windows_cpp17 --config=windows_avx2
```
Expand Down
14 changes: 3 additions & 11 deletions third_party/tensorflow/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,7 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def deps():
http_archive(
name = "org_tensorflow",
# 2.4.1
#sha256 = "b91ec194ddf6c4a5a2f9d1db4af4daab0b187ff691e6f88142413d2c7e77a3bb",
#strip_prefix = "tensorflow-2.4.1",
#urls = ["https://github.com/tensorflow/tensorflow/archive/v2.4.1.zip"],
# v2.5.0-rcx
sha256 = "f7ad0a488559ee01f042a967c065482b074e11afd0299facbd8dc0cba9ae3fa9",
strip_prefix = "tensorflow-2.5.0-rc3",
urls = ["https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.5.0-rc3.zip"],
# head
#urls = ["https://github.com/tensorflow/tensorflow/archive/master.zip"],
#strip_prefix = "tensorflow-master",
sha256 = "e3d0ee227cc19bd0fa34a4539c8a540b40f937e561b4580d4bbb7f0e31c6a713",
strip_prefix = "tensorflow-2.5.0",
urls = ["https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.5.0.zip"],
)

0 comments on commit 3c8d9a6

Please sign in to comment.