1. 19 Mar, 2018 3 commits
  2. 16 Mar, 2018 12 commits
  3. 15 Mar, 2018 13 commits
  4. 14 Mar, 2018 7 commits
  5. 13 Mar, 2018 5 commits
    • Taylor Robie's avatar
      Unified arg parser (#3574) · 086d9148
      Taylor Robie authored
      Create groups of arg parsers and convert the official resnet model to
      the new arg parsers.
      086d9148
    • Scott Zhu's avatar
      Add data schema for the benchmark run in Bigquery. · 83a867b9
      Scott Zhu authored
      The current schema contains the entity information about model
      and train data metadata, as well as machine config. Future change
      will contain benchmark metric.
      
      The json schema can be used to create bigquery table. A sample
      table can be found in
      https://bigquery.cloud.google.com/table/tf-benchmark-dashboard:test_benchmark.benchmark_run.
      83a867b9
    • Karmel Allison's avatar
      Preprocessing tuning for resnet (#3558) · 86b1f07b
      Karmel Allison authored
      86b1f07b
    • Mark Sandler's avatar
      Pulling internal changes to github (#3583) · 376dc8dd
      Mark Sandler authored
      * Internal change.
      
      PiperOrigin-RevId: 187042423
      
      * Internal change.
      
      PiperOrigin-RevId: 187072380
      
      * Opensource float and eight-bit fixed-point mobilenet_v1 training and eval scripts.
      
      PiperOrigin-RevId: 187106140
      
      * Initial check-in for Mobilenet V2
      
      PiperOrigin-RevId: 187213595
      
      * Allow configuring batch normalization decay and epsilon in MobileNet v1
      
      PiperOrigin-RevId: 187425294
      
      * Allow overriding NASNet model HParams.
      
      This is a change to the API that will allow users to pass in their own configs
      to the building functions, which should make these APIs much more customizable
      for end-user cases.
      
      This change removes the use_aux_head argument from the model construction
      functions, which is no longer necessary given that the use_aux_head option is
      configurable in the model config. For example, for the mobile ImageNet model,
      the auxiliary head can be disabled using:
      
      config = nasnet.mobile_imagenet_config()
      config.set_hparam('use_aux_head', 0)
      logits, endpoints = nasnet.build_nasnet_mobile(
          inputs, num_classes, config=config)
      PiperOrigin-RevId: 188617685
      
      * Automated g4 rollback of changelist 188617685
      
      PiperOrigin-RevId: 188619139
      
      * Removes spurious comment
      376dc8dd
    • Yanhui Liang's avatar
      Add logging utils (#3519) · 81a34cbe
      Yanhui Liang authored
      * Adding logging utils
      
      * restore utils
      
      * delete old file
      
      * update inputs and docstrings
      
      * Update import and fix typos
      
      * Fix formatting and comments
      
      * Update tests
      81a34cbe