- 15 Feb, 2020 2 commits
- 13 Feb, 2020 1 commit
-
-
Alexander Gorban authored
* research/attention_ocr: Minor changes to make it compatible with python 3. * research/attention_ocr: Script to create a smaller test file.
-
- 12 Feb, 2020 1 commit
-
-
Hongkun Yu authored
* Remove differential_privacy and morph_net from research folder because they have been migrated to google-research/ for a while * Update README.md * Update CODEOWNERS
-
- 30 Jan, 2020 4 commits
-
-
Hongkun Yu authored
Remove resnet in readme
-
Francesco Franchina authored
Since the GAN link is now dead, it can safely be removed.
-
https://github.com/tensorflow/ganJing Li authored
-
Hongkun Yu authored
-
- 29 Jan, 2020 1 commit
-
-
WYLDYR authored
-
- 24 Jan, 2020 1 commit
-
-
faizanf47 authored
The colab and github link were in wrong hrefs.
-
- 23 Jan, 2020 1 commit
-
-
Jeff Snyder authored
Colab will soon update the default version of tensorflow to 2.1.0. In order for this notebook to continue to work, I'm adding a line magic that will ensure this notebook continues to use tensorflow 1.x and execute without errors.
-
- 22 Jan, 2020 1 commit
-
-
Mark Sandler authored
Internal cleanup (py2->py3) plus the following changes: 285513318 by Sergio Guadarrama: Adds a script for post-training quantization 284222305 by Sergio Guadarrama: Modified squeeze-excite operation to accommodate tensors of undefined (Nonetype) H/W. 282028343 by Sergio Guadarrama: Add MobilenetV3 and MobilenetEdgeTPU to the slim/nets_factory. PiperOrigin-RevId: 289455329 Co-authored-by:Sergio Guadarrama <sguada@gmail.com>
-
- 18 Jan, 2020 1 commit
-
-
Manoj Plakal authored
- Made code work with either TF v1.x or TF v2.x, while explicitly enabling v1.x behavior.l - Pulled slim from tf_slim package instead of through tensorflow contrib. Note that tf_slim itself uses tensorflow contrib so it requires using TF v1.x for now (referenced a relevant PR which should remove this limitation once it gets merged). - Removed all mention of scipy. Switched wav writing to soundfile. - Switched package name to soundfile instead of pysoundfile. The former is the newer name. - Updated installation instructions for both vggish and yamnet to reflect these changes. - Tested new installation procedures. vggish works with TF v1.15, yamnet works with TF v1.15.0 as well as TF v2.1.0.
-
- 14 Jan, 2020 1 commit
-
-
Dan Ellis authored
-
- 13 Jan, 2020 3 commits
- 08 Jan, 2020 1 commit
-
-
Skirmantas Kligys authored
* Push conflicting earlier changes in files touched. PiperOrigin-RevId: 268414407 PiperOrigin-RevId: 278006953 PiperOrigin-RevId: 281567252 PiperOrigin-RevId: 288363770 * Removes tf.contrib usage and replaces them with direct imports for lstm object detection. PiperOrigin-RevId: 286065032 * Internal changes. PiperOrigin-RevId: 288363770
-
- 02 Jan, 2020 1 commit
-
-
Jason421 authored
-
- 22 Dec, 2019 1 commit
-
-
Hougang Liu authored
-
- 19 Dec, 2019 1 commit
-
-
Jeff Snyder authored
Colab will soon update the default version of tensorflow to 2.1.0. In order for this notebook to continue to work, I'm adding a line magic that will ensure this notebook continues to use tensorflow 1.x and execute without errors.
-
- 08 Dec, 2019 1 commit
-
-
Hongkun Yu authored
Fix link.
-
- 06 Dec, 2019 1 commit
-
-
Skirmantas Kligys authored
* Manually quantize selected inputs before summing them up. PiperOrigin-RevId: 283653640 * Fix messy variable paths in LSTD head. With a VariableScope passed as parameter into tf.variable_scope(), TF gets all confused and starts placing variables into scopes different from operations (variable_scope != name_scope). That leads to very messy TF graphs. Before CL: FeatureExtractor/LSTM/conv_lstm_cell/bottleneck_0/depthwise_weights FeatureExtractor/LSTM/LSTM/conv_lstm_cell/bottleneck_0/separable_conv2d/depthwise After CL: FeatureExtractor/LSTM/conv_lstm_cell/bottleneck_0/depthwise_weights FeatureExtractor/LSTM/conv_lstm_cell/bottleneck_0/separable_conv2d/depthwise PiperOrigin-RevId: 284011539
-
- 04 Dec, 2019 1 commit
-
-
Philip Yang authored
Fix variable name issue in MobileNet example notebook. Make sure all `base_name` variables are renamed to `checkpoint_name`.
-
- 30 Nov, 2019 1 commit
-
-
ReGuess authored
The wget command for the KITTI dataset in the currently downloads the html for GitHub's fancy display of the text file. This change fixes that so it instead downloads the raw txt file (no more trying to resolve host '<')
-
- 22 Nov, 2019 1 commit
-
-
Yukun Zhu authored
-
- 21 Nov, 2019 3 commits
- 19 Nov, 2019 1 commit
-
-
Meghna Natraj authored
* Internal changes to tf.contrib symbols PiperOrigin-RevId: 277940048 * Create visualwakewords dataset using slim scripts instead of custom scripts. PiperOrigin-RevId: 278917344 * update for python3.0 compatibility
-
- 14 Nov, 2019 2 commits
-
-
Yukun Zhu authored
Thanks to issue raised at https://github.com/tensorflow/models/issues/7799
-
Henry authored
* Fix segmentation fault on client destruction. edgetpu::EdgeTpuContext needs to be created before tflite::Interpreter
-
- 13 Nov, 2019 2 commits
-
-
Mark Sandler authored
280142968 by Zhichao Lu: Opensource MobilenetEdgeTPU + ssdlite into third-party object detection APIs on EdgeTPU. -- 280134001 by Zhichao Lu: Adds MobilenetEdgeTpu + ssdlite into internal object detection APIs on EdgeTPU. -- 278941778 by Zhichao Lu: Add support for fixed input shapes for 'encoded_image_string_tensor' and 'tf_example' inputs. -- 278933274 by Zhichao Lu: Adding fool proof check to avoid using 1x1 depthwise conv op. -- 278762192 by Zhichao Lu: Ensure correct number of iterations after training resumes. -- 278746440 by Zhichao Lu: Internal change. -- 278006953 by Zhichao Lu: Internal changes to tf.contrib symbols -- 278006330 by Zhichao Lu: Internal changes to tf.contrib symbols -- 277593959 by Zhichao Lu: Make the ssd_feature_extractor_test.py PY3 compatible. The "six.zip" will use "itertools.izip" in Python 2 and "zip" in Python 3.... -
Mark Sandler authored
280061731 by Sergio Guadarrama: Fix table formatting in mobilenet readme -- 280059345 by Sergio Guadarrama: Internal change PiperOrigin-RevId: 280061731
-
- 12 Nov, 2019 5 commits
-
-
Mark Sandler authored
279978375 by Sergio Guadarrama: Pass s=2 to the expanded_conv block so it can apply residual correctly in case of fused convolutions. (Before it was relying on channel mismatch only) -- 279788358 by Sergio Guadarrama: Update README to add mobilenet-edgetpu details -- 279774392 by Sergio Guadarrama: Adds MobilenetV3-EdgeTpu definition. -- 278917344 by Sergio Guadarrama: Create visualwakewords dataset using slim scripts instead of custom scripts. -- 277940048 by Sergio Guadarrama: Internal changes to tf.contrib symbols -- PiperOrigin-RevId: 279978375 -
Yukun Zhu authored
-
Yukun Zhu authored
-
Yukun Zhu authored
* Update for py3 and some internal changes * \nInternal refactor\n PiperOrigin-RevId: 279809827 * clean up
-
Yukun Zhu authored
-
- 21 Oct, 2019 1 commit
-
-
pkulzc authored
275538818 by Sergio Guadarrama: Support grayscale input images in Slim model training -- 275355841 by Sergio Guadarrama: Fixed cases where tf.TensorShape was constructed with float dimensions This is a prerequisite for making TensorShape and Dimension more strict about the types of their arguments. -- 275131829 by Sergio Guadarrama: updates mobilenet/README.md to be github compatible adds V2+ reference to mobilenet_v1.md file and fixes invalid markdown -- PiperOrigin-RevId: 275538818
-