aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/slim
Commit message (Collapse)AuthorAge
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-12
| | | | | | | | self.test_session() has been deprecated in 9962eb5e84b15e309410071b06c2ed2d6148ed44 as its name confuses readers of the test. Moving to cached_session() instead which is more explicit about: * the fact that the session may be reused. * the session is not closed even when doing a "with self.test_session()" statement. PiperOrigin-RevId: 212725342
* Make dtype in Image class actually modifiable.Gravatar A. Unique TensorFlower2018-08-30
| | | | | | | | | Changing dtype to any other type other than default will cause a crash because decode_jpeg or decode_image will promise to return uint8 all the time while decode_raw will actually vary its return type. This mismatch of types causes tf.case to fail and makes dtype parameter unusable. PiperOrigin-RevId: 210975290
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-08-21
| | | | | | | | self.test_session() has been deprecated in 9962eb5e84b15e309410071b06c2ed2d6148ed44 as its name confuses readers of the test. Moving to cached_session() instead which is more explicit about: * the fact that the session may be reused. * the session is not closed even when doing a "with self.test_session()" statement. PiperOrigin-RevId: 209701635
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-08-21
| | | | | | | | self.test_session() has been deprecated in 9962eb5e84b15e309410071b06c2ed2d6148ed44 as its name confuses readers of the test. Moving to cached_session() instead which is more explicit about: * the fact that the session may be reused. * the session is not closed even when doing a "with self.test_session()" statement. PiperOrigin-RevId: 209700671
* [tf.contrib.slim] Update documentation in evaluation.pyGravatar XFeiF2018-07-21
|
* Add more helpful error messages when restoring from checkpoint fails.Gravatar Karmel Allison2018-06-29
| | | | PiperOrigin-RevId: 202668227
* Automated g4 rollback of changelist 202000826Gravatar A. Unique TensorFlower2018-06-26
| | | | PiperOrigin-RevId: 202115471
* Uses resource variables by default for the global step.Gravatar Alexandre Passos2018-06-25
| | | | | | Relnotes: hooks will now see deterministically the value of the global step before updating instead of the value after updating. PiperOrigin-RevId: 202000826
* Merge changes from github.Gravatar Akshay Modi2018-06-18
| | | | PiperOrigin-RevId: 201110240
* Automated g4 rollback of changelist 201011811Gravatar Akshay Modi2018-06-18
| | | | PiperOrigin-RevId: 201033171
* Merge changes from github.Gravatar Akshay Modi2018-06-18
| | | | PiperOrigin-RevId: 201011811
* Automated g4 rollback of changelist 200467580Gravatar A. Unique TensorFlower2018-06-14
| | | | PiperOrigin-RevId: 200525639
* Uses a resource variable by default for the global step.Gravatar Alexandre Passos2018-06-13
| | | | PiperOrigin-RevId: 200467580
* Merge changes from github.Gravatar Yifei Feng2018-05-24
| | | | | | | Revert #18413. Too many internal test failures due to the name scope change caused by this change. Revert #18192. Cannot use re2::StringPiece internally. Need alternative for set call. Will pull and clean this up in a separate change. PiperOrigin-RevId: 197991247
* Add citation for TF-Slim.Gravatar Sergio Guadarrama2018-05-10
| | | | PiperOrigin-RevId: 196129248
* Merge changes from github.Gravatar Yifei Feng2018-04-23
| | | | PiperOrigin-RevId: 194031845
* Replace space in "Fraction of Zero Values" with _ because using space is ↵Gravatar A. Unique TensorFlower2018-04-18
| | | | | | illegal and will be auto replaced. PiperOrigin-RevId: 193441676
* [slim] Allow passing timeout_fn to 'evaluation_loop' so that caller can have ↵Gravatar A. Unique TensorFlower2018-04-09
| | | | | | more control over what to do if checkpoints_iterator times out. PiperOrigin-RevId: 192216302
* Windows: Enable tensorflow/contrib in Bazel build (Second try)Gravatar A. Unique TensorFlower2018-04-02
| | | | | | This reverts commit 4e108ef30d7cd7ae5e1c550ec5ae27e79b8c6e39. PiperOrigin-RevId: 191391075
* Automated g4 rollback of changelist 190858242Gravatar Jianwei Xie2018-03-29
| | | | PiperOrigin-RevId: 190953197
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Automated g4 rollback of changelist 190835392Gravatar Anna R2018-03-28
| | | | PiperOrigin-RevId: 190858242
* Merge changes from github.Gravatar Jianwei Xie2018-03-28
| | | | PiperOrigin-RevId: 190835392
* Merge changes from github.Gravatar Jacques Pienaar2018-03-21
| | | | PiperOrigin-RevId: 189945839
* Automated g4 rollback of changelist 189231636Gravatar A. Unique TensorFlower2018-03-15
| | | | PiperOrigin-RevId: 189258641
* Merge changes from github.Gravatar Jacques Pienaar2018-03-15
| | | | PiperOrigin-RevId: 189231636
* Merge changes from github.Gravatar Shanqing Cai2018-03-12
| | | | PiperOrigin-RevId: 188817194
* Merge changes from github.Gravatar Yifei Feng2018-02-22
| | | | PiperOrigin-RevId: 186674197
* Merge changes from github.Gravatar Ankur Taly2018-02-16
| | | | PiperOrigin-RevId: 186073337
* 1. Add image_ops.is_jpeg Op to decide if a input string is a jpeg string or not.Gravatar A. Unique TensorFlower2018-02-12
| | | | | | | 2. Change tfexample_decoder in slim/objection_detection to accept different JPEG decompression method. Defaults to ""/None which maps to a system-specific default. Currently valid values are ["INTEGER_FAST", "INTEGER_ACCURATE"]. The hint may be ignored (e.g., the internal jpeg library changes to a version that does not have that specific option.) PiperOrigin-RevId: 185486653
* Add pylint check for W0622 redefined-builtin in ci_sanity.sh and fix ↵Gravatar Yifei Feng2018-02-09
| | | | | | existing pylint errors. PiperOrigin-RevId: 185206494
* Merge changes from github.Gravatar Michael Case2018-02-07
| | | | PiperOrigin-RevId: 184897758
* Change output of slim.learning.train to total_loss = None, if no training ↵Gravatar A. Unique TensorFlower2018-02-07
| | | | | | step was actually performed. PiperOrigin-RevId: 184889196
* Assign total_loss in order not to crash if training loop exists early.Gravatar A. Unique TensorFlower2018-02-05
| | | | PiperOrigin-RevId: 184596877
* Add C0301 line-too-long error to pylint sanity check.Gravatar Yifei Feng2018-01-26
| | | | PiperOrigin-RevId: 183467186
* Add decay/epsilon/updates_collections parameters to Inception v3 arg_scopeGravatar A. Unique TensorFlower2018-01-16
| | | | PiperOrigin-RevId: 182143473
* Clarify documentation for squeeze_spatial. Use of squeeze_spatial=True with ↵Gravatar A. Unique TensorFlower2018-01-07
| | | | | | | | large images results in an error, either at graph build time (if the input image size is known), or at runtime (if not). Example error message (for the former case): ValueError: Can not squeeze dim[1], expected a dimension of 1, got 7 for 'InceptionV3/AuxLogits/SpatialSqueeze' (op: 'Squeeze') with input shapes: [1,7,7,1001]. PiperOrigin-RevId: 181075862
* Merge changes from github.Gravatar Raghuraman Krishnamoorthi2018-01-03
| | | | PiperOrigin-RevId: 180746153
* Automated g4 rollback of changelist 179260538Gravatar Dandelion Man?2017-12-15
| | | | PiperOrigin-RevId: 179263865
* Automated g4 rollback of changelist 179258973Gravatar A. Unique TensorFlower2017-12-15
| | | | PiperOrigin-RevId: 179260538
* Merge changes from github.Gravatar Dandelion Man?2017-12-15
| | | | PiperOrigin-RevId: 179258973
* Makes inception_v3 in tensorflow/tensorflow using the same initializer as ↵Gravatar A. Unique TensorFlower2017-12-15
| | | | | | | | tensorflow/models. Experiments show that variance_scaling_initializer, which is used by https://github.com/tensorflow/models/blob/master/research/slim/nets/inception_v3.py#L579 converges faster than truncated_normal_initializer, which is used by https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/slim/python/slim/nets/inception_v3.py PiperOrigin-RevId: 179247166
* Avoid modifying items in dataset_data_provider.Gravatar Sergio Guadarrama2017-12-13
| | | | PiperOrigin-RevId: 178961790
* Merge changes from github.Gravatar Sourabh Bajaj2017-11-30
| | | | PiperOrigin-RevId: 177526301
* Merge changes from github.Gravatar Yifei Feng2017-11-22
| | | | PiperOrigin-RevId: 176695926
* Automated g4 rollback of changelist 176615107Gravatar Yifei Feng2017-11-22
| | | | PiperOrigin-RevId: 176622438
* Merge changes from github.Gravatar Yifei Feng2017-11-21
| | | | PiperOrigin-RevId: 176615107
* Add hooks keyword argument to slim evaluate_onceGravatar Shanqing Cai2017-11-10
| | | | | | | to enable TFDBG debugging of slim.evaluation.evaluate_once() Fixes: #13444 PiperOrigin-RevId: 175101022
* BUILD cleanup in contrib/...Gravatar A. Unique TensorFlower2017-10-30
| | | | PiperOrigin-RevId: 173889798
* Add a MultiHandler that can conditionally apply handling logic based on ↵Gravatar A. Unique TensorFlower2017-10-24
| | | | | | presence of input Tensors. PiperOrigin-RevId: 173314020