"docs/source/vscode:/vscode.git/clone" did not exist on "2d867b55fa17840b50709fa12106e9fd6b2f527d"
  1. 22 Feb, 2020 1 commit
  2. 21 Feb, 2020 1 commit
    • Hongkun Yu's avatar
      Delete models:syntaxnet (#8170) · 4f84a69a
      Hongkun Yu authored
      * remove tensorrt as the example repo has been moved for a while
      
      * delete syntax net to reduce repo size as syntax net is going to move to google-research/
      
      * Update README.md
      
      Delete syntaxnet from readme.
      
      * Update CODEOWNERS
      
      Delete syntaxnet from codeowners
      4f84a69a
  3. 20 Feb, 2020 1 commit
  4. 19 Feb, 2020 1 commit
  5. 18 Feb, 2020 1 commit
  6. 15 Feb, 2020 2 commits
  7. 13 Feb, 2020 1 commit
  8. 12 Feb, 2020 1 commit
  9. 30 Jan, 2020 4 commits
  10. 29 Jan, 2020 1 commit
  11. 24 Jan, 2020 1 commit
  12. 23 Jan, 2020 1 commit
  13. 22 Jan, 2020 1 commit
    • Mark Sandler's avatar
      Merged commit includes the following changes: (#8077) · d4eedbb9
      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: default avatarSergio Guadarrama <sguada@gmail.com>
      d4eedbb9
  14. 18 Jan, 2020 1 commit
    • Manoj Plakal's avatar
      Cleaned up dependences and install instructions for vggish and yamnet. (#8059) · 831281ce
      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.
      831281ce
  15. 14 Jan, 2020 1 commit
  16. 13 Jan, 2020 3 commits
  17. 08 Jan, 2020 1 commit
    • Skirmantas Kligys's avatar
      Update for tensorflow.contrib removal. (#8010) · 9302933b
      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
      9302933b
  18. 02 Jan, 2020 1 commit
  19. 22 Dec, 2019 1 commit
  20. 19 Dec, 2019 1 commit
  21. 08 Dec, 2019 1 commit
  22. 06 Dec, 2019 1 commit
    • Skirmantas Kligys's avatar
      Push CLs 283653640, 284011539 (#7921) · 22e20f84
      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
      22e20f84
  23. 04 Dec, 2019 1 commit
  24. 30 Nov, 2019 1 commit
    • ReGuess's avatar
      Update vid2depth/README.md: use raw.githubcontent (#7881) · d49cb9ef
      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 '<')
      d49cb9ef
  25. 22 Nov, 2019 1 commit
  26. 21 Nov, 2019 3 commits
  27. 19 Nov, 2019 1 commit
  28. 14 Nov, 2019 2 commits
  29. 13 Nov, 2019 2 commits
    • Mark Sandler's avatar
      Merged commit includes the following changes: (#7800) · b968a6ce
      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....
      b968a6ce
    • Mark Sandler's avatar
      Merged commit includes the following changes: (#7798) · 377c5285
      Mark Sandler authored
      280061731  by Sergio Guadarrama:
      
          Fix table formatting in mobilenet readme
      
      --
      280059345  by Sergio Guadarrama:
      
          Internal change
      
      PiperOrigin-RevId: 280061731
      377c5285
  30. 12 Nov, 2019 1 commit
    • Mark Sandler's avatar
      Merged commit includes the following changes: (#7797) · ba87e2c6
      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
      ba87e2c6