"vscode:/vscode.git/clone" did not exist on "cf0100cf6c35b3d484c22374d311037add320a7a"
- 13 Mar, 2018 2 commits
-
-
Mark Sandler authored
* Internal change. PiperOrigin-RevId: 187042423 * Internal change. PiperOrigin-RevId: 187072380 * Opensource float and eight-bit fixed-point mobilenet_v1 training and eval scripts. PiperOrigin-RevId: 187106140 * Initial check-in for Mobilenet V2 PiperOrigin-RevId: 187213595 * Allow configuring batch normalization decay and epsilon in MobileNet v1 PiperOrigin-RevId: 187425294 * Allow overriding NASNet model HParams. This is a change to the API that will allow users to pass in their own configs to the building functions, which should make these APIs much more customizable for end-user cases. This change removes the use_aux_head argument from the model construction functions, which is no longer necessary given that the use_aux_head option is configurable in the model config. For example, for the mobile ImageNet model, the auxiliary head can be disabled using: config = nasnet.mobile_imagenet_config() config.set_hparam('use_aux_head', 0) logits, endpoints = nasnet.build_nasnet_mobile( inputs, num_classes, config=config) PiperOrigin-RevId: 188617685 * Automated g4 rollback of changelist 188617685 PiperOrigin-RevId: 188619139 * Removes spurious comment -
supercourage authored
Some python files under models/research, it is wrong to use "Rather then" instead of "Rather than" in comments.
-
- 09 Mar, 2018 3 commits
-
-
Chris Shallue authored
PiperOrigin-RevId: 188503988
-
Chris Shallue authored
PiperOrigin-RevId: 188502535
-
yukun authored
-
- 08 Mar, 2018 6 commits
-
-
Zhichao Lu authored
PiperOrigin-RevId: 188251743
-
Zhichao Lu authored
PiperOrigin-RevId: 188246588
-
Zhichao Lu authored
Add FAQ to object detection and replace tf.contrib.slim.tfexample_decoder.BackupHandler with object_detection.data_decoders.tf_example_decoder.BackupHandler. PiperOrigin-RevId: 188191275
-
Zhichao Lu authored
PiperOrigin-RevId: 188061451
-
Zhichao Lu authored
PiperOrigin-RevId: 187941168
-
Zhichao Lu authored
Modify the preprocessor proto and preprocessor_builder to match the arguments of the ssd_random_crop_pad_fixed_aspect_ratio preprocessor method. PiperOrigin-RevId: 187877915
-
- 07 Mar, 2018 1 commit
-
-
MTDzi authored
-
- 06 Mar, 2018 3 commits
- 05 Mar, 2018 4 commits
-
-
yukun authored
-
cclauss authored
-
Chris Shallue authored
PiperOrigin-RevId: 187887326
-
Chris Shallue authored
PiperOrigin-RevId: 187400242
-
- 04 Mar, 2018 8 commits
-
-
Zhichao Lu authored
PiperOrigin-RevId: 187744580
-
Zhichao Lu authored
PiperOrigin-RevId: 187693682
-
Zhichao Lu authored
PiperOrigin-RevId: 187677107
-
Zhichao Lu authored
Replace the kernel error message with op error message. https://github.com/tensorflow/tensorflow/pull/16890 added a new check in the op. PiperOrigin-RevId: 187665000
-
Zhichao Lu authored
PiperOrigin-RevId: 187527188
-
Zhichao Lu authored
PiperOrigin-RevId: 187432991
-
Zhichao Lu authored
Updating trainer so that train config parameter `load_all_detection_checkpoint_vars` is used in restore_map. PiperOrigin-RevId: 187403903
-
Zhichao Lu authored
PiperOrigin-RevId: 187397387
-
- 03 Mar, 2018 1 commit
-
-
Scott Lowe authored
* BUG: Fix inception imagenet download script In `download_imagenet.sh`, the path to the `$SYNSETS_FILE` resource (imagenet_2012_validation_synset_labels.txt) was not updated to reflect change in directory after a `cd` earlier in the script. Fixes #682. * BUG: Fix slim imagenet download script In `download_imagenet.sh`, the path to the `$SYNSETS_FILE` resource (imagenet_2012_validation_synset_labels.txt) was not updated to reflect change in directory after a `cd` earlier in the script.
-
- 28 Feb, 2018 8 commits
-
-
Christopher Shallue authored
-
Christopher Shallue authored
-
Christopher Shallue authored
-
cclauss authored
-
Zader Zheng authored
-
Andrew M. Dai authored
-
Andrew M. Dai authored
-
Andrew M. Dai authored
-
- 27 Feb, 2018 4 commits
-
-
Zhichao Lu authored
187187978 by Zhichao Lu: Only updating hyperparameters if they have non-null values. -- 187097690 by Zhichao Lu: Rewrite some conditions a bit more clearly. -- 187085190 by Zhichao Lu: More informative error message. -- 186935376 by Zhichao Lu: Added option to evaluator.evaluate to use custom evaluator objects. -- 186808249 by Zhichao Lu: Fix documentation re: number of stages. -- 186775014 by Zhichao Lu: Change anchor generator interface to return a list of BoxLists containing anchors for different feature map layers. -- 186729028 by Zhichao Lu: Minor fixes to object detection. -- 186723716 by Zhichao Lu: Fix tf_example_decoder.py initailization issue. -- 186668505 by Zhichao Lu: Remove unused import. -- 186475361 by Zhichao Lu: Update the box predictor interface to return list of predictions - one from each feature map - instead of stacking them into one large tensor. -- 186410844 by Zhichao Lu: Fix PythonPath Dependencies. -- 186365384 by Zhichao Lu: Made some of the functions in exporter public so they can be reused. -- 186341438 by Zhichao Lu: Re-introducing check that label-map-path must be a valid (non-empty) string prior to overwriting pipeline config. -- 186036984 by Zhichao Lu: Adding default hyperparameters and allowing for overriding them via flags. -- 186026006 by Zhichao Lu: Strip `eval_` prefix from name argument give to TPUEstimator.evaluate since it adds the same prefix internally. -- 186016042 by Zhichao Lu: Add an option to evaluate models on training data. -- 185944986 by Zhichao Lu: let _update_label_map_path go through even if the path is empty -- 185860781 by Zhichao Lu: Add random normal initializer option to hyperparams builder. Scale the regression losses outside of the box encoder by adjusting huber loss delta and regression loss weight. -- 185846325 by Zhichao Lu: Add an option to normalize localization loss by the code size(number of box coordinates) in SSD Meta architecture. -- 185761217 by Zhichao Lu: Change multiscale_grid_anchor_generator to return anchors in normalized coordinates by default and add option to configure it. In SSD meta architecture, TargetAssigner operates in normalized coordinate space (i.e, groundtruth boxes are in normalized coordinates) hence we need the option to generate anchors in normalized coordinates. -- 185747733 by Zhichao Lu: Change the smooth L1 localization implementationt to use tf.losses.huber_loss and expose the delta parameter in the proto. -- 185715309 by Zhichao Lu: Obviates the need for prepadding on mobilenet v1 and v2 for fully convolutional models. -- 185685695 by Zhichao Lu: Fix manual stepping schedule to return first rate when there are no boundaries -- 185621650 by Zhichao Lu: Added target assigner proto for configuring negative class weights. -- PiperOrigin-RevId: 187187978 -
pkulzc authored
* Merged commit includes the following changes: 186565198 by Sergio Guadarrama: Applied random_hsv_in_yiq in inception_preprocessing. -- 186501039 by Sergio Guadarrama: Applied random_hsv_in_yiq in inception_preprocessing. -- 186013907 by Sergio Guadarrama: Internal change 185715309 by Sergio Guadarrama: Obviates the need for prepadding on mobilenet v1 and v2 for fully convolutional models. -- 184266252 by Sergio Guadarrama: Give build_nasnet_*() functions an optional flag use_aux_head, and add an internal-only arg scope to NasNetA*Cell._apply_drop_path(). -- 183865228 by Sergio Guadarrama: Internal change 179580924 by Sergio Guadarrama: Internal change 177320302 by Sergio Guadarrama: Internal change 177130184 by Sergio Guadarrama: Make slim nets tests faster by using smaller examples of oversized inputs. -- 176965289 by Sergio Guadarrama: Internal change 176585260 by Sergio Guadarrama: Internal change 176534973 by Sergio Guadarrama: Internal change 175526881 by Sergio Guadarrama: Internal change 174967704 by Sergio Guadarrama: Treat num_classes=0 same as None in a few slim nets overlooked by the recent change. -- 174443227 by Sergio Guadarrama: Internal change 174281864 by Sergio Guadarrama: Internal change 174249903 by Sergio Guadarrama: Fix nasnet image classification and object detection by moving the option to turn ON or OFF batch norm training into it's own arg_scope used only by detection -- 173954505 by Sergio Guadarrama: Merge pull request #2651 from sguada/tmp1 Fixes imports Closes #2636 ORIGINAL_AUTHOR=Jon Shlens <shlens@users.noreply.github.com> COPYBARA_INTEGRATE_REVIEW=https://github.com/tensorflow/models/pull/2636 from tensorflow:sguada-patch-1 19ff570f52df5ab655c00fb439129b201c5f2dce -- 173928094 by Sergio Guadarrama: Remove pending imports -- PiperOrigin-RevId: 186565198 * Remove internal links. -
Suharsh Sivakumar authored
-
Suharsh Sivakumar authored
-