1. 24 10月, 2019 2 次提交
  2. 23 10月, 2019 2 次提交
  3. 22 10月, 2019 3 次提交
  4. 21 10月, 2019 1 次提交
  5. 20 10月, 2019 2 次提交
  6. 18 10月, 2019 3 次提交
  7. 17 10月, 2019 1 次提交
  8. 16 10月, 2019 2 次提交
  9. 15 10月, 2019 7 次提交
  10. 14 10月, 2019 9 次提交
  11. 13 10月, 2019 5 次提交
    • G
      Fix basic_gru and docs of gru_unit and dynamic_gru (#19393) · bd99df71
      Guo Sheng 提交于
      * Fix docs of gru_unit and dynamic_gru.
      
      Fix basic_gru in rnn_impl.py.
      
      Add error messages for param_attr setting in layer_norm api.
      
      Add int64 dtype for expand.
      
      test=develop
      
      * Reopen unit-tests of basic_gru/basic_lstm in rnn_impl.py.
      test=develop
      
      * Add unit test for layer_norm api.
      test=develop
      
      * Remove the deprecated gru doc fix. test=develop
      
      * Fix basic_gru test coverage. test=develop
      
      * Update API.spec. test=develop
      
      * Update API.spec. test=develop
      
      * Fix test_basic_gru coverage test. test=develop
      
      * Update test_basic_gru in test_layers to use fluid.data
      test=develop
      
      * Update test_basic_gru for coverage. test=develop
      bd99df71
    • Y
      Refine error message of transpose_op (#20437) · 172e91c0
      Yuan Shuai 提交于
      * Refine error message of transpose.
      * Fix transpose, multiplex, unsqueeze, unstack. test=develop, test=document_preview, test=document_fix
      172e91c0
    • H
      Fix the error message of zeros op (#20476) · f567214b
      hong19860320 提交于
      * fix the error message of zeros op
      test=develop
      
      * Fix unittest of zeros op
      test=develop
      f567214b
    • L
      fill_constant support Tensor; (#20521) · fc6ec3b9
      liym27 提交于
      2. fix bug in backward.py: using fill_constant instead of fill_constant_batch_size_like
      3. fix bug in ExpandGradOp.
      
      test=develop
      fc6ec3b9
    • Z
      fixed group_norm's bug and modified unittest (#20506) · 0130cc96
      Zhang Ting 提交于
      * modified group_norm's unittest for pass statement, test=develop
      
      * fix group_norm's bug: scale or bias is None which causes segmentation fault, test=develop
      0130cc96
  12. 12 10月, 2019 3 次提交
    • G
      Fix the assign data check (#20564) · c7ae6c62
      Guo Sheng 提交于
      * Fix the assign data check. test=develop
      
      * Fix test_assign_op.py. test=develop
      c7ae6c62
    • L
      Add API 'fluid.requird_version(min_version, max_version=None)' to check if the... · 22ecaef0
      lanxianghit 提交于
      Add API 'fluid.requird_version(min_version, max_version=None)' to check if the installed PaddlePaddle version is satisfied, test=develop (#20263)
      
      添加API:fluid.version_required(min_version, max_version=None),用于检查已安装的PaddlePaddle版本是否符合要求
      无返回值,如果已安装的版本不在区间[min_version, max_version],则抛出异常。
      例:安装的版本为1.6.0,调用:fluid.require_version('1.5.0', '1.5.1'),则抛出异常:
      Exception: VersionError: PaddlePaddle version in [1.5.0, 1.5.1] required, but 1.6.0 installed.
      22ecaef0
    • G
      Add seq2seq api related code (#19820) · dfd1eee7
      Guo Sheng 提交于
      dfd1eee7