1. 06 Apr, 2020 1 commit
  2. 04 Apr, 2020 1 commit
    • Jaeyoun Kim's avatar
      Updated README and CODEOWNERS (#8360) · 6f574922
      Jaeyoun Kim authored
      * Update README.md
      
      Added a new logo
      Updated maintainer information
      Updated the paper title for brain_coder
      
      * Update CODEOWNERS
      
      Updated the maintainer info for lfads
      6f574922
  3. 03 Apr, 2020 1 commit
  4. 02 Apr, 2020 1 commit
  5. 01 Apr, 2020 1 commit
  6. 31 Mar, 2020 1 commit
  7. 30 Mar, 2020 1 commit
  8. 03 Mar, 2020 1 commit
    • Liangzhe's avatar
      Merged commit includes the following changes: (#8235) · 4a0b3e4b
      Liangzhe authored
      
      
      298416930  by lzyuan:
      
          Explicitly mark base models' state inputs as 'raw_inputs/init_lstm_h_1' and 'raw_inputs_init_lstm_h_2' when pre_bottleneck=True.
      
      --
      298380851  by skligys:
      
          Fix LSTD LSTM cells to use fixed_quantize_op().
      
      --
      297662737  by Menglong Zhu:
      
          Explicitly replace "import tensorflow" with "tensorflow.compat.v1" for TF2.x migration
      
      --
      289667197  by lzyuan:
      
          Internal update.
      
      --
      288607438  by lzyuan:
      
          Enforce feature_extractor construction using arg keys.
      
      --
      
      PiperOrigin-RevId: 298416930
      Co-authored-by: default avatarMenglong Zhu <menglong@google.com>
      4a0b3e4b
  9. 26 Feb, 2020 1 commit
  10. 24 Feb, 2020 1 commit
  11. 22 Feb, 2020 1 commit
  12. 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
  13. 20 Feb, 2020 1 commit
  14. 19 Feb, 2020 1 commit
  15. 18 Feb, 2020 1 commit
  16. 15 Feb, 2020 2 commits
  17. 13 Feb, 2020 1 commit
  18. 12 Feb, 2020 1 commit
  19. 30 Jan, 2020 4 commits
  20. 29 Jan, 2020 1 commit
  21. 24 Jan, 2020 1 commit
  22. 23 Jan, 2020 1 commit
  23. 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
  24. 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
  25. 14 Jan, 2020 1 commit
  26. 13 Jan, 2020 3 commits
  27. 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
  28. 02 Jan, 2020 1 commit
  29. 22 Dec, 2019 1 commit
  30. 19 Dec, 2019 1 commit
  31. 08 Dec, 2019 1 commit
  32. 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
  33. 04 Dec, 2019 1 commit
  34. 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