aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/sdca_ops.cc
Commit message (Collapse)AuthorAge
* Create SDCAOptimizerV2 op to fix the "adaptative" typo.Gravatar Yuefeng Zhou2018-10-09
| | | | PiperOrigin-RevId: 216370193
* Add the poisson log loss to the SDCA optimizer.Gravatar A. Unique TensorFlower2018-08-31
| | | | PiperOrigin-RevId: 211116606
* Convert a local variable and mutex to a struct so GUARDED_BY annotation ↵Gravatar A. Unique TensorFlower2018-04-19
| | | | | | works correctly. PiperOrigin-RevId: 193584438
* Expose the adaptive sampling option for SDCA and shuffle the data when ↵Gravatar A. Unique TensorFlower2018-04-05
| | | | | | adaptive sampling is off. PiperOrigin-RevId: 191836004
* Make adaptive SDCA the default.Gravatar A. Unique TensorFlower2018-03-08
| | | | PiperOrigin-RevId: 188380039
* Cleanup: Ran clang-format on all *.{cc,h} files in tensorflow/core/kernels.Gravatar A. Unique TensorFlower2018-01-26
| | | | PiperOrigin-RevId: 183423961
* Make single-parameter constructors explicitGravatar A. Unique TensorFlower2017-05-31
| | | | PiperOrigin-RevId: 157628970
* Fix code that ignores tensorflow::Status.Gravatar Peter Hawkins2017-02-13
| | | | | Add a new tensorflow::Status::IgnoreError() method to mark call sites where a Status has been intentionally ignored. Change: 147402405
* Fixed the signature of the Sdca*::Compute() methodsGravatar Benoit Steiner2016-12-06
| | | | Change: 141203556
* bug fix.Gravatar A. Unique TensorFlower2016-11-21
| | | | Change: 139861812
* Refactor the common code in sdca_ops.cc out for multiclass SDCA.Gravatar A. Unique TensorFlower2016-11-21
| | | | Change: 139854348
* Change SDCA to use DenseMutableHashtable.Gravatar A. Unique TensorFlower2016-10-27
| | | | | | | Change SdcaFprint to return a two int64 values instead of one string to save memory given that DenseMutableHashtable supports non-scalar keys. Corresponding changes to the private sharded hashtable wrapper to support non-scalar keys. Change: 137464256
* Do not use Eigen Tensor multiplication for binary SDCA, since that has veryGravatar A. Unique TensorFlower2016-10-27
| | | | | poor performance. Also added a new bench mark test for this. Change: 137413950
* Change the interface of helper classes/methods in sdca_ops.cc to support ↵Gravatar A. Unique TensorFlower2016-10-20
| | | | | | multiclass SDCA. Change: 136756962
* Move SDCA optimizer kernels to core.Gravatar A. Unique TensorFlower2016-09-27
See: tensorflow/contrib/linear_optimizer/kernels/g3doc/readme.md Change: 134452636