- 30 Nov, 2018 4 commits
-
-
Chris Shallue authored
PiperOrigin-RevId: 223442581
-
Chris Shallue authored
PiperOrigin-RevId: 223437592
-
Chris Shallue authored
Also fix a few lint errors in unit tests. PiperOrigin-RevId: 223434695
-
Chris Shallue authored
PiperOrigin-RevId: 223433850
-
- 27 Nov, 2018 2 commits
- 26 Nov, 2018 2 commits
-
-
Menglong Zhu authored
* Add a second expected_loss_weights function using an alternative expectation calculation compared to previous. Integrate this op into ssd_meta_arch and losses builder. Affects files that use losses_builder.build to handle the returning of an additional element. PiperOrigin-RevId: 219190083 * Fix dependency issues. PiperOrigin-RevId: 222888231 * Update CODEOWNERS Add @masonliuw and @yinxiaoli to /research/lstm_object_detection/
-
Martin Wicke authored
Open souring mobile video object detection framework
-
- 21 Nov, 2018 3 commits
-
-
Vyas Adhikari authored
Updated to 1.9 for consistency with running_pets.md
-
josh11b authored
-
josh11b authored
We've deprecated the "tower" terminology in DistributionStrategy, so the "cross_tower_ops" argument is now "cross_device_ops", matching the current name of "AllReduceCrossDeviceOps".
-
- 20 Nov, 2018 4 commits
-
-
Vyas Adhikari authored
Another error appears when an incompatible version of Tensorboard is installed. Need to ensure Tensorboard is 1.9 as well
-
Manoj Plakal authored
Switching to more robust pysoundfile for reading wav files
-
Chris Shallue authored
Explicitly mention Python 2.7 in README for research/im2txt
-
Chris Shallue authored
Freeze environment using Conda for research/im2txt
-
- 19 Nov, 2018 6 commits
-
-
Neal Wu authored
Added struct2depth model
-
Anelia Angelova authored
-
Yukun Zhu authored
Improved performance of deeplab inference
-
Vyas Adhikari authored
Updated doc as well line 211.
-
Adrian Boguszewski authored
-
Vyas Adhikari authored
Line 219 runtime version updated to 1.9, causes error otherwise
-
- 17 Nov, 2018 1 commit
-
-
HelgeS authored
-
- 14 Nov, 2018 1 commit
-
-
josh11b authored
`num_replicas` is being replaced by `num_replicas_in_sync` and something that returns the number of steps running concurrently.
-
- 12 Nov, 2018 2 commits
-
-
derekjchow authored
Update lite path + fix --config option
-
Samuel Neugber authored
-
- 11 Nov, 2018 1 commit
-
-
Daniel Hunter authored
`lite` is no longer under `contrib`. Additionally, `--config=opt` fails, see: https://github.com/tensorflow/serving/issues/517
-
- 08 Nov, 2018 1 commit
-
-
Samuel Neugber authored
-
- 07 Nov, 2018 1 commit
-
-
Reed authored
This tag should match EVAL_HP_NUM_NEG.
-
- 05 Nov, 2018 4 commits
-
-
Manoj Plakal authored
Revert "Use explicit relative import syntax for python 3 compatibility in audioset."
-
David T.H. Kao authored
-
Billy Lamberta authored
Update 4_Neural_Style_Transfer_with_Eager_Execution.ipynb
-
fuzzythecat authored
Fixed grammar errors and typos.
-
- 04 Nov, 2018 2 commits
-
-
Manoj Plakal authored
Use explicit relative import syntax for python 3 compatibility in audioset.
-
David Kao authored
-
- 03 Nov, 2018 1 commit
-
-
Reed authored
I've noticed sometimes the async process's pool processes do not die when ncf_main.py ends and kills the async process. This commit fixes the issue.
-
- 02 Nov, 2018 2 commits
-
-
pkulzc authored
* Internal change. PiperOrigin-RevId: 213914693 * Add original_image_spatial_shape tensor in input dictionary to store shape of the original input image PiperOrigin-RevId: 214018767 * Remove "groundtruth_confidences" from decoders use "groundtruth_weights" to indicate label confidence. This also solves a bug that only surfaced now - random crop routines in core/preprocessor.py did not correctly handle "groundtruth_weight" tensors returned by the decoders. PiperOrigin-RevId: 214091843 * Update CocoMaskEvaluator to allow for a batch of image info, rather than a single image. PiperOrigin-RevId: 214295305 * Adding the option to be able to summarize gradients. PiperOrigin-RevId: 214310875 * Adds FasterRCNN inference on CPU 1. Adds a flag use_static_shapes_for_eval to restrict to the ops that guarantees static shape. 2. No filtering of overlapping anchors while clipping the anchors when use_static_shapes_for_eval is set to True. 3. Adds test for faster_rcnn_meta_arch for predict and postprocess in inference mode for first and second stages. PiperOrigin-RevId: 214329565 * Fix model_lib eval_spec_names assignment (integer->string). PiperOrigin-RevId: 214335461 * Refactor Mask HEAD to optionally upsample after applying convolutions on ROI crops. PiperOrigin-RevId: 214338440 * Uses final_exporter_name as exporter_name for the first eval spec for backward compatibility. PiperOrigin-RevId: 214522032 * Add reshaped `mask_predictions` tensor to the prediction dictionary in `_predict_third_stage` method to allow computing mask loss in eval job. PiperOrigin-RevId: 214620716 * Add support for fully conv training to fpn. PiperOrigin-RevId: 214626274 * Fix the proprocess() function in Resnet v1 to make it work for any number of input channels. Note: If the #channels != 3, this will simply skip the mean subtraction in preprocess() function. PiperOrigin-RevId: 214635428 * Wrap result_dict_for_single_example in eval_util to run for batched examples. PiperOrigin-RevId: 214678514 * Adds PNASNet-based (ImageNet model) feature extractor for SSD. PiperOrigin-RevId: 214988331 * Update documentation PiperOrigin-RevId: 215243502 * Correct index used to compute number of groundtruth/detection boxes in COCOMaskEvaluator. Due to an incorrect indexing in cl/214295305 only the first detection mask and first groundtruth mask for a given image are fed to the COCO Mask evaluation library. Since groundtruth masks are arranged in no particular order, the first and highest scoring detection mask (detection masks are ordered by score) won't match the the first and only groundtruth retained in all cases. This is I think why mask evaluation metrics do not get better than ~11 mAP. Note that this code path is only active when using model_main.py binary for evaluation. This change fixes the indices and modifies an existing test case to cover it. PiperOrigin-RevId: 215275936 * Fixing grayscale_image_resizer to accept mask as input. PiperOrigin-RevId: 215345836 * Add an option not to clip groundtruth boxes during preprocessing. Clipping boxes adversely affects training for partially occluded or large objects, especially for fully conv models. Clipping already occurs during postprocessing, and should not occur during training. PiperOrigin-RevId: 215613379 * Always return recalls and precisions with length equal to the number of classes. The previous behavior of ObjectDetectionEvaluation was somewhat dangerous: when no groundtruth boxes were present, the lists of per-class precisions and recalls were simply truncated. Unless you were aware of this phenomenon (and consulted the `num_gt_instances_per_class` vector) it was difficult to associate each metric with each class. PiperOrigin-RevId: 215633711 * Expose the box feature node in SSD. PiperOrigin-RevId: 215653316 * Fix ssd mobilenet v2 _CONV_DEFS overwriting issue. PiperOrigin-RevId: 215654160 * More documentation updates PiperOrigin-RevId: 215656580 * Add pooling + residual option in multi_resolution_feature_maps. It adds an average pooling and a residual layer between feature maps with matching depth. Designed to be used with WeightSharedBoxPredictor. PiperOrigin-RevId: 215665619 * Only call create_modificed_mobilenet_config on init if use_depthwise is true. PiperOrigin-RevId: 215784290 * Only call create_modificed_mobilenet_config on init if use_depthwise is true. PiperOrigin-RevId: 215837524 * Don't prune keypoints if clip_boxes is false. PiperOrigin-RevId: 216187642 * Makes sure "key" field exists in the result dictionary. PiperOrigin-RevId: 216456543 * Add add_background_class parameter to allow disabling the inclusion of a background class. PiperOrigin-RevId: 216567612 * Update expected_classification_loss_under_sampling to better account for expected sampling. PiperOrigin-RevId: 216712287 * Let the evaluation receive a evaluation class in its constructor. PiperOrigin-RevId: 216769374 * This CL adds model building & training support for end-to-end Keras-based SSD models. If a Keras feature extractor's name is specified in the model config (e.g. 'ssd_mobilenet_v2_keras'), the model will use that feature extractor and a corresponding Keras-based box predictor. This CL makes sure regularization losses & batch norm updates work correctly when training models that have Keras-based components. It also updates the default hyperparameter settings of the keras-based mobilenetV2 (when not overriding hyperparams) to more closely match the legacy Slim training scope. PiperOrigin-RevId: 216938707 * Adding the ability in the coco evaluator to indicate whether an image has been annotated. For a non-annotated image, detections and groundtruth are not supplied. PiperOrigin-RevId: 217316342 * Release the 8k minival dataset ids for MSCOCO, used in Huang et al. "Speed/accuracy trade-offs for modern convolutional object detectors" (https://arxiv.org/abs/1611.10012) PiperOrigin-RevId: 217549353 * Exposes weighted_sigmoid_focal loss for faster rcnn classifier PiperOrigin-RevId: 217601740 * Add detection_features to output nodes. The shape of the feature is [batch_size, max_detections, depth]. PiperOrigin-RevId: 217629905 * FPN uses a custom NN resize op for TPU-compatibility. Replace this op with the Tensorflow version at export time for TFLite-compatibility. PiperOrigin-RevId: 217721184 * Compute `num_groundtruth_boxes` in inputs.tranform_input_data_fn after data augmentation instead of decoders. PiperOrigin-RevId: 217733432 * 1. Stop gradients from flowing into groundtruth masks with zero paddings. 2. Normalize pixelwise cross entropy loss across the whole batch. PiperOrigin-RevId: 217735114 * Optimize Input pipeline for Mask R-CNN on TPU with blfoat16: improve the step time from: 1663.6 ms -> 1184.2 ms, about 28.8% improvement. PiperOrigin-RevId: 217748833 * Fixes to export a TPU compatible model Adds nodes to each of the output tensor. Also increments the value of class labels by 1. PiperOrigin-RevId: 217856760 * API changes: - change the interface of target assigner to return per-class weights. - change the interface of classification loss to take per-class weights. PiperOrigin-RevId: 217968393 * Add an option to override pipeline config in export_saved_model using command line arg PiperOrigin-RevId: 218429292 * Include Quantized trained MobileNet V2 SSD and FaceSsd in model zoo. PiperOrigin-RevId: 218530947 * Write final config to disk in `train` mode only. PiperOrigin-RevId: 218735512
-
Toby Boyd authored
Remove progress indicator from Movielens download
-
- 01 Nov, 2018 3 commits
-
-
Reed authored
-
Taylor Robie authored
-
Jon Shlens authored
update the calculation of num_batches_per_epoch
-