1. 21 Sep, 2018 2 commits
    • pkulzc's avatar
      Minor fixes for object detection. · 1f484095
      pkulzc authored
      214018767  by Zhichao Lu:
      
          Add original_image_spatial_shape tensor in input dictionary to store shape of the original input image
      
      --
      213914693  by lzc:
      
          Internal change.
      
      --
      213872175  by Zhichao Lu:
      
          This CL adds a Keras-based mobilenet_v2 feature extractor for object detection models.
      
          As part of this CL, we use the Keras mobilenet_v2 application's keyword argument layer injection API to allow the generated network to support the object detection hyperparameters.
      
      --
      213848499  by Zhichao Lu:
      
          Replace tf.image.resize_nearest_neighbor with tf.image.resize_images. tf.image.resize_nearest_neighbor only supports 4-D tensors but masks is a 3-D tensor.
      
      --
      213758622  by lzc:
      
          Internal change.
      
      --
      
      PiperOrigin-RevId: 214018767
      1f484095
    • pkulzc's avatar
      Release iNaturalist Species-trained models, refactor of evaluation, box... · 99256cf4
      pkulzc authored
      Release iNaturalist Species-trained models, refactor of evaluation, box predictor for object detection. (#5289)
      
      * Merged commit includes the following changes:
      212389173  by Zhichao Lu:
      
          1. Replace tf.boolean_mask with tf.where
      
      --
      212282646  by Zhichao Lu:
      
          1. Fix a typo in model_builder.py and add a test to cover it.
      
      --
      212142989  by Zhichao Lu:
      
          Only resize masks in meta architecture if it has not already been resized in the input pipeline.
      
      --
      212136935  by Zhichao Lu:
      
          Choose matmul or native crop_and_resize in the model builder instead of faster r-cnn meta architecture.
      
      --
      211907984  by Zhichao Lu:
      
          Make eval input reader repeated field and update config util to handle this field.
      
      --
      211858098  by Zhichao Lu:
      
          Change the implementation of merge_boxes_with_multiple_labels.
      
      --
      211843915  by Zhichao Lu:
      
          Add Mobilenet v2 + FPN support.
      
      --
      211655076  by Zhichao Lu:
      
          Bug fix for generic keys in config overrides
      
          In generic configuration overrides, we had a duplicate entry for train_input_config and we were missing the eval_input_config and eval_config.
      
          This change also introduces testing for all config overrides.
      
      --
      211157501  by Zhichao Lu:
      
          Make the locally-modified conv defs a copy.
      
          So that it doesn't modify MobileNet conv defs globally for other code that
          transitively imports this package.
      
      --
      211112813  by Zhichao Lu:
      
          Refactoring visualization tools for Estimator's eval_metric_ops. This will make it easier for future models to take advantage of a single interface and mechanics.
      
      --
      211109571  by Zhichao Lu:
      
          A test decorator.
      
      --
      210747685  by Zhichao Lu:
      
          For FPN, when use_depthwise is set to true, use slightly modified mobilenet v1 config.
      
      --
      210723882  by Zhichao Lu:
      
          Integrating the losses mask into the meta architectures. When providing groundtruth, one can optionally specify annotation information (i.e. which images are labeled vs. unlabeled). For any image that is unlabeled, there is no loss accumulation.
      
      --
      210673675  by Zhichao Lu:
      
          Internal change.
      
      --
      210546590  by Zhichao Lu:
      
          Internal change.
      
      --
      210529752  by Zhichao Lu:
      
          Support batched inputs with ops.matmul_crop_and_resize.
      
          With this change the new inputs are images of shape [batch, heigh, width, depth] and boxes of shape [batch, num_boxes, 4]. The output tensor is of the shape [batch, num_boxes, crop_height, crop_width, depth].
      
      --
      210485912  by Zhichao Lu:
      
          Fix TensorFlow version check in object_detection_tutorial.ipynb
      
      --
      210484076  by Zhichao Lu:
      
          Reduce TPU memory required for single image matmul_crop_and_resize.
      
          Using tf.einsum eliminates intermediate tensors, tiling and expansion. for an image of size [40, 40, 1024] and boxes of shape [300, 4] HBM memory usage goes down from 3.52G to 1.67G.
      
      --
      210468361  by Zhichao Lu:
      
          Remove PositiveAnchorLossCDF/NegativeAnchorLossCDF to resolve "Main thread is not in main loop error" issue in local training.
      
      --
      210100253  by Zhichao Lu:
      
          Pooling pyramid feature maps: add option to replace max pool with convolution layers.
      
      --
      209995842  by Zhichao Lu:
      
          Fix a bug which prevents variable sharing in Faster RCNN.
      
      --
      209965526  by Zhichao Lu:
      
          Add support for enabling export_to_tpu through the estimator.
      
      --
      209946440  by Zhichao Lu:
      
          Replace deprecated tf.train.Supervisor with tf.train.MonitoredSession. MonitoredSession also takes away the hassle of starting queue runners.
      
      --
      209888003  by Zhichao Lu:
      
          Implement function to handle data where source_id is not set.
      
          If the field source_id is found to be the empty string for any image during runtime, it will be replaced with a random string. This avoids hash-collisions on dataset where many examples do not have source_id set. Those hash-collisions have unintended site effects and may lead to bugs in the detection pipeline.
      
      --
      209842134  by Zhichao Lu:
      
          Converting loss mask into multiplier, rather than using it as a boolean mask (which changes tensor shape). This is necessary, since other utilities (e.g. hard example miner) require a loss matrix with the same dimensions as the original prediction tensor.
      
      --
      209768066  by Zhichao Lu:
      
          Adding ability to remove loss computation from specific images in a batch, via an optional boolean mask.
      
      --
      209722556  by Zhichao Lu:
      
          Remove dead code.
      
          (_USE_C_API was flipped to True by default in TensorFlow 1.8)
      
      --
      209701861  by Zhichao Lu:
      
          This CL cleans-up some tf.Example creation snippets, by reusing the convenient tf.train.Feature building functions in dataset_util.
      
      --
      209697893  by Zhichao Lu:
      
          Do not overwrite num_epoch for eval input. This leads to errors in some cases.
      
      --
      209694652  by Zhichao Lu:
      
          Sample boxes by jittering around the currently given boxes.
      
      --
      209550300  by Zhichao Lu:
      
          `create_category_index_from_labelmap()` function now accepts `use_display_name` parameter.
          Also added create_categories_from_labelmap function for convenience
      
      --
      209490273  by Zhichao Lu:
      
          Check result_dict type before accessing image_id via key.
      
      --
      209442529  by Zhichao Lu:
      
          Introducing the capability to sample examples for evaluation. This makes it easy to specify one full epoch of evaluation, or a subset (e.g. sample 1 of every N examples).
      
      --
      208941150  by Zhichao Lu:
      
          Adding the capability of exporting the results in json format.
      
      --
      208888798  by Zhichao Lu:
      
          Fixes wrong dictionary key for num_det_boxes_per_image.
      
      --
      208873549  by Zhichao Lu:
      
          Reduce the number of HLO ops created by matmul_crop_and_resize.
      
          Do not unroll along the channels dimension. Instead, transpose the input image dimensions, apply tf.matmul and transpose back.
      
          The number of HLO instructions for 1024 channels reduce from 12368 to 110.
      
      --
      208844315  by Zhichao Lu:
      
          Add an option to use tf.non_maximal_supression_padded in SSD post-process
      
      --
      208731380  by Zhichao Lu:
      
          Add field in box_predictor config to enable mask prediction and update builders accordingly.
      
      --
      208699405  by Zhichao Lu:
      
          This CL creates a keras-based multi-resolution feature map extractor.
      
      --
      208557208  by Zhichao Lu:
      
          Add TPU tests for Faster R-CNN Meta arch.
      
          * Tests that two_stage_predict and total_loss tests run successfully on TPU.
          * Small mods to multiclass_non_max_suppression to preserve static shapes.
      
      --
      208499278  by Zhichao Lu:
      
          This CL makes sure the Keras convolutional box predictor & head layers apply activation layers *after* normalization (as opposed to before).
      
      --
      208391694  by Zhichao Lu:
      
          Updating visualization tool to produce multiple evaluation images.
      
      --
      208275961  by Zhichao Lu:
      
          This CL adds a Keras version of the Convolutional Box Predictor, as well as more general infrastructure for making Keras Prediction heads & Keras box predictors.
      
      --
      208275585  by Zhichao Lu:
      
          This CL enables the Keras layer hyperparameter object to build a dedicated activation layer, and to disable activation by default in the op layer construction kwargs.
      
          This is necessary because in most cases the normalization layer must be applied before the activation layer. So, in Keras models we must set the convolution activation in a dedicated layer after normalization is applied, rather than setting it in the convolution layer construction args.
      
      --
      208263792  by Zhichao Lu:
      
          Add a new SSD mask meta arch that can predict masks for SSD models.
          Changes including:
           - overwrite loss function to add mask loss computation.
           - update ssd_meta_arch to handle masks if predicted in predict and postprocessing.
      
      --
      208000218  by Zhichao Lu:
      
          Make FasterRCNN choose static shape operations only in training mode.
      
      --
      207997797  by Zhichao Lu:
      
          Add static boolean_mask op to box_list_ops.py and use that in faster_rcnn_meta_arch.py to support use_static_shapes option.
      
      --
      207993460  by Zhichao Lu:
      
          Include FGVC detection models in model zoo.
      
      --
      207971213  by Zhichao Lu:
      
          remove the restriction to run tf.nn.top_k op on CPU
      
      --
      207961187  by Zhichao Lu:
      
          Build the first stage NMS function in the model builder and pass it to FasterRCNN meta arch.
      
      --
      207960608  by Zhichao Lu:
      
          Internal Change.
      
      --
      207927015  by Zhichao Lu:
      
          Have an option to use the TPU compatible NMS op cl/206673787, in the batch_multiclass_non_max_suppression function. On setting pad_to_max_output_size to true, the output nmsed boxes are padded to be of length max_size_per_class.
      
          This can be used in first stage Region Proposal Network in FasterRCNN model by setting the first_stage_nms_pad_to_max_proposals field to true in config proto.
      
      --
      207809668  by Zhichao Lu:
      
          Add option to use depthwise separable conv instead of conv2d in FPN and WeightSharedBoxPredictor. More specifically, there are two related configs:
          - SsdFeatureExtractor.use_depthwise
          - WeightSharedConvolutionalBoxPredictor.use_depthwise
      
      --
      207808651  by Zhichao Lu:
      
          Fix the static balanced positive negative sampler's TPU tests
      
      --
      207798658  by Zhichao Lu:
      
          Fixes a post-refactoring bug where the pre-prediction convolution layers in the convolutional box predictor are ignored.
      
      --
      207796470  by Zhichao Lu:
      
          Make slim endpoints visible in FasterRCNNMetaArch.
      
      --
      207787053  by Zhichao Lu:
      
          Refactor ssd_meta_arch so that the target assigner instance is passed into the SSDMetaArch constructor rather than constructed inside.
      
      --
      
      PiperOrigin-RevId: 212389173
      
      * Fix detection model zoo typo.
      
      * Modify tf example decoder to handle label maps with either `display_name` or `name` fields seamlessly.
      
      Currently, tf example decoder uses only `name` field to look up ids for class text field present in the data. This change uses both `display_name` and `name` fields in the label map to fetch ids for class text.
      
      PiperOrigin-RevId: 212672223
      
      * Modify create_coco_tf_record tool to write out class text instead of class labels.
      
      PiperOrigin-RevId: 212679112
      
      * Fix detection model zoo typo.
      
      PiperOrigin-RevId: 212715692
      
      * Adding the following two optional flags to WeightSharedConvolutionalBoxHead:
      1) In the box head, apply clipping to box encodings in the box head.
      2) In the class head, apply sigmoid to class predictions at inference time.
      
      PiperOrigin-RevId: 212723242
      
      * Support class confidences in merge boxes with multiple labels.
      
      PiperOrigin-RevId: 212884998
      
      * Creates multiple eval specs for object detection.
      
      PiperOrigin-RevId: 212894556
      
      * Set batch_norm on last layer in Mask Head to None.
      
      PiperOrigin-RevId: 213030087
      
      * Enable bfloat16 training for object detection models.
      
      PiperOrigin-RevId: 213053547
      
      * Skip padding op when unnecessary.
      
      PiperOrigin-RevId: 213065869
      
      * Modify `Matchers` to use groundtruth weights before performing matching.
      
      Groundtruth weights tensor is used to indicate padding in groundtruth box tensor. It is handled in `TargetAssigner` by creating appropriate classification and regression target weights based on the groundtruth box each anchor matches to. However, options such as `force_match_all_rows` in `ArgmaxMatcher` force certain anchors to match to groundtruth boxes that are just paddings thereby reducing the number of anchors that could otherwise match to real groundtruth boxes.
      
      For single stage models like SSD the effect of this is negligible as there are two orders of magnitude more anchors than the number of padded groundtruth boxes. But for Faster R-CNN and Mask R-CNN where there are only 300 anchors in the second stage, a significant number of these match to groundtruth paddings reducing the number of anchors regressing to real groundtruth boxes degrading the performance severely.
      
      Therefore, this change introduces an additional boolean argument `valid_rows` to `Matcher.match` methods and the implementations now ignore such padded groudtruth boxes during matching.
      
      PiperOrigin-RevId: 213345395
      
      * Add release note for iNaturalist Species trained models.
      
      PiperOrigin-RevId: 213347179
      
      * Fix the bug of uninitialized gt_is_crowd_list variable.
      
      PiperOrigin-RevId: 213364858
      
      * ...text exposed to open source public git repo...
      
      PiperOrigin-RevId: 213554260
      99256cf4
  2. 08 Aug, 2018 1 commit
    • pkulzc's avatar
      Update object detection post processing and fixes boxes padding/clipping issue. (#5026) · 59f7e80a
      pkulzc authored
      * Merged commit includes the following changes:
      207771702  by Zhichao Lu:
      
          Refactoring evaluation utilities so that it is easier to introduce new DetectionEvaluators with eval_metric_ops.
      
      --
      207758641  by Zhichao Lu:
      
          Require tensorflow version 1.9+ for running object detection API.
      
      --
      207641470  by Zhichao Lu:
      
          Clip `num_groundtruth_boxes` in pad_input_data_to_static_shapes() to `max_num_boxes`. This prevents a scenario where tensors are sliced to an invalid range in model_lib.unstack_batch().
      
      --
      207621728  by Zhichao Lu:
      
          This CL adds a FreezableBatchNorm that inherits from the Keras BatchNormalization layer, but supports freezing the `training` parameter at construction time instead of having to do it in the `call` method.
      
          It also adds a method to the `KerasLayerHyperparams` class that will build an appropriate FreezableBatchNorm layer according to the hyperparameter configuration. If batch_norm is disabled, this method returns and Identity layer.
      
          These will be used to simplify the conversion to Keras APIs.
      
      --
      207610524  by Zhichao Lu:
      
          Update anchor generators and box predictors for python3 compatibility.
      
      --
      207585122  by Zhichao Lu:
      
          Refactoring convolutional box predictor into separate prediction heads.
      
      --
      207549305  by Zhichao Lu:
      
          Pass all 1s for batch weights if nothing is specified in GT.
      
      --
      207336575  by Zhichao Lu:
      
          Move the new argument 'target_assigner_instance' to the end of the list of arguments to the ssd_meta_arch constructor for backwards compatibility.
      
      --
      207327862  by Zhichao Lu:
      
          Enable support for float output in quantized custom op for postprocessing in SSD Mobilenet model.
      
      --
      207323154  by Zhichao Lu:
      
          Bug fix: change dict.iteritems() to dict.items()
      
      --
      207301109  by Zhichao Lu:
      
          Integrating expected_classification_loss_under_sampling op as an option in the ssd_meta_arch
      
      --
      207286221  by Zhichao Lu:
      
          Adding an option to weight regression loss with foreground scores from the ground truth labels.
      
      --
      207231739  by Zhichao Lu:
      
          Explicitly mentioning the argument names when calling the batch target assigner.
      
      --
      207206356  by Zhichao Lu:
      
          Add include_trainable_variables field to train config to better handle trainable variables.
      
      --
      207135930  by Zhichao Lu:
      
          Internal change.
      
      --
      206862541  by Zhichao Lu:
      
          Do not unpad the outputs from batch_non_max_suppression before sampling.
      
          Since BalancedPositiveNegativeSampler takes an indicator for valid positions to sample from we can pass the output from NMS directly into Sampler.
      
      --
      
      PiperOrigin-RevId: 207771702
      
      * Remove unused doc.
      59f7e80a
  3. 01 Aug, 2018 1 commit
    • pkulzc's avatar
      Refactor object detection box predictors and fix some issues with model_main. (#4965) · 02a9969e
      pkulzc authored
      * Merged commit includes the following changes:
      206852642  by Zhichao Lu:
      
          Build the balanced_positive_negative_sampler in the model builder for FasterRCNN. Also adds an option to use the static implementation of the sampler.
      
      --
      206803260  by Zhichao Lu:
      
          Fixes a misplaced argument in resnet fpn feature extractor.
      
      --
      206682736  by Zhichao Lu:
      
          This CL modifies the SSD meta architecture to support both Slim-based and Keras-based box predictors, and begins preparation for Keras box predictor support in the other meta architectures.
      
          Concretely, this CL adds a new `KerasBoxPredictor` base class and makes the meta architectures appropriately call whichever box predictors they are using.
      
          We can switch the non-ssd meta architectures to fully support Keras box predictors once the Keras Convolutional Box Predictor CL is submitted.
      
      --
      206669634  by Zhichao Lu:
      
          Adds an alternate method for balanced positive negative sampler using static shapes.
      
      --
      206643278  by Zhichao Lu:
      
          This CL adds a Keras layer hyperparameter configuration object to the hyperparams_builder.
      
          It automatically converts from Slim layer hyperparameter configs to Keras layer hyperparameters. Namely, it:
          - Builds Keras initializers/regularizers instead of Slim ones
          - sets weights_regularizer/initializer to kernel_regularizer/initializer
          - converts batchnorm decay to momentum
          - converts Slim l2 regularizer weights to the equivalent Keras l2 weights
      
          This will be used in the conversion of object detection feature extractors & box predictors to newer Tensorflow APIs.
      
      --
      206611681  by Zhichao Lu:
      
          Internal changes.
      
      --
      206591619  by Zhichao Lu:
      
          Clip the to shape when the input tensors are larger than the expected padded static shape
      
      --
      206517644  by Zhichao Lu:
      
          Make MultiscaleGridAnchorGenerator more consistent with MultipleGridAnchorGenerator.
      
      --
      206415624  by Zhichao Lu:
      
          Make the hardcoded feature pyramid network (FPN) levels configurable for both SSD
          Resnet and SSD Mobilenet.
      
      --
      206398204  by Zhichao Lu:
      
          This CL modifies the SSD meta architecture to support both Slim-based and Keras-based feature extractors.
      
          This allows us to begin the conversion of object detection to newer Tensorflow APIs.
      
      --
      206213448  by Zhichao Lu:
      
          Adding a method to compute the expected classification loss by background/foreground weighting.
      
      --
      206204232  by Zhichao Lu:
      
          Adding the keypoint head to the Mask RCNN pipeline.
      
      --
      206200352  by Zhichao Lu:
      
          - Create Faster R-CNN target assigner in the model builder. This allows configuring matchers in Target assigner to use TPU compatible ops (tf.gather in this case) without any change in meta architecture.
          - As a +ve side effect of the refactoring, we can now re-use a single target assigner for all of second stage heads in Faster R-CNN.
      
      --
      206178206  by Zhichao Lu:
      
          Force ssd feature extractor builder to use keyword arguments so values won't be passed to wrong arguments.
      
      --
      206168297  by Zhichao Lu:
      
          Updating exporter to use freeze_graph.freeze_graph_with_def_protos rather than a homegrown version.
      
      --
      206080748  by Zhichao Lu:
      
          Merge external contributions.
      
      --
      206074460  by Zhichao Lu:
      
          Update to preprocessor to apply temperature and softmax to the multiclass scores on read.
      
      --
      205960802  by Zhichao Lu:
      
          Fixing a bug in hierarchical label expansion script.
      
      --
      205944686  by Zhichao Lu:
      
          Update exporter to support exporting quantized model.
      
      --
      205912529  by Zhichao Lu:
      
          Add a two stage matcher to allow for thresholding by one criteria and then argmaxing on the other.
      
      --
      205909017  by Zhichao Lu:
      
          Add test for grayscale image_resizer
      
      --
      205892801  by Zhichao Lu:
      
          Add flag to decide whether to apply batch norm to conv layers of weight shared box predictor.
      
      --
      205824449  by Zhichao Lu:
      
          make sure that by default mask rcnn box predictor predicts 2 stages.
      
      --
      205730139  by Zhichao Lu:
      
          Updating warning message to be more explicit about variable size mismatch.
      
      --
      205696992  by Zhichao Lu:
      
          Remove utils/ops.py's dependency on core/box_list_ops.py. This will allow re-using TPU compatible ops from utils/ops.py in core/box_list_ops.py.
      
      --
      205696867  by Zhichao Lu:
      
          Refactoring mask rcnn predictor so have each head in a separate file.
          This CL lets us to add new heads more easily in the future to mask rcnn.
      
      --
      205492073  by Zhichao Lu:
      
          Refactor R-FCN box predictor to be TPU compliant.
      
          - Change utils/ops.py:position_sensitive_crop_regions to operate on single image and set of boxes without `box_ind`
          - Add a batch version that operations on batches of images and batches of boxes.
          - Refactor R-FCN box predictor to use the batched version of position sensitive crop regions.
      
      --
      205453567  by Zhichao Lu:
      
          Fix bug that cannot export inference graph when write_inference_graph flag is True.
      
      --
      205316039  by Zhichao Lu:
      
          Changing input tensor name.
      
      --
      205256307  by Zhichao Lu:
      
          Fix model zoo links for quantized model.
      
      --
      205164432  by Zhichao Lu:
      
          Fixes eval error when label map contains non-ascii characters.
      
      --
      205129842  by Zhichao Lu:
      
          Adds a option to clip the anchors to the window size without filtering the overlapped boxes in Faster-RCNN
      
      --
      205094863  by Zhichao Lu:
      
          Update to label map util to allow the option of adding a background class and fill in gaps in the label map. Useful for using multiclass scores which require a complete label map with explicit background label.
      
      --
      204989032  by Zhichao Lu:
      
          Add tf.prof support to exporter.
      
      --
      204825267  by Zhichao Lu:
      
          Modify mask rcnn box predictor tests for TPU compatibility.
      
      --
      204778749  by Zhichao Lu:
      
          Remove score filtering from postprocessing.py and rely on filtering logic in tf.image.non_max_suppression
      
      --
      204775818  by Zhichao Lu:
      
          Python3 fixes for object_detection.
      
      --
      204745920  by Zhichao Lu:
      
          Object Detection Dataset visualization tool (documentation).
      
      --
      204686993  by Zhichao Lu:
      
          Internal changes.
      
      --
      204559667  by Zhichao Lu:
      
          Refactor box_predictor.py into multiple files.
          The abstract base class remains in the object_detection/core, The other classes have moved to a separate file each in object_detection/predictors
      
      --
      204552847  by Zhichao Lu:
      
          Update blog post link.
      
      --
      204508028  by Zhichao Lu:
      
          Bump down the batch size to 1024 to be a bit more tolerant to OOM and double the number of iterations. This job still converges to 20.5 mAP in 3 hours.
      
      --
      
      PiperOrigin-RevId: 206852642
      
      * Add original post-processing back.
      02a9969e
  4. 24 Jul, 2018 1 commit
    • SRIRAM VETURI's avatar
      Update learning_schedules.py · ef84dca1
      SRIRAM VETURI authored
      The following error doesn't occur with the above change in code.
      
      Error: Argument must be a dense tensor: range(0, 3) - got shape [3], but wanted []
      
      The range function on the vairable 'num_boundaries' should be a list! Please merge this request!
      ef84dca1
  5. 13 Jul, 2018 1 commit
    • pkulzc's avatar
      Object detection Internal Changes. (#4757) · 70255908
      pkulzc authored
      * Merged commit includes the following changes:
      204316992  by Zhichao Lu:
      
          Update docs to prepare inputs
      
      --
      204309254  by Zhichao Lu:
      
          Update running_pets.md to use new binaries and correct a few things in running_on_cloud.md
      
      --
      204306734  by Zhichao Lu:
      
          Move old binaries into legacy folder and add deprecation notice.
      
      --
      204267757  by Zhichao Lu:
      
          Fixing a problem in VRD evaluation with missing ground truth annotations for
          images that do not contain objects from 62 groundtruth classes.
      
      --
      204167430  by Zhichao Lu:
      
          This fixes a flaky losses test failure.
      
      --
      203670721  by Zhichao Lu:
      
          Internal change.
      
      --
      203569388  by Zhichao Lu:
      
          Internal change
      
      203546580  by Zhichao Lu:
      
          * Expand TPU compatibility g3doc with config snippets
          * Change mscoco dataset path in sample configs to the sharded versions
      
      --
      203325694  by Zhichao Lu:
      
          Make merge_multiple_label_boxes work for model_main code path.
      
      --
      203305655  by Zhichao Lu:
      
          Remove the 1x1 conv layer before pooling in MobileNet-v1-PPN feature extractor.
      
      --
      203139608  by Zhichao Lu:
      
          - Support exponential_decay with burnin learning rate schedule.
          - Add the minimum learning rate option.
          - Make the exponential decay start only after the burnin steps.
      
      --
      203068703  by Zhichao Lu:
      
          Modify create_coco_tf_record.py to output sharded files.
      
      --
      203025308  by Zhichao Lu:
      
          Add an option to share the prediction tower in WeightSharedBoxPredictor.
      
      --
      203024942  by Zhichao Lu:
      
          Move ssd mobilenet v1 ppn configs to third party.
      
      --
      202901259  by Zhichao Lu:
      
          Delete obsolete ssd mobilenet v1 focal loss configs and update pets dataset path
      
      --
      202894154  by Zhichao Lu:
      
          Move all TPU compatible ssd mobilenet v1 coco14/pet configs to third party.
      
      --
      202861774  by Zhichao Lu:
      
          Move Retinanet (SSD + FPN + Shared box predictor) configs to third_party.
      
      --
      
      PiperOrigin-RevId: 204316992
      
      * Add original files back.
      70255908
  6. 02 Jul, 2018 1 commit
    • pkulzc's avatar
      Open Images Challenge 2018 tools, minor fixes and refactors. (#4661) · 32e7d660
      pkulzc authored
      * Merged commit includes the following changes:
      202804536  by Zhichao Lu:
      
          Return tf.data.Dataset from input_fn that goes into the estimator and use PER_HOST_V2 option for tpu input pipeline config.
      
          This change shaves off 100ms per step resulting in 25 minutes of total reduced training time for ssd mobilenet v1 (15k steps to convergence).
      
      --
      202769340  by Zhichao Lu:
      
          Adding as_matrix() transformation for image-level labels.
      
      --
      202768721  by Zhichao Lu:
      
          Challenge evaluation protocol modification: adding labelmaps creation.
      
      --
      202750966  by Zhichao Lu:
      
          Add the explicit names to two output nodes.
      
      --
      202732783  by Zhichao Lu:
      
          Enforcing that batch size is 1 for evaluation, and no original images are retained during evaluation when use_tpu=False (to avoid dynamic shapes).
      
      --
      202425430  by Zhichao Lu:
      
          Refactor input pipeline to improve performance.
      
      --
      202406389  by Zhichao Lu:
      
          Only check the validity of `warmup_learning_rate` if it will be used.
      
      --
      202330450  by Zhichao Lu:
      
          Adding the description of the flag input_image_label_annotations_csv to add
            image-level labels to tf.Example.
      
      --
      202029012  by Zhichao Lu:
      
          Enabling displaying relationship name in the final metrics output.
      
      --
      202024010  by Zhichao Lu:
      
          Update to the public README.
      
      --
      201999677  by Zhichao Lu:
      
          Fixing the way negative labels are handled in VRD evaluation.
      
      --
      201962313  by Zhichao Lu:
      
          Fix a bug in resize_to_range.
      
      --
      201808488  by Zhichao Lu:
      
          Update ssd_inception_v2_pets.config to use right filename of pets dataset tf records.
      
      --
      201779225  by Zhichao Lu:
      
          Update object detection API installation doc
      
      --
      201766518  by Zhichao Lu:
      
          Add shell script to create pycocotools package for CMLE.
      
      --
      201722377  by Zhichao Lu:
      
          Removes verified_labels field and uses groundtruth_image_classes field instead.
      
      --
      201616819  by Zhichao Lu:
      
          Disable eval_on_tpu since eval_metrics is not setup to execute on TPU.
          Do not use run_config.task_type to switch tpu mode for EVAL,
          since that won't work in unit test.
          Expand unit test to verify that the same instantiation of the Estimator can independently disable eval on TPU whereas training is enabled on TPU.
      
      --
      201524716  by Zhichao Lu:
      
          Disable export model to TPU, inference is not compatible with TPU.
          Add GOOGLE_INTERNAL support in object detection copy.bara.sky
      
      --
      201453347  by Zhichao Lu:
      
          Fixing bug when evaluating the quantized model.
      
      --
      200795826  by Zhichao Lu:
      
          Fixing parsing bug: image-level labels are parsed as tuples instead of numpy
          array.
      
      --
      200746134  by Zhichao Lu:
      
          Adding image_class_text and image_class_label fields into tf_example_decoder.py
      
      --
      200743003  by Zhichao Lu:
      
          Changes to model_main.py and model_tpu_main to enable training and continuous eval.
      
      --
      200736324  by Zhichao Lu:
      
          Replace deprecated squeeze_dims argument.
      
      --
      200730072  by Zhichao Lu:
      
          Make detections only during predict and eval mode while creating model function
      
      --
      200729699  by Zhichao Lu:
      
          Minor correction to internal documentation (definition of Huber loss)
      
      --
      200727142  by Zhichao Lu:
      
          Add command line parsing as a set of flags using argparse and add header to the
          resulting file.
      
      --
      200726169  by Zhichao Lu:
      
          A tutorial on running evaluation for the Open Images Challenge 2018.
      
      --
      200665093  by Zhichao Lu:
      
          Cleanup on variables_helper_test.py.
      
      --
      200652145  by Zhichao Lu:
      
          Add an option to write (non-frozen) graph when exporting inference graph.
      
      --
      200573810  by Zhichao Lu:
      
          Update ssd_mobilenet_v1_coco and ssd_inception_v2_coco download links to point to a newer version.
      
      --
      200498014  by Zhichao Lu:
      
          Add test for groundtruth mask resizing.
      
      --
      200453245  by Zhichao Lu:
      
          Cleaning up exporting_models.md along with exporting scripts
      
      --
      200311747  by Zhichao Lu:
      
          Resize groundtruth mask to match the size of the original image.
      
      --
      200287269  by Zhichao Lu:
      
          Having a option to use custom MatMul based crop_and_resize op as an alternate to the TF op in Faster-RCNN
      
      --
      200127859  by Zhichao Lu:
      
          Updating the instructions to run locally with new binary. Also updating pets configs since file path naming has changed.
      
      --
      200127044  by Zhichao Lu:
      
          A simpler evaluation util to compute Open Images Challenge
          2018 metric (object detection track).
      
      --
      200124019  by Zhichao Lu:
      
          Freshening up configuring_jobs.md
      
      --
      200086825  by Zhichao Lu:
      
          Make merge_multiple_label_boxes work for ssd model.
      
      --
      199843258  by Zhichao Lu:
      
          Allows inconsistent feature channels to be compatible with WeightSharedConvolutionalBoxPredictor.
      
      --
      199676082  by Zhichao Lu:
      
          Enable an override for `InputReader.shuffle` for object detection pipelines.
      
      --
      199599212  by Zhichao Lu:
      
          Markdown fixes.
      
      --
      199535432  by Zhichao Lu:
      
          Pass num_additional_channels to tf.example decoder in predict_input_fn.
      
      --
      199399439  by Zhichao Lu:
      
          Adding `num_additional_channels` field to specify how many additional channels to use in the model.
      
      --
      
      PiperOrigin-RevId: 202804536
      
      * Add original model builder and docs back.
      32e7d660
  7. 14 Jun, 2018 1 commit
  8. 06 Jun, 2018 1 commit
    • Zhichao Lu's avatar
      Merged commit includes the following changes: · 9fce9c64
      Zhichao Lu authored
      199348852  by Zhichao Lu:
      
          Small typos fixes in VRD evaluation.
      
      --
      199315191  by Zhichao Lu:
      
          Change padding shapes when additional channels are available.
      
      --
      199309180  by Zhichao Lu:
      
          Adds minor fixes to the Object Detection API implementation.
      
      --
      199298605  by Zhichao Lu:
      
          Force num_readers to be 1 when only input file is not sharded.
      
      --
      199292952  by Zhichao Lu:
      
          Adds image-level labels parsing into TfExampleDetectionAndGTParser.
      
      --
      199259866  by Zhichao Lu:
      
          Visual Relationships Evaluation executable.
      
      --
      199208330  by Zhichao Lu:
      
          Infer train_config.batch_size as the effective batch size. Therefore we need to divide the effective batch size in trainer by train_config.replica_to_aggregate to get per worker batch size.
      
      --
      199207842  by Zhichao Lu:
      
          Internal change.
      
      --
      199204222  by Zhichao Lu:
      
          In case the image has more than three channels, we only take the first three channels for visualization.
      
      --
      199194388  by Zhichao Lu:
      
          Correcting protocols description: VOC 2007 -> VOC 2012.
      
      --
      199188290  by Zhichao Lu:
      
          Adds per-relationship APs and mAP computation to VRD evaluation.
      
      --
      199158801  by Zhichao Lu:
      
          If available, additional channels are merged with input image.
      
      --
      199099637  by Zhichao Lu:
      
          OpenImages Challenge metric support:
          -adding verified labels standard field for TFExample;
          -adding tfrecord creation functionality.
      
      --
      198957391  by Zhichao Lu:
      
          Allow tf record sharding when creating pets dataset.
      
      --
      198925184  by Zhichao Lu:
      
          Introduce moving average support for evaluation. Also adding the ability to override this configuration via config_util.
      
      --
      198918186  by Zhichao Lu:
      
          Handles the case where there are 0 box masks.
      
      --
      198809009  by Zhichao Lu:
      
          Plumb groundtruth weights into target assigner for Faster RCNN.
      
      --
      198759987  by Zhichao Lu:
      
          Fix object detection test broken by shape inference.
      
      --
      198668602  by Zhichao Lu:
      
          Adding a new input field in data_decoders/tf_example_decoder.py for storing additional channels.
      
      --
      198530013  by Zhichao Lu:
      
          An util for hierarchical expandion of boxes and labels of OID dataset.
      
      --
      198503124  by Zhichao Lu:
      
          Fix dimension mismatch error introduced by
          https://github.com/tensorflow/tensorflow/pull/18251, or cl/194031845.
          After above change, conv2d strictly checks for conv_dims + 2 == input_rank.
      
      --
      198445807  by Zhichao Lu:
      
          Enabling Object Detection Challenge 2018 metric in evaluator.py framework for
          running eval job.
          Renaming old OpenImages V2 metric.
      
      --
      198413950  by Zhichao Lu:
      
          Support generic configuration override using namespaced keys
      
          Useful for adding custom hyper-parameter tuning fields without having to add custom override methods to config_utils.py.
      
      --
      198106437  by Zhichao Lu:
      
          Enable fused batchnorm now that quantization is supported.
      
      --
      198048364  by Zhichao Lu:
      
          Add support for keypoints in tf sequence examples and some util ops.
      
      --
      198004736  by Zhichao Lu:
      
          Relax postprocessing unit tests that are based on assumption that tf.image.non_max_suppression are stable with respect to input.
      
      --
      197997513  by Zhichao Lu:
      
          More lenient validation for normalized box boundaries.
      
      --
      197940068  by Zhichao Lu:
      
          A couple of minor updates/fixes:
          - Updating input reader proto with option to use display_name when decoding data.
          - Updating visualization tool to specify whether using absolute or normalized box coordinates. Appropriate boxes will now appear in TB when using model_main.py
      
      --
      197920152  by Zhichao Lu:
      
          Add quantized training support in the new OD binaries and a config for SSD Mobilenet v1 quantized training that is TPU compatible.
      
      --
      197213563  by Zhichao Lu:
      
          Do not share batch_norm for classification and regression tower in weight shared box predictor.
      
      --
      197196757  by Zhichao Lu:
      
          Relax the box_predictor api to return box_prediction of shape [batch_size, num_anchors, code_size] in addition to [batch_size, num_anchors, (1|q), code_size].
      
      --
      196898361  by Zhichao Lu:
      
          Allow per-channel scalar value to pad input image with when using keep aspect ratio resizer (when pad_to_max_dimension=True).
      
          In Object Detection Pipeline, we pad image before normalization and this skews batch_norm statistics during training. The option to set per channel pad value lets us truly pad with zeros.
      
      --
      196592101  by Zhichao Lu:
      
          Fix bug regarding tfrecord shuffling in object_detection
      
      --
      196320138  by Zhichao Lu:
      
          Fix typo in exporting_models.md
      
      --
      
      PiperOrigin-RevId: 199348852
      9fce9c64
  9. 11 May, 2018 1 commit
    • Zhichao Lu's avatar
      Merged commit includes the following changes: · 324d6dc3
      Zhichao Lu authored
      196161788  by Zhichao Lu:
      
          Add eval_on_train_steps parameter.
      
          Since the number of samples in train dataset is usually different to the number of samples in the eval dataset.
      
      --
      196151742  by Zhichao Lu:
      
          Add an optional random sampling process for SSD meta arch and update mean stddev coder to use default std dev when corresponding tensor is not added to boxlist field.
      
      --
      196148940  by Zhichao Lu:
      
          Release ssdlite mobilenet v2 coco trained model.
      
      --
      196058528  by Zhichao Lu:
      
          Apply FPN feature map generation before we add additional layers on top of resnet feature extractor.
      
      --
      195818367  by Zhichao Lu:
      
          Add support for exporting detection keypoints.
      
      --
      195745420  by Zhichao Lu:
      
          Introduce include_metrics_per_category option to Object Detection eval_config.
      
      --
      195734733  by Zhichao Lu:
      
          Rename SSDLite config to be more explicit.
      
      --
      195717383  by Zhichao Lu:
      
          Add quantized training to object_detection.
      
      --
      195683542  by...
      324d6dc3
  10. 08 May, 2018 1 commit
  11. 03 May, 2018 1 commit
    • Zhichao Lu's avatar
      Merged commit includes the following changes: · 63054210
      Zhichao Lu authored
      195269567  by Zhichao Lu:
      
          Removing image summaries during train mode.
      
      --
      195147413  by Zhichao Lu:
      
          SSDLite config for mobilenet v2.
      
      --
      194883585  by Zhichao Lu:
      
          Simplify TPU compatible nearest neighbor upsampling using reshape and broadcasting.
      
      --
      194851009  by Zhichao Lu:
      
          Include ava v2.1 detection models in model zoo.
      
      --
      194292198  by Zhichao Lu:
      
          Add option to evaluate any checkpoint (without requiring write access to that directory and overwriting any existing logs there).
      
      --
      194122420  by Zhichao Lu:
      
          num_gt_boxes_per_image and num_det_boxes_per_image value incorrect.
          Should be not the expand dim.
      
      --
      193974479  by Zhichao Lu:
      
          Fixing a bug in the coco evaluator.
      
      --
      193959861  by Zhichao Lu:
      
          Read the default batch size from config file.
      
      --
      193737238  by Zhichao Lu:
      
          Fix data augmentation functions.
      
      --
      193576336  by Zhichao Lu:
      
          Add support for training keypoints.
      
      --
      193409179  by Zhichao Lu:
      
          Update protobuf requirements to 3+ in installation docs.
      
      --
      193382651  by Zhichao Lu:
      
          Updating coco evaluation metrics to allow for a batch of image info, rather than a single image.
      
      --
      193244778  by Zhichao Lu:
      
          Remove deprecated batch_norm_trainable field from ssd mobilenet v2 config
      
      --
      193228972  by Zhichao Lu:
      
          Make sure the final layers are also resized proportional to conv_depth_ratio.
      
      --
      193204364  by Zhichao Lu:
      
          Do not add batch norm parameters to final conv2d ops that predict boxes encodings and class scores in weight shared conv box predictor.
      
          This allows us to set proper bias and force initial predictions to be background when using focal loss.
      
      --
      193137342  by Zhichao Lu:
      
          Add a util function to visualize value histogram as a tf.summary.image.
      
      --
      193119411  by Zhichao Lu:
      
          Adding support for reading in logits as groundtruth labels and applying an optional temperature (scaling) before softmax in support of distillation.
      
      --
      193087707  by Zhichao Lu:
      
          Post-process now works again in train mode.
      
      --
      193067658  by Zhichao Lu:
      
          fix flakiness in testSSDRandomCropWithMultiClassScores due to randomness.
      
      --
      192922089  by Zhichao Lu:
      
          Add option to set dropout for classification net in weight shared box predictor.
      
      --
      192850747  by Zhichao Lu:
      
          Remove inaccurate caveat from proto file.
      
      --
      192837477  by Zhichao Lu:
      
          Extend to accept different ratios of conv channels.
      
      --
      192813444  by Zhichao Lu:
      
          Adding option for one_box_for_all_classes to the box_predictor
      
      --
      192624207  by Zhichao Lu:
      
          Update to trainer to allow for reading multiclass scores
      
      --
      192583425  by Zhichao Lu:
      
          Contains implementation of Visual Relations Detection evaluation metric (per
          image evaluation).
      
      --
      192529600  by Zhichao Lu:
      
          Modify the ssd meta arch to allow the option of not adding an implicit background class.
      
      --
      192512429  by Zhichao Lu:
      
          Refactor model_tpu_main.py files and move continuous eval loop into model_lib.py
      
      --
      192494267  by Zhichao Lu:
      
          Update create_pascal_tf_record.py and create_pet_tf_record.py
      
      --
      192485456  by Zhichao Lu:
      
          Enforcing that all eval metric ops have valid python strings.
      
      --
      192472546  by Zhichao Lu:
      
          Set regularize_depthwise to true in mobilenet_v1_argscope.
      
      --
      192421843  by Zhichao Lu:
      
          Refactoring of Mask-RCNN to put all mask prediction code in third stage.
      
      --
      192320460  by Zhichao Lu:
      
          Returning eval_on_train_input_fn from create_estimator_and_inputs(), rather than using train_input_fn in EVAL mode (which will still have data augmentation).
      
      --
      192226678  by Zhichao Lu:
      
          Access TPUEstimator and CrossShardOptimizer from tf namesspace.
      
      --
      192195514  by Zhichao Lu:
      
          Fix test that was flaky due to randomness
      
      --
      192166224  by Zhichao Lu:
      
          Minor fixes to match git repo.
      
      --
      192147130  by Zhichao Lu:
      
          use shape utils for assertion in feature extractor.
      
      --
      192132440  by Zhichao Lu:
      
          Class agnostic masks for mask_rcnn
      
      --
      192006190  by Zhichao Lu:
      
          Add learning rate summary in EVAL mode in model.py
      
      --
      192004845  by Zhichao Lu:
      
          Migrating away from Experiment class, as it is now deprecated. Also, refactoring into a separate model library and binaries.
      
      --
      191957195  by Zhichao Lu:
      
          Add classification_loss and localiztion_loss metrics for TPU jobs.
      
      --
      191932855  by Zhichao Lu:
      
          Add an option to skip the last striding in mobilenet. The modified network has nominal output stride 16 instead of 32.
      
      --
      191787921  by Zhichao Lu:
      
          Add option to override base feature extractor hyperparams in SSD models. This would allow us to use the same set of hyperparams for the complete feature extractor (base + new layers) if desired.
      
      --
      191743097  by Zhichao Lu:
      
          Adding an attribute to SSD model to indicate which fields in prediction dictionary have a batch dimension. This will be useful for future video models.
      
      --
      191668425  by Zhichao Lu:
      
          Internal change.
      
      --
      191649512  by Zhichao Lu:
      
          Introduce two parameters in ssd.proto - freeze_batchnorm, inplace_batchnorm_update - and set up slim arg_scopes in ssd_meta_arch.py such that applies it to all batchnorm ops in the predict() method.
      
          This centralizes the control of freezing and doing inplace batchnorm updates.
      
      --
      191620303  by Zhichao Lu:
      
          Modifications to the preprocessor to support multiclass scores
      
      --
      
      PiperOrigin-RevId: 195269567
      63054210
  12. 01 May, 2018 1 commit
    • pkulzc's avatar
      Internal changes to slim and object detection (#4100) · 505f554c
      pkulzc authored
      * Adding option for one_box_for_all_classes to the box_predictor
      
      PiperOrigin-RevId: 192813444
      
      * Extend to accept different ratios of conv channels.
      
      PiperOrigin-RevId: 192837477
      
      * Remove inaccurate caveat from proto file.
      
      PiperOrigin-RevId: 192850747
      
      * Add option to set dropout for classification net in weight shared box predictor.
      
      PiperOrigin-RevId: 192922089
      
      * fix flakiness in testSSDRandomCropWithMultiClassScores due to randomness.
      
      PiperOrigin-RevId: 193067658
      
      * Post-process now works again in train mode.
      
      PiperOrigin-RevId: 193087707
      
      * Adding support for reading in logits as groundtruth labels and applying an optional temperature (scaling) before softmax in support of distillation.
      
      PiperOrigin-RevId: 193119411
      
      * Add a util function to visualize value histogram as a tf.summary.image.
      
      PiperOrigin-RevId: 193137342
      
      * Do not add batch norm parameters to final conv2d ops that predict boxes encodings and class scores in weight shared conv box predictor.
      
      This allows us to set proper bias and force initial predictions to be background when using focal loss.
      
      PiperOrigin-RevId: 193204364
      
      * Make sure the final layers are also resized proportional to conv_depth_ratio.
      
      PiperOrigin-RevId: 193228972
      
      * Remove deprecated batch_norm_trainable field from ssd mobilenet v2 config
      
      PiperOrigin-RevId: 193244778
      
      * Updating coco evaluation metrics to allow for a batch of image info, rather than a single image.
      
      PiperOrigin-RevId: 193382651
      
      * Update protobuf requirements to 3+ in installation docs.
      
      PiperOrigin-RevId: 193409179
      
      * Add support for training keypoints.
      
      PiperOrigin-RevId: 193576336
      
      * Fix data augmentation functions.
      
      PiperOrigin-RevId: 193737238
      
      * Read the default batch size from config file.
      
      PiperOrigin-RevId: 193959861
      
      * Fixing a bug in the coco evaluator.
      
      PiperOrigin-RevId: 193974479
      
      * num_gt_boxes_per_image and num_det_boxes_per_image value incorrect.
      Should be not the expand dim.
      
      PiperOrigin-RevId: 194122420
      
      * Add option to evaluate any checkpoint (without requiring write access to that directory and overwriting any existing logs there).
      
      PiperOrigin-RevId: 194292198
      
      * PiperOrigin-RevId: 190346687
      
      * - Expose slim arg_scope function to compute keys to enable tessting.
      - Add is_training=None option to mobinenet arg_scopes. This allows the users to set is_training from an outer scope.
      
      PiperOrigin-RevId: 190997959
      
      * Add an option to not set slim arg_scope for batch_norm is_training parameter. This enables users to set the is_training parameter from an outer scope.
      
      PiperOrigin-RevId: 191611934
      
      * PiperOrigin-RevId: 191955231
      
      * PiperOrigin-RevId: 193254125
      
      * PiperOrigin-RevId: 193371562
      
      * PiperOrigin-RevId: 194085628
      505f554c
  13. 13 Apr, 2018 1 commit
  14. 04 Apr, 2018 1 commit
    • Zhichao Lu's avatar
      Merged commit includes the following changes: · 6b72b5cd
      Zhichao Lu authored
      191649512  by Zhichao Lu:
      
          Introduce two parameters in ssd.proto - freeze_batchnorm, inplace_batchnorm_update - and set up slim arg_scopes in ssd_meta_arch.py such that applies it to all batchnorm ops in the predict() method.
      
          This centralizes the control of freezing and doing inplace batchnorm updates.
      
      --
      191620303  by Zhichao Lu:
      
          Modifications to the preprocessor to support multiclass scores
      
      --
      191610773  by Zhichao Lu:
      
          Adding multiclass_scores to InputDataFields and adding padding for multiclass_scores.
      
      --
      191595011  by Zhichao Lu:
      
          Contains implementation of the detection metric for the Open Images Challenge.
      
      --
      191449408  by Zhichao Lu:
      
          Change hyperparams_builder to return a callable so the users can inherit values from outer arg_scopes. This allows us to easily set batch_norm parameters like "is_training" and "inplace_batchnorm_update" for all feature extractors from the base class and propagate it correctly to the nested scopes.
      
      --
      191437008  by Zhichao Lu:
      
          Contains implementation of the Recall@N and MedianRank@N metrics.
      
      --
      191385254  by Zhichao Lu:
      
          Add config rewrite flag to eval.py
      
      --
      191382500  by Zhichao Lu:
      
          Fix bug for config_util.
      
      --
      
      PiperOrigin-RevId: 191649512
      6b72b5cd
  15. 03 Apr, 2018 6 commits
  16. 22 Mar, 2018 1 commit
    • pkulzc's avatar
      Internal changes for object detection. (#3656) · 001a2a61
      pkulzc authored
      * Force cast of num_classes to integer
      
      PiperOrigin-RevId: 188335318
      
      * Updating config util to allow overwriting of cosine decay learning rates.
      
      PiperOrigin-RevId: 188338852
      
      * Make box_list_ops.py and box_list_ops_test.py work with C API enabled.
      
      The C API has improved shape inference over the original Python
      code. This causes some previously-working conds to fail. Switching to smart_cond fixes this.
      
      Another effect of the improved shape inference is that one of the
      failures tested gets caught earlier, so I modified the test to reflect
      this.
      
      PiperOrigin-RevId: 188409792
      
      * Fix parallel event file writing issue.
      
      Without this change, the event files might get corrupted when multiple evaluations are run in parallel.
      
      PiperOrigin-RevId: 188502560
      
      * Deprecating the boolean flag of from_detection_checkpoint.
      
      Replace with a string field fine_tune_checkpoint_type to train_config to provide extensibility. The fine_tune_checkpoint_type can currently take value of `detection`, `classification`, or others when the restore_map is overwritten.
      
      PiperOrigin-RevId: 188518685
      
      * Automated g4 rollback of changelist 188502560
      
      PiperOrigin-RevId: 188519969
      
      * Introducing eval metrics specs for Coco Mask metrics. This allows metrics to be computed in tensorflow using the tf.learn Estimator.
      
      PiperOrigin-RevId: 188528485
      
      * Minor fix to make object_detection/metrics/coco_evaluation.py python3 compatible.
      
      PiperOrigin-RevId: 188550683
      
      * Updating eval_util to handle eval_metric_ops from multiple `DetectionEvaluator`s.
      
      PiperOrigin-RevId: 188560474
      
      * Allow tensor input for new_height and new_width for resize_image.
      
      PiperOrigin-RevId: 188561908
      
      * Fix typo in fine_tune_checkpoint_type name in trainer.
      
      PiperOrigin-RevId: 188799033
      
      * Adding mobilenet feature extractor to object detection.
      
      PiperOrigin-RevId: 188916897
      
      * Allow label maps to optionally contain an explicit background class with id zero.
      
      PiperOrigin-RevId: 188951089
      
      * Fix boundary conditions in random_pad_to_aspect_ratio to ensure that min_scale is always less than max_scale.
      
      PiperOrigin-RevId: 189026868
      
      * Fallback on from_detection_checkpoint option if fine_tune_checkpoint_type isn't set.
      
      PiperOrigin-RevId: 189052833
      
      * Add proper names for learning rate schedules so we don't see cryptic names on tensorboard.
      
      PiperOrigin-RevId: 189069837
      
      * Enforcing that all datasets are batched (and then unbatched in the model) with batch_size >= 1.
      
      PiperOrigin-RevId: 189117178
      
      * Adding regularization to total loss returned from DetectionModel.loss().
      
      PiperOrigin-RevId: 189189123
      
      * Standardize the names of loss scalars (for SSD, Faster R-CNN and R-FCN) in both training and eval so they can be compared on tensorboard.
      
      Log localization and classification losses in evaluation.
      
      PiperOrigin-RevId: 189189940
      
      * Remove negative test from box list ops test.
      
      PiperOrigin-RevId: 189229327
      
      * Add an option to warmup learning rate in manual stepping schedule.
      
      PiperOrigin-RevId: 189361039
      
      * Replace tf.contrib.slim.tfexample_decoder.LookupTensor with object_detection.data_decoders.tf_example_decoder.LookupTensor.
      
      PiperOrigin-RevId: 189388556
      
      * Force regularization summary variables under specific family names.
      
      PiperOrigin-RevId: 189393190
      
      * Automated g4 rollback of changelist 188619139
      
      PiperOrigin-RevId: 189396001
      
      * Remove step 0 schedule since we do a hard check for it after cl/189361039
      
      PiperOrigin-RevId: 189396697
      
      * PiperOrigin-RevId: 189040463
      
      * PiperOrigin-RevId: 189059229
      
      * PiperOrigin-RevId: 189214402
      
      * Force regularization summary variables under specific family names.
      
      PiperOrigin-RevId: 189393190
      
      * Automated g4 rollback of changelist 188619139
      
      PiperOrigin-RevId: 189396001
      
      * Make slim python3 compatible.
      
      * Monir fixes.
      
      * Add TargetAssignment summaries in a separate family.
      
      PiperOrigin-RevId: 189407487
      
      * 1. Setting `family` keyword arg prepends the summary names twice with the same name. Directly adding family suffix to the name gets rid of this problem.
      2. Make sure the eval losses have the same name.
      
      PiperOrigin-RevId: 189434618
      
      * Minor fixes to make object detection tf 1.4 compatible.
      
      PiperOrigin-RevId: 189437519
      
      * Call the base of mobilenet_v1 feature extractor under the right arg scope and set batchnorm is_training based on the value passed in the constructor.
      
      PiperOrigin-RevId: 189460890
      
      * Automated g4 rollback of changelist 188409792
      
      PiperOrigin-RevId: 189463882
      
      * Update object detection syncing.
      
      PiperOrigin-RevId: 189601955
      
      * Add an option to warmup learning rate, hold it constant for a certain number of steps and cosine decay it.
      
      PiperOrigin-RevId: 189606169
      
      * Let the proposal feature extractor function in faster_rcnn meta architectures return the activations (end_points).
      
      PiperOrigin-RevId: 189619301
      
      * Fixed bug which caused masks to be mostly zeros (caused by detection_boxes being in absolute coordinates if scale_to_absolute=True.
      
      PiperOrigin-RevId: 189641294
      
      * Open sourcing Mobilenetv2 + SSDLite.
      
      PiperOrigin-RevId: 189654520
      
      * Remove unused files.
      001a2a61
  17. 04 Mar, 2018 2 commits
  18. 27 Feb, 2018 1 commit
    • Zhichao Lu's avatar
      Merged commit includes the following changes: · 78d5f8f8
      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
      78d5f8f8
  19. 14 Feb, 2018 4 commits
  20. 10 Feb, 2018 1 commit
    • Zhichao Lu's avatar
      Merged commit includes the following changes: · 1efe98bb
      Zhichao Lu authored
      185215255  by Zhichao Lu:
      
          Stop populating image/object/class/text field when generating COCO tf record.
      
      --
      185213306  by Zhichao Lu:
      
          Use the params batch size and not the one from train_config in input_fn
      
      --
      185209081  by Zhichao Lu:
      
          Handle the case when there are no ground-truth masks for an image.
      
      --
      185195531  by Zhichao Lu:
      
          Remove unstack and stack operations on features from third_party/object_detection/model.py.
      
      --
      185195017  by Zhichao Lu:
      
          Matrix multiplication based gather op implementation.
      
      --
      185187744  by Zhichao Lu:
      
          Fix eval_util minor issue.
      
      --
      185098733  by Zhichao Lu:
      
          Internal change
      
      185076656  by Zhichao Lu:
      
          Increment the amount of boxes for coco17.
      
      --
      185074199  by Zhichao Lu:
      
          Add config for SSD Resnet50 v1 with FPN.
      
      --
      185060199  by Zhichao Lu:
      
          Fix a bug in clear_detections.
          This method set detection_keys to an empty dictionary instead of an empty set. I've refactored so that this method and the constructor use the same code path.
      
      --
      185031359  by Zhichao Lu:
      
          Eval TPU trained models continuously.
      
      --
      185016591  by Zhichao Lu:
      
          Use TPUEstimatorSpec for TPU
      
      --
      185013651  by Zhichao Lu:
      
          Add PreprocessorCache to record and duplicate augmentations.
      
      --
      184921763  by Zhichao Lu:
      
          Minor fixes for object detection.
      
      --
      184920610  by Zhichao Lu:
      
          Adds a model builder test for "embedded_ssd_mobilenet_v1" feature extractor.
      
      --
      184919284  by Zhichao Lu:
      
          Added unit tests for TPU, with optional training / eval.
      
      --
      184915910  by Zhichao Lu:
      
          Update third_party g3 doc with Mask RCNN detection models.
      
      --
      184914085  by Zhichao Lu:
      
          Slight change to WeightSharedConvolutionalBoxPredictor implementation to make things match more closely with RetinaNet.  Specifically we now construct the box encoding and class predictor towers separately rather than having them share weights until penultimate layer.
      
      --
      184913786  by Zhichao Lu:
      
          Plumbs SSD Resnet V1 with FPN models into model builder.
      
      --
      184910030  by Zhichao Lu:
      
          Add coco metrics to evaluator.
      
      --
      184897758  by Zhichao Lu:
      
          Merge changes from github.
      
      --
      184888736  by Zhichao Lu:
      
          Ensure groundtruth_weights are always 1-D.
      
      --
      184887256  by Zhichao Lu:
      
          Introduce an option to add summaries in the model so it can be turned off when necessary.
      
      --
      184865559  by Zhichao Lu:
      
          Updating inputs so that a dictionary of tensors is returned from input_fn. Moving unbatch/unpad to model.py.
          Also removing source_id key from features dictionary, and replacing with an integer hash.
      
      --
      184859205  by Zhichao Lu:
      
          This CL is trying to hide those differences by making the default settings work with the public code.
      
      --
      184769779  by Zhichao Lu:
      
          Pass groundtruth weights into ssd meta architecture all the way to target assigner.
      
          This will allow training ssd models with padded groundtruth tensors.
      
      --
      184767117  by Zhichao Lu:
      
          * Add `params` arg to make all input fns work with TPUEstimator
          * Add --master
          * Output eval results
      
      --
      184766244  by Zhichao Lu:
      
          Update create_coco_tf_record to include category indices
      
      --
      184752937  by Zhichao Lu:
      
          Create a third_party version of TPU compatible mobilenet_v2_focal_loss coco config.
      
      --
      184750174  by Zhichao Lu:
      
          A few small fixes for multiscale anchor generator and a test.
      
      --
      184746581  by Zhichao Lu:
      
          Update jupyter notebook to show mask if provided by model.
      
      --
      184728646  by Zhichao Lu:
      
          Adding a few more tests to make sure decoding with/without label maps performs as expected.
      
      --
      184624154  by Zhichao Lu:
      
          Add an object detection binary for TPU.
      
      --
      184622118  by Zhichao Lu:
      
          Batch, transform, and unbatch in the tflearn interface.
      
      --
      184595064  by Zhichao Lu:
      
          Add support for training grayscale models.
      
      --
      184532026  by Zhichao Lu:
      
          Change dataset_builder.build to perform optional batching using tf.data.Dataset API
      
      --
      184330239  by Zhichao Lu:
      
          Add augment_input_data and transform_input_data helper functions to third_party/tensorflow_models/object_detection/inputs.py
      
      --
      184328681  by Zhichao Lu:
      
          Use an internal rgb to gray method that can be quantized.
      
      --
      184327909  by Zhichao Lu:
      
          Helper function to return padding shapes to use with Dataset.padded_batch.
      
      --
      184326291  by Zhichao Lu:
      
          Added decode_func for specialized decoding.
      
      --
      184314676  by Zhichao Lu:
      
          Add unstack_batch method to inputs.py.
      
          This will enable us to convert batched tensors to lists of tensors. This is compatible with OD API that consumes groundtruth batch as a list of tensors.
      
      --
      184281269  by Zhichao Lu:
      
          Internal test target changes.
      
      --
      184192851  by Zhichao Lu:
      
          Adding `Estimator` interface for object detection.
      
      --
      184187885  by Zhichao Lu:
      
          Add config_util functions to help with input pipeline.
      
          1. function to return expected shapes from the resizer config
          2. function to extract image_resizer_config from model_config.
      
      --
      184139892  by Zhichao Lu:
      
          Adding support for depthwise SSD (ssd-lite) and depthwise box predictions.
      
      --
      184089891  by Zhichao Lu:
      
          Fix third_party faster rcnn resnet101 coco config.
      
      --
      184083378  by Zhichao Lu:
      
          In the case when there is no object/weights field in tf.Example proto, return a default weight of 1.0 for all boxes.
      
      --
      
      PiperOrigin-RevId: 185215255
      1efe98bb
  21. 05 Feb, 2018 1 commit
  22. 01 Feb, 2018 1 commit
    • Zhichao Lu's avatar
      Merged commit includes the following changes: · 7a9934df
      Zhichao Lu authored
      184048729  by Zhichao Lu:
      
          Modify target_assigner so that it creates regression targets taking keypoints into account.
      
      --
      184027183  by Zhichao Lu:
      
          Resnet V1 FPN based feature extractors for SSD meta architecture in Object Detection V2 API.
      
      --
      184004730  by Zhichao Lu:
      
          Expose a lever to override the configured mask_type.
      
      --
      183933113  by Zhichao Lu:
      
          Weight shared convolutional box predictor as described in https://arxiv.org/abs/1708.02002
      
      --
      183929669  by Zhichao Lu:
      
          Expanding box list operations for future data augmentations.
      
      --
      183916792  by Zhichao Lu:
      
          Fix unrecognized assertion function in tests.
      
      --
      183906851  by Zhichao Lu:
      
          - Change ssd meta architecture to use regression weights to compute loss normalizer.
      
      --
      183871003  by Zhichao Lu:
      
          Fix config_util_test wrong dependency.
      
      --
      183782120  by Zhichao Lu:
      
          Add __init__ file to third_party directories.
      
      --
      183779109  by Zhichao Lu:
      
          Setup regular version sync.
      
      --
      183768772  by Zhichao Lu:
      
          Make test compatible with numpy 1.12 and higher
      
      --
      183767893  by Zhichao Lu:
      
          Make test compatible with numpy 1.12 and higher
      
      --
      183719318  by Zhichao Lu:
      
          Use the new test interface in ssd feature extractor.
      
      --
      183714671  by Zhichao Lu:
      
          Use the new test_case interface for all anchor generators.
      
      --
      183708155  by Zhichao Lu:
      
          Change variable scopes in ConvolutionalBoxPredictor such that previously trained checkpoints are still compatible after the change in BoxPredictor interface
      
      --
      183705798  by Zhichao Lu:
      
          Internal change.
      
      --
      183636023  by Zhichao Lu:
      
          Fixing argument name for np_box_list_ops.concatenate() function.
      
      --
      183490404  by Zhichao Lu:
      
          Make sure code that relies in SSD older code still works.
      
      --
      183426762  by Zhichao Lu:
      
          Internal change
      
      183412315  by Zhichao Lu:
      
          Internal change
      
      183337814  by Zhichao Lu:
      
          Internal change
      
      183303933  by Zhichao Lu:
      
          Internal change
      
      183257349  by Zhichao Lu:
      
          Internal change
      
      183254447  by Zhichao Lu:
      
          Internal change
      
      183251200  by Zhichao Lu:
      
          Internal change
      
      183135002  by Zhichao Lu:
      
          Internal change
      
      182851500  by Zhichao Lu:
      
          Internal change
      
      182839607  by Zhichao Lu:
      
          Internal change
      
      182830719  by Zhichao Lu:
      
          Internal change
      
      182533923  by Zhichao Lu:
      
          Internal change
      
      182391090  by Zhichao Lu:
      
          Internal change
      
      182262339  by Zhichao Lu:
      
          Internal change
      
      182244645  by Zhichao Lu:
      
          Internal change
      
      182241613  by Zhichao Lu:
      
          Internal change
      
      182133027  by Zhichao Lu:
      
          Internal change
      
      182058807  by Zhichao Lu:
      
          Internal change
      
      181812028  by Zhichao Lu:
      
          Internal change
      
      181788857  by Zhichao Lu:
      
          Internal change
      
      181656761  by Zhichao Lu:
      
          Internal change
      
      181541125  by Zhichao Lu:
      
          Internal change
      
      181538702  by Zhichao Lu:
      
          Internal change
      
      181125385  by Zhichao Lu:
      
          Internal change
      
      180957758  by Zhichao Lu:
      
          Internal change
      
      180941434  by Zhichao Lu:
      
          Internal change
      
      180852569  by Zhichao Lu:
      
          Internal change
      
      180846001  by Zhichao Lu:
      
          Internal change
      
      180832145  by Zhichao Lu:
      
          Internal change
      
      180740495  by Zhichao Lu:
      
          Internal change
      
      180729150  by Zhichao Lu:
      
          Internal change
      
      180589008  by Zhichao Lu:
      
          Internal change
      
      180585408  by Zhichao Lu:
      
          Internal change
      
      180581039  by Zhichao Lu:
      
          Internal change
      
      180286388  by Zhichao Lu:
      
          Internal change
      
      179934081  by Zhichao Lu:
      
          Internal change
      
      179841242  by Zhichao Lu:
      
          Internal change
      
      179831694  by Zhichao Lu:
      
          Internal change
      
      179761005  by Zhichao Lu:
      
          Internal change
      
      179610632  by Zhichao Lu:
      
          Internal change
      
      179605363  by Zhichao Lu:
      
          Internal change
      
      179603774  by Zhichao Lu:
      
          Internal change
      
      179598614  by Zhichao Lu:
      
          Internal change
      
      179597809  by Zhichao Lu:
      
          Internal change
      
      179494630  by Zhichao Lu:
      
          Internal change
      
      179367492  by Zhichao Lu:
      
          Internal change
      
      179250050  by Zhichao Lu:
      
          Internal change
      
      179247385  by Zhichao Lu:
      
          Internal change
      
      179207897  by Zhichao Lu:
      
          Internal change
      
      179076230  by Zhichao Lu:
      
          Internal change
      
      178862066  by Zhichao Lu:
      
          Internal change
      
      178854216  by Zhichao Lu:
      
          Internal change
      
      178853109  by Zhichao Lu:
      
          Internal change
      
      178709753  by Zhichao Lu:
      
          Internal change
      
      178640707  by Zhichao Lu:
      
          Internal change
      
      178421534  by Zhichao Lu:
      
          Internal change
      
      178287174  by Zhichao Lu:
      
          Internal change
      
      178257399  by Zhichao Lu:
      
          Internal change
      
      177681867  by Zhichao Lu:
      
          Internal change
      
      177654820  by Zhichao Lu:
      
          Internal change
      
      177654052  by Zhichao Lu:
      
          Internal change
      
      177638787  by Zhichao Lu:
      
          Internal change
      
      177598305  by Zhichao Lu:
      
          Internal change
      
      177538488  by Zhichao Lu:
      
          Internal change
      
      177474197  by Zhichao Lu:
      
          Internal change
      
      177271928  by Zhichao Lu:
      
          Internal change
      
      177250285  by Zhichao Lu:
      
          Internal change
      
      177210762  by Zhichao Lu:
      
          Internal change
      
      177197135  by Zhichao Lu:
      
          Internal change
      
      177037781  by Zhichao Lu:
      
          Internal change
      
      176917394  by Zhichao Lu:
      
          Internal change
      
      176683171  by Zhichao Lu:
      
          Internal change
      
      176450793  by Zhichao Lu:
      
          Internal change
      
      176388133  by Zhichao Lu:
      
          Internal change
      
      176197721  by Zhichao Lu:
      
          Internal change
      
      176195315  by Zhichao Lu:
      
          Internal change
      
      176128748  by Zhichao Lu:
      
          Internal change
      
      175743440  by Zhichao Lu:
      
          Use Toggle instead of bool to make the layout optimizer name and usage consistent with other optimizers.
      
      --
      175578178  by Zhichao Lu:
      
          Internal change
      
      175463518  by Zhichao Lu:
      
          Internal change
      
      175316616  by Zhichao Lu:
      
          Internal change
      
      175302470  by Zhichao Lu:
      
          Internal change
      
      175300323  by Zhichao Lu:
      
          Internal change
      
      175269680  by Zhichao Lu:
      
          Internal change
      
      175260574  by Zhichao Lu:
      
          Internal change
      
      175122281  by Zhichao Lu:
      
          Internal change
      
      175111708  by Zhichao Lu:
      
          Internal change
      
      175110183  by Zhichao Lu:
      
          Internal change
      
      174877166  by Zhichao Lu:
      
          Internal change
      
      174868399  by Zhichao Lu:
      
          Internal change
      
      174754200  by Zhichao Lu:
      
          Internal change
      
      174544534  by Zhichao Lu:
      
          Internal change
      
      174536143  by Zhichao Lu:
      
          Internal change
      
      174513795  by Zhichao Lu:
      
          Internal change
      
      174463713  by Zhichao Lu:
      
          Internal change
      
      174403525  by Zhichao Lu:
      
          Internal change
      
      174385170  by Zhichao Lu:
      
          Internal change
      
      174358498  by Zhichao Lu:
      
          Internal change
      
      174249903  by Zhichao Lu:
      
          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
      
      --
      174216508  by Zhichao Lu:
      
          Internal change
      
      174065370  by Zhichao Lu:
      
          Internal change
      
      174048035  by Zhichao Lu:
      
          Fix the pointer for downloading the NAS Faster-RCNN model.
      
      --
      174042677  by Zhichao Lu:
      
          Internal change
      
      173964116  by Zhichao Lu:
      
          Internal change
      
      173790182  by Zhichao Lu:
      
          Internal change
      
      173779919  by Zhichao Lu:
      
          Internal change
      
      173753775  by Zhichao Lu:
      
          Internal change
      
      173753160  by Zhichao Lu:
      
          Internal change
      
      173737519  by Zhichao Lu:
      
          Internal change
      
      173696066  by Zhichao Lu:
      
          Internal change
      
      173611554  by Zhichao Lu:
      
          Internal change
      
      173475124  by Zhichao Lu:
      
          Internal change
      
      173412497  by Zhichao Lu:
      
          Internal change
      
      173404010  by Zhichao Lu:
      
          Internal change
      
      173375014  by Zhichao Lu:
      
          Internal change
      
      173345107  by Zhichao Lu:
      
          Internal change
      
      173298413  by Zhichao Lu:
      
          Internal change
      
      173289754  by Zhichao Lu:
      
          Internal change
      
      173275544  by Zhichao Lu:
      
          Internal change
      
      173273275  by Zhichao Lu:
      
          Internal change
      
      173271885  by Zhichao Lu:
      
          Internal change
      
      173264856  by Zhichao Lu:
      
          Internal change
      
      173263791  by Zhichao Lu:
      
          Internal change
      
      173261215  by Zhichao Lu:
      
          Internal change
      
      173175740  by Zhichao Lu:
      
          Internal change
      
      173010193  by Zhichao Lu:
      
          Internal change
      
      172815204  by Zhichao Lu:
      
          Allow for label maps in tf.Example decoding.
      
      --
      172696028  by Zhichao Lu:
      
          Internal change
      
      172509113  by Zhichao Lu:
      
          Allow for label maps in tf.Example decoding.
      
      --
      172475999  by Zhichao Lu:
      
          Internal change
      
      172166621  by Zhichao Lu:
      
          Internal change
      
      172151758  by Zhichao Lu:
      
          Minor updates to some README files.
      
          As a result of these friendly issues:
          https://github.com/tensorflow/models/issues/2530
          https://github.com/tensorflow/models/issues/2534
      
      --
      172147420  by Zhichao Lu:
      
          Fix illegal summary name and move from slim's get_or_create_global_step deprecated use of tf.contrib.framework* to tf.train*.
      
      --
      172111377  by Zhichao Lu:
      
          Internal change
      
      172004247  by Zhichao Lu:
      
          Internal change
      
      171996881  by Zhichao Lu:
      
          Internal change
      
      171835204  by Zhichao Lu:
      
          Internal change
      
      171826090  by Zhichao Lu:
      
          Internal change
      
      171784016  by Zhichao Lu:
      
          Internal change
      
      171699876  by Zhichao Lu:
      
          Internal change
      
      171053425  by Zhichao Lu:
      
          Internal change
      
      170905734  by Zhichao Lu:
      
          Internal change
      
      170889179  by Zhichao Lu:
      
          Internal change
      
      170734389  by Zhichao Lu:
      
          Internal change
      
      170705852  by Zhichao Lu:
      
          Internal change
      
      170401574  by Zhichao Lu:
      
          Internal change
      
      170352571  by Zhichao Lu:
      
          Internal change
      
      170215443  by Zhichao Lu:
      
          Internal change
      
      170184288  by Zhichao Lu:
      
          Internal change
      
      169936898  by Zhichao Lu:
      
          Internal change
      
      169763373  by Zhichao Lu:
      
          Fix broken GitHub links in tensorflow and tensorflow_models resulting from The Great Models Move (a.k.a. the research subfolder)
      
      --
      169744825  by Zhichao Lu:
      
          Internal change
      
      169638135  by Zhichao Lu:
      
          Internal change
      
      169561814  by Zhichao Lu:
      
          Internal change
      
      169444091  by Zhichao Lu:
      
          Internal change
      
      169292330  by Zhichao Lu:
      
          Internal change
      
      169145185  by Zhichao Lu:
      
          Internal change
      
      168906035  by Zhichao Lu:
      
          Internal change
      
      168790411  by Zhichao Lu:
      
          Internal change
      
      168708911  by Zhichao Lu:
      
          Internal change
      
      168611969  by Zhichao Lu:
      
          Internal change
      
      168535975  by Zhichao Lu:
      
          Internal change
      
      168381815  by Zhichao Lu:
      
          Internal change
      
      168244740  by Zhichao Lu:
      
          Internal change
      
      168240024  by Zhichao Lu:
      
          Internal change
      
      168168016  by Zhichao Lu:
      
          Internal change
      
      168071571  by Zhichao Lu:
      
          Move display strings to below the bounding box if they would otherwise be outside the image.
      
      --
      168067771  by Zhichao Lu:
      
          Internal change
      
      167970950  by Zhichao Lu:
      
          Internal change
      
      167884533  by Zhichao Lu:
      
          Internal change
      
      167626173  by Zhichao Lu:
      
          Internal change
      
      167277422  by Zhichao Lu:
      
          Internal change
      
      167249393  by Zhichao Lu:
      
          Internal change
      
      167248954  by Zhichao Lu:
      
          Internal change
      
      167189395  by Zhichao Lu:
      
          Internal change
      
      167107797  by Zhichao Lu:
      
          Internal change
      
      167061250  by Zhichao Lu:
      
          Internal change
      
      166871147  by Zhichao Lu:
      
          Internal change
      
      166867617  by Zhichao Lu:
      
          Internal change
      
      166862112  by Zhichao Lu:
      
          Internal change
      
      166715648  by Zhichao Lu:
      
          Internal change
      
      166635615  by Zhichao Lu:
      
          Internal change
      
      166383182  by Zhichao Lu:
      
          Internal change
      
      166371326  by Zhichao Lu:
      
          Internal change
      
      166254711  by Zhichao Lu:
      
          Internal change
      
      166106294  by Zhichao Lu:
      
          Internal change
      
      166081204  by Zhichao Lu:
      
          Internal change
      
      165972262  by Zhichao Lu:
      
          Internal change
      
      165816702  by Zhichao Lu:
      
          Internal change
      
      165764471  by Zhichao Lu:
      
          Internal change
      
      165724134  by Zhichao Lu:
      
          Internal change
      
      165655829  by Zhichao Lu:
      
          Internal change
      
      165587904  by Zhichao Lu:
      
          Internal change
      
      165534540  by Zhichao Lu:
      
          Internal change
      
      165177692  by Zhichao Lu:
      
          Internal change
      
      165091822  by Zhichao Lu:
      
          Internal change
      
      165019730  by Zhichao Lu:
      
          Internal change
      
      165002942  by Zhichao Lu:
      
          Internal change
      
      164897728  by Zhichao Lu:
      
          Internal change
      
      164782618  by Zhichao Lu:
      
          Internal change
      
      164710379  by Zhichao Lu:
      
          Internal change
      
      164639237  by Zhichao Lu:
      
          Internal change
      
      164069251  by Zhichao Lu:
      
          Internal change
      
      164058169  by Zhichao Lu:
      
          Internal change
      
      163913796  by Zhichao Lu:
      
          Internal change
      
      163756696  by Zhichao Lu:
      
          Internal change
      
      163524665  by Zhichao Lu:
      
          Internal change
      
      163393399  by Zhichao Lu:
      
          Internal change
      
      163385733  by Zhichao Lu:
      
          Internal change
      
      162525065  by Zhichao Lu:
      
          Internal change
      
      162376984  by Zhichao Lu:
      
          Internal change
      
      162026661  by Zhichao Lu:
      
          Internal change
      
      161956004  by Zhichao Lu:
      
          Internal change
      
      161817520  by Zhichao Lu:
      
          Internal change
      
      161718688  by Zhichao Lu:
      
          Internal change
      
      161624398  by Zhichao Lu:
      
          Internal change
      
      161575120  by Zhichao Lu:
      
          Internal change
      
      161483997  by Zhichao Lu:
      
          Internal change
      
      161462189  by Zhichao Lu:
      
          Internal change
      
      161452968  by Zhichao Lu:
      
          Internal change
      
      161443992  by Zhichao Lu:
      
          Internal change
      
      161408607  by Zhichao Lu:
      
          Internal change
      
      161262084  by Zhichao Lu:
      
          Internal change
      
      161214023  by Zhichao Lu:
      
          Internal change
      
      161025667  by Zhichao Lu:
      
          Internal change
      
      160982216  by Zhichao Lu:
      
          Internal change
      
      160666760  by Zhichao Lu:
      
          Internal change
      
      160570489  by Zhichao Lu:
      
          Internal change
      
      160553112  by Zhichao Lu:
      
          Internal change
      
      160458261  by Zhichao Lu:
      
          Internal change
      
      160349302  by Zhichao Lu:
      
          Internal change
      
      160296092  by Zhichao Lu:
      
          Internal change
      
      160287348  by Zhichao Lu:
      
          Internal change
      
      160199279  by Zhichao Lu:
      
          Internal change
      
      160160156  by Zhichao Lu:
      
          Internal change
      
      160151954  by Zhichao Lu:
      
          Internal change
      
      160005404  by Zhichao Lu:
      
          Internal change
      
      159983265  by Zhichao Lu:
      
          Internal change
      
      159819896  by Zhichao Lu:
      
          Internal change
      
      159749419  by Zhichao Lu:
      
          Internal change
      
      159596448  by Zhichao Lu:
      
          Internal change
      
      159587801  by Zhichao Lu:
      
          Internal change
      
      159587342  by Zhichao Lu:
      
          Internal change
      
      159476256  by Zhichao Lu:
      
          Internal change
      
      159463992  by Zhichao Lu:
      
          Internal change
      
      159455585  by Zhichao Lu:
      
          Internal change
      
      159270798  by Zhichao Lu:
      
          Internal change
      
      159256633  by Zhichao Lu:
      
          Internal change
      
      159141989  by Zhichao Lu:
      
          Internal change
      
      159079098  by Zhichao Lu:
      
          Internal change
      
      159078559  by Zhichao Lu:
      
          Internal change
      
      159077055  by Zhichao Lu:
      
          Internal change
      
      159072046  by Zhichao Lu:
      
          Internal change
      
      159071092  by Zhichao Lu:
      
          Internal change
      
      159069262  by Zhichao Lu:
      
          Internal change
      
      159037430  by Zhichao Lu:
      
          Internal change
      
      159035747  by Zhichao Lu:
      
          Internal change
      
      159023868  by Zhichao Lu:
      
          Internal change
      
      158939092  by Zhichao Lu:
      
          Internal change
      
      158912561  by Zhichao Lu:
      
          Internal change
      
      158903825  by Zhichao Lu:
      
          Internal change
      
      158894348  by Zhichao Lu:
      
          Internal change
      
      158884934  by Zhichao Lu:
      
          Internal change
      
      158878010  by Zhichao Lu:
      
          Internal change
      
      158874620  by Zhichao Lu:
      
          Internal change
      
      158869501  by Zhichao Lu:
      
          Internal change
      
      158842623  by Zhichao Lu:
      
          Internal change
      
      158801298  by Zhichao Lu:
      
          Internal change
      
      158775487  by Zhichao Lu:
      
          Internal change
      
      158773668  by Zhichao Lu:
      
          Internal change
      
      158771394  by Zhichao Lu:
      
          Internal change
      
      158668928  by Zhichao Lu:
      
          Internal change
      
      158596865  by Zhichao Lu:
      
          Internal change
      
      158587317  by Zhichao Lu:
      
          Internal change
      
      158586348  by Zhichao Lu:
      
          Internal change
      
      158585707  by Zhichao Lu:
      
          Internal change
      
      158577134  by Zhichao Lu:
      
          Internal change
      
      158459749  by Zhichao Lu:
      
          Internal change
      
      158459678  by Zhichao Lu:
      
          Internal change
      
      158328972  by Zhichao Lu:
      
          Internal change
      
      158324255  by Zhichao Lu:
      
          Internal change
      
      158319576  by Zhichao Lu:
      
          Internal change
      
      158290802  by Zhichao Lu:
      
          Internal change
      
      158273041  by Zhichao Lu:
      
          Internal change
      
      158240477  by Zhichao Lu:
      
          Internal change
      
      158204316  by Zhichao Lu:
      
          Internal change
      
      158154161  by Zhichao Lu:
      
          Internal change
      
      158077203  by Zhichao Lu:
      
          Internal change
      
      158041397  by Zhichao Lu:
      
          Internal change
      
      158029233  by Zhichao Lu:
      
          Internal change
      
      157976306  by Zhichao Lu:
      
          Internal change
      
      157966896  by Zhichao Lu:
      
          Internal change
      
      157945642  by Zhichao Lu:
      
          Internal change
      
      157943135  by Zhichao Lu:
      
          Internal change
      
      157942158  by Zhichao Lu:
      
          Internal change
      
      157897866  by Zhichao Lu:
      
          Internal change
      
      157866667  by Zhichao Lu:
      
          Internal change
      
      157845915  by Zhichao Lu:
      
          Internal change
      
      157842592  by Zhichao Lu:
      
          Internal change
      
      157832761  by Zhichao Lu:
      
          Internal change
      
      157824451  by Zhichao Lu:
      
          Internal change
      
      157816531  by Zhichao Lu:
      
          Internal change
      
      157782130  by Zhichao Lu:
      
          Internal change
      
      157733752  by Zhichao Lu:
      
          Internal change
      
      157654577  by Zhichao Lu:
      
          Internal change
      
      157639285  by Zhichao Lu:
      
          Internal change
      
      157530694  by Zhichao Lu:
      
          Internal change
      
      157518469  by Zhichao Lu:
      
          Internal change
      
      157514626  by Zhichao Lu:
      
          Internal change
      
      157481413  by Zhichao Lu:
      
          Internal change
      
      157267863  by Zhichao Lu:
      
          Internal change
      
      157263616  by Zhichao Lu:
      
          Internal change
      
      157234554  by Zhichao Lu:
      
          Internal change
      
      157174595  by Zhichao Lu:
      
          Internal change
      
      157169681  by Zhichao Lu:
      
          Internal change
      
      157156425  by Zhichao Lu:
      
          Internal change
      
      157024436  by Zhichao Lu:
      
          Internal change
      
      157016195  by Zhichao Lu:
      
          Internal change
      
      156941658  by Zhichao Lu:
      
          Internal change
      
      156880859  by Zhichao Lu:
      
          Internal change
      
      156790636  by Zhichao Lu:
      
          Internal change
      
      156565969  by Zhichao Lu:
      
          Internal change
      
      156522345  by Zhichao Lu:
      
          Internal change
      
      156518570  by Zhichao Lu:
      
          Internal change
      
      156509878  by Zhichao Lu:
      
          Internal change
      
      156509134  by Zhichao Lu:
      
          Internal change
      
      156472497  by Zhichao Lu:
      
          Internal change
      
      156471429  by Zhichao Lu:
      
          Internal change
      
      156470865  by Zhichao Lu:
      
          Internal change
      
      156461563  by Zhichao Lu:
      
          Internal change
      
      156437521  by Zhichao Lu:
      
          Internal change
      
      156334994  by Zhichao Lu:
      
          Internal change
      
      156319604  by Zhichao Lu:
      
          Internal change
      
      156234305  by Zhichao Lu:
      
          Internal change
      
      156226207  by Zhichao Lu:
      
          Internal change
      
      156215347  by Zhichao Lu:
      
          Internal change
      
      156127227  by Zhichao Lu:
      
          Internal change
      
      156120405  by Zhichao Lu:
      
          Internal change
      
      156113752  by Zhichao Lu:
      
          Internal change
      
      156098936  by Zhichao Lu:
      
          Internal change
      
      155924066  by Zhichao Lu:
      
          Internal change
      
      155883241  by Zhichao Lu:
      
          Internal change
      
      155806887  by Zhichao Lu:
      
          Internal change
      
      155641849  by Zhichao Lu:
      
          Internal change
      
      155593034  by Zhichao Lu:
      
          Internal change
      
      155570702  by Zhichao Lu:
      
          Internal change
      
      155515306  by Zhichao Lu:
      
          Internal change
      
      155514787  by Zhichao Lu:
      
          Internal change
      
      155445237  by Zhichao Lu:
      
          Internal change
      
      155438672  by Zhichao Lu:
      
          Internal change
      
      155264448  by Zhichao Lu:
      
          Internal change
      
      155222148  by Zhichao Lu:
      
          Internal change
      
      155106590  by Zhichao Lu:
      
          Internal change
      
      155090562  by Zhichao Lu:
      
          Internal change
      
      154973775  by Zhichao Lu:
      
          Internal change
      
      154972880  by Zhichao Lu:
      
          Internal change
      
      154871596  by Zhichao Lu:
      
          Internal change
      
      154835007  by Zhichao Lu:
      
          Internal change
      
      154788175  by Zhichao Lu:
      
          Internal change
      
      154731169  by Zhichao Lu:
      
          Internal change
      
      154721261  by Zhichao Lu:
      
          Internal change
      
      154594626  by Zhichao Lu:
      
          Internal change
      
      154588305  by Zhichao Lu:
      
          Internal change
      
      154578994  by Zhichao Lu:
      
          Internal change
      
      154571515  by Zhichao Lu:
      
          Internal change
      
      154552873  by Zhichao Lu:
      
          Internal change
      
      154549672  by Zhichao Lu:
      
          Internal change
      
      154463631  by Zhichao Lu:
      
          Internal change
      
      154437690  by Zhichao Lu:
      
          Internal change
      
      154412359  by Zhichao Lu:
      
          Internal change
      
      154374026  by Zhichao Lu:
      
          Internal change
      
      154361648  by Zhichao Lu:
      
          Internal change
      
      154310164  by Zhichao Lu:
      
          Internal change
      
      154220862  by Zhichao Lu:
      
          Internal change
      
      154187281  by Zhichao Lu:
      
          Internal change
      
      154186651  by Zhichao Lu:
      
          Internal change
      
      154119783  by Zhichao Lu:
      
          Internal change
      
      154114285  by Zhichao Lu:
      
          Internal change
      
      154095717  by Zhichao Lu:
      
          Internal change
      
      154057972  by Zhichao Lu:
      
          Internal change
      
      154055285  by Zhichao Lu:
      
          Internal change
      
      153659288  by Zhichao Lu:
      
          Internal change
      
      153637797  by Zhichao Lu:
      
          Internal change
      
      153561771  by Zhichao Lu:
      
          Internal change
      
      153540765  by Zhichao Lu:
      
          Internal change
      
      153496128  by Zhichao Lu:
      
          Internal change
      
      153473323  by Zhichao Lu:
      
          Internal change
      
      153368812  by Zhichao Lu:
      
          Internal change
      
      153367292  by Zhichao Lu:
      
          Internal change
      
      153201890  by Zhichao Lu:
      
          Internal change
      
      153074177  by Zhichao Lu:
      
          Internal change
      
      152980017  by Zhichao Lu:
      
          Internal change
      
      152978434  by Zhichao Lu:
      
          Internal change
      
      152951821  by Zhichao Lu:
      
          Internal change
      
      152904076  by Zhichao Lu:
      
          Internal change
      
      152883703  by Zhichao Lu:
      
          Internal change
      
      152869747  by Zhichao Lu:
      
          Internal change
      
      152827463  by Zhichao Lu:
      
          Internal change
      
      152756886  by Zhichao Lu:
      
          Internal change
      
      152752840  by Zhichao Lu:
      
          Internal change
      
      152736347  by Zhichao Lu:
      
          Internal change
      
      152728184  by Zhichao Lu:
      
          Internal change
      
      152720120  by Zhichao Lu:
      
          Internal change
      
      152710964  by Zhichao Lu:
      
          Internal change
      
      152706735  by Zhichao Lu:
      
          Internal change
      
      152681133  by Zhichao Lu:
      
          Internal change
      
      152517758  by Zhichao Lu:
      
          Internal change
      
      152516381  by Zhichao Lu:
      
          Internal change
      
      152511258  by Zhichao Lu:
      
          Internal change
      
      152319164  by Zhichao Lu:
      
          Internal change
      
      152316404  by Zhichao Lu:
      
          Internal change
      
      152309261  by Zhichao Lu:
      
          Internal change
      
      152308007  by Zhichao Lu:
      
          Internal change
      
      152296551  by Zhichao Lu:
      
          Internal change
      
      152188069  by Zhichao Lu:
      
          Internal change
      
      152158644  by Zhichao Lu:
      
          Internal change
      
      152153578  by Zhichao Lu:
      
          Internal change
      
      152152285  by Zhichao Lu:
      
          Internal change
      
      152055035  by Zhichao Lu:
      
          Internal change
      
      152036778  by Zhichao Lu:
      
          Internal change
      
      152020728  by Zhichao Lu:
      
          Internal change
      
      152014842  by Zhichao Lu:
      
          Internal change
      
      151848225  by Zhichao Lu:
      
          Internal change
      
      151741308  by Zhichao Lu:
      
          Internal change
      
      151740499  by Zhichao Lu:
      
          Internal change
      
      151736189  by Zhichao Lu:
      
          Internal change
      
      151612892  by Zhichao Lu:
      
          Internal change
      
      151599502  by Zhichao Lu:
      
          Internal change
      
      151538547  by Zhichao Lu:
      
          Internal change
      
      151496530  by Zhichao Lu:
      
          Internal change
      
      151476070  by Zhichao Lu:
      
          Internal change
      
      151448662  by Zhichao Lu:
      
          Internal change
      
      151411627  by Zhichao Lu:
      
          Internal change
      
      151397737  by Zhichao Lu:
      
          Internal change
      
      151169523  by Zhichao Lu:
      
          Internal change
      
      151148956  by Zhichao Lu:
      
          Internal change
      
      150944227  by Zhichao Lu:
      
          Internal change
      
      150276683  by Zhichao Lu:
      
          Internal change
      
      149986687  by Zhichao Lu:
      
          Internal change
      
      149218749  by Zhichao Lu:
      
          Internal change
      
      PiperOrigin-RevId: 184048729
      7a9934df
  23. 23 Jan, 2018 1 commit
  24. 22 Jan, 2018 1 commit
  25. 20 Jan, 2018 1 commit
  26. 07 Nov, 2017 1 commit
  27. 03 Nov, 2017 1 commit
  28. 29 Oct, 2017 1 commit
  29. 27 Oct, 2017 2 commits