1. 02 12月, 2020 7 次提交
    • C
      Supprot precision test for code analysis · 597897e3
      chalsliu 提交于
      597897e3
    • M
      Update APIs in text/datasets and dataloader (#29219) · a37963b8
      mls1999725 提交于
      * Update IterableDataset API
      
      * Update TensorDataset API
      
      * Update APIs in paddle/text/datasets
      
      * Update dataset.py
      a37963b8
    • M
      Update Codes of Cifar and VOC2012 (#29204) · 493568b0
      mls1999725 提交于
      * Update Cifar Codes
      
      * Update VOC2012 Codes
      
      * Update voc2012.py
      
      * Update voc2012.py
      
      * Update cifar.py
      
      * Update cifar.py
      
      * Update voc2012.py
      493568b0
    • M
      Update get_worker_info API (#29190) · 0aedd463
      mls1999725 提交于
      * Update get_worker_info API
      
      * Update dataloader_iter.py
      
      * Update dataloader_iter.py
      
      * Update dataloader_iter.py
      0aedd463
    • S
    • M
      Update conv3d API (#29205) · 6a9a62c3
      mls1999725 提交于
      * Update conv3d API
      
      * Update nn.py
      
      * Update nn.py
      
      * Update nn.py
      
      * Update nn.py
      
      * Update nn.py
      
      * Update nn.py
      
      * Update nn.py
      
      * Update nn.py
      6a9a62c3
    • H
      [Dy2stat] Fix PaddleGan Deoldify Model Dy2stat Problems (#29226) · aec05d81
      Huihuang Zheng 提交于
      This PR fixes several problems in dy2stat for Deoldify model in PaddleGan.
      
      In model, software engineer wrote if x.shape == y.shape, the Tenser shape is a tuple in dygraph so the == returns True/False, but in static graph the == becomes element-wise comparison, which is a different behavior. In this PR we reduce the element-wise comparison result.
      
      If software engineer write computations which uses parameters in hooks, the static graph can loss the parameter variable because we put param_guard at forward of a Layer. In this PR we made param_guard cover pre-hook and post-hook.
      
      In PaddleGan, software engineer calculated some parameter values in __init__ by running some dygraph code. Those code also run during dy2stat. So some variables may be assign as a VarBase (Tensor) first and then Variable, which raised an error. We fixed the bug in this PR by handling the case.
      
      TODO: We just added testcase for the 1. shape comparison. Should add test case for 2. and 3. But since we are chasing 2.0RC, I will do it in the near future PR
      aec05d81
  2. 01 12月, 2020 20 次提交
  3. 30 11月, 2020 13 次提交