History log of /external/tensorflow/tensorflow/contrib/boosted_trees/lib/trees/decision_tree.cc
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
466040ca83a29d9842c4f44b56f51e99a16083dc 17-Nov-2017 A. Unique TensorFlower <gardener@tensorflow.org> Renaming feature_id to dimension_id in dense float split

PiperOrigin-RevId: 176055428
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/trees/decision_tree.cc
8357c3164689ed2ce5df4df69ef7439b3b2fce82 25-Oct-2017 A. Unique TensorFlower <gardener@tensorflow.org> First part of the refactoring allowing sparse multivalent feature columns.
This change extends the split proto to allow feature ids within the feature columns.

PiperOrigin-RevId: 173403860
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/trees/decision_tree.cc
3f92cad88767b9e0d4febe4e02ad3c31d02d5daa 28-Sep-2017 A. Unique TensorFlower <gardener@tensorflow.org> PiperOrigin-RevId: 170265856
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/trees/decision_tree.cc
e2e3a943c0a28b7656325acb3fcd035743d55ea0 26-Sep-2017 Shanqing Cai <cais@google.com> Merge changes from github.
END_PUBLIC

---
Commit 1e1b3d902 authored by Pete Warden<pete@petewarden.com>
Committed by gunan<gunan@google.com>:
Changed output directory for Pi CI build to fix permissions problem with nightlies (#13257)

* Fix for RTLD_GLOBAL breakage of Pi builds, and removed Eigen version change for Pi that's no longer needed

* Fixed Pi Zero OpenBLAS build problems and tidied up directories used

* More robust checks in Pi build script

* Changed output directory for Pi CI build to fix permissions problem

---
Commit fe3a2e65c authored by Yan Facai (???)<facai.yan@gmail.com>
Committed by drpngx<drpngx@users.noreply.github.com>:
check invalid string type for dest_nodes in extract_sub_graph (#13057)

* BUG: check str type

* TST: add unit test

* CLN: remove list check

* CLN: use warning

* CLN: 2 indent

* CLN: raise TypeError if not list

* CLN: check string only

---
Commit 225ab7629 authored by Jean Wanka<jm.wanka@gmail.com>
Committed by Jean Wanka<jm.wanka@gmail.com>:
Fix polynomial decay with cycle for global step=0

For polynomial decay with cycle=True the learning rate at
step 0 becomes NaN, because in the process of calculating it we
devide by 0. This change should fix it, by setting the multiplier
for the decay steps to one for global_step=0.

---
Commit 286f57061 authored by Bjarke Hammersholt Roune<broune@google.com>
Committed by TensorFlower Gardener<gardener@tensorflow.org>:
Make Service::TransferToClient not attempt to manipulate the literal when the transfer failed, preventing a crash and allowing the caller to see the reason for the failed transfer.

PiperOrigin-RevId: 169770126

---
Commit e0501bc4d authored by Yong Tang<yong.tang.github@outlook.com>
Committed by Shanqing Cai<cais@google.com>:
Fix GRUBlockCell parameter naming inconsistency (#13153)

* Fix GRUBlockCell parameter naming inconsistency

This fix tries to fix the issue in 13137 where
parameter `cell_size` is used instead of `num_units`.
This is inconsistent with other RNN cells.

This fix adds support of `num_units` while at the same
time maintains backward compatiblility for `cell_size`.

This fix fixes 13137.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>

* Add `@deprecated_args` for 'cell_size' in `GRUBlockCell`

This commit adds `@deprecated_args` for 'cell_size' in `GRUBlockCell`

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>

* Address review comment

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>

---
Commit 02a2eba05 authored by Pete Warden<pete@petewarden.com>
Committed by gunan<gunan@google.com>:
Fix for RTLD_GLOBAL breakage of Pi builds, and removed Eigen version change that's no longer needed (#13251)

* Fix for RTLD_GLOBAL breakage of Pi builds, and removed Eigen version change for Pi that's no longer needed

* Fixed Pi Zero OpenBLAS build problems and tidied up directories used

* More robust checks in Pi build script

---
Commit 8ef722253 authored by Sanjoy Das<sanjoy@google.com>
Committed by TensorFlower Gardener<gardener@tensorflow.org>:
Remove a redundant setName.

The EmitComputation should have emitted a function with the right name, so use a
CHECK instead.

PiperOrigin-RevId: 169764856

---
Commit 1b94147dc authored by Neal Wu<wun@google.com>
Committed by TensorFlower Gardener<gardener@tensorflow.org>:
Fix broken GitHub links in tensorflow and tensorflow_models resulting from The Great Models Move (a.k.a. the research subfolder)

PiperOrigin-RevId: 169763373

---
Commit b1ada5f0c authored by Justine Tunney<jart@google.com>
Committed by TensorFlower Gardener<gardener@tensorflow.org>:
Fix TensorBoard python -m invoke in docs

PiperOrigin-RevId: 169758752

---
Commit 2957cd894 authored by Mustafa Ispir<ispir@google.com>
Committed by TensorFlower Gardener<gardener@tensorflow.org>:
Local run option of estimator training.

PiperOrigin-RevId: 169756384

---
Commit 1dc2fe7ac authored by Gunhan Gulsoy<gunan@google.com>
Committed by TensorFlower Gardener<gardener@tensorflow.org>:
BEGIN_PUBLIC
Automated g4 rollback of changelist 166264198

PiperOrigin-RevId: 169998124
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/trees/decision_tree.cc
bcaf3cf82e23b4318f9d87f17cb5a4536febe564 16-Aug-2017 A. Unique TensorFlower <gardener@tensorflow.org> Used unordered_set::find() instead of unordered_set::count() for sparse feature lookup to reduce the overhead.
Up to 10~20% cpu time reduction is expected for sparse features by some benchmarks.

Also replaced std::lower_bound() with std::binary_search() for simplification
(no preformance difference).

PiperOrigin-RevId: 165370103
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/trees/decision_tree.cc
c11ea29bcfc2a0036dbbbe5f6dc3dc16f4a01ada 13-Apr-2017 A. Unique TensorFlower <gardener@tensorflow.org> Add serving code for set membership split type.
Change: 153101982
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/trees/decision_tree.cc
50be7aa7d72ded57c11c705e9de80da2bdc2220b 31-Mar-2017 A. Unique TensorFlower <gardener@tensorflow.org> Migrate trees, models, testutils, and resources libraries to boosted_trees.
Change: 151832033
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/trees/decision_tree.cc