- 09 4月, 2020 1 次提交
-
-
由 liym27 提交于
-
- 08 4月, 2020 1 次提交
-
-
由 liym27 提交于
* API (Switch) error message enhancement. * fix bug: dtype of out in api isfinite is set incorrectly. The dtype should be bool.
-
- 03 4月, 2020 2 次提交
- 02 4月, 2020 1 次提交
-
-
由 songyouwei 提交于
* support tensor array create read write in dygraph test=develop * minor fix test=develop * support tensor_array_to_tensor test=develop * add while loop case and err msg test=develop * refine ut test=develop
-
- 25 3月, 2020 1 次提交
-
-
由 Aurelius84 提交于
* Polish error Info in while_loop test=develop
-
- 19 3月, 2020 1 次提交
-
-
由 Aurelius84 提交于
* support to modify dict and list in while_loop test=develop * polish code test=develop
-
- 18 3月, 2020 1 次提交
-
-
由 liym27 提交于
-
- 26 2月, 2020 1 次提交
-
-
由 songyouwei 提交于
* dygraph support cond op test=develop * unittest coverage test=develop * fix coverage test=develop * fix for coverage test=develop * refine TypeError msg test=develop * remove restrict test=develop
-
- 25 2月, 2020 2 次提交
-
-
由 songyouwei 提交于
* dygraph support while_loop op test=develop * refine assign test=develop
-
由 Huihuang Zheng 提交于
As the title
-
- 23 2月, 2020 1 次提交
-
-
由 tianshuo78520a 提交于
-
- 17 2月, 2020 1 次提交
-
-
由 guofei 提交于
Modify english document and unittest of while_loop
-
- 14 2月, 2020 1 次提交
-
-
由 guofei 提交于
As the title.
-
- 11 2月, 2020 1 次提交
-
-
由 guofei 提交于
This PR makes assign op support LoDTensorArray and enable the loop_vars in while_loop to support tuple or list.
-
- 06 2月, 2020 1 次提交
-
-
由 Tao Luo 提交于
-
- 08 1月, 2020 1 次提交
-
-
由 Zhang Ting 提交于
-
- 07 1月, 2020 1 次提交
-
-
由 liym27 提交于
-
- 04 1月, 2020 1 次提交
-
-
由 liym27 提交于
* append optimize op in the grad block of current block if current block is in control flow. test=develop * add conditional grad op when optimizer used in control flow. test=develop * add comment and modify typo. test=develop * fix append_backward to support control flow. test=develop * add test. test=develop * fix copy_var_to_parent_block and conditional_block_grad. test=develop * fix bug: revert to append conditional_block_grad vars to sub grad block. test=develop * fix bug: revert to assign var to parent block even if var already is in parent block * fix bug: consider outputs is empty. test=develop * move _rename_grad_ out. test=develop * modify code according to reviews from Huihuang. test=develop * modify code according to reviews from Jinle. test=develop
-
- 24 12月, 2019 1 次提交
-
-
由 guofei 提交于
-
- 09 12月, 2019 2 次提交
-
-
由 Huihuang Zheng 提交于
As the title
-
由 guofei 提交于
Add basic while_loop
-
- 06 12月, 2019 1 次提交
-
-
由 Huihuang Zheng 提交于
Add tests to use dy/dx to make sure the gradient values calculated by the control flow backward is correct. Also fixed bugs detected by those tests. Fix bugs: 1. Unlike sum_op, optimizer ops don't allow uninitialized input tensor. But in conditional_block_grad_op, since the conditional_block may not run, the output gradient tensor may be uninitialized, which will cause the optimizer op error. To fix it, we should let optimizer ops support uninitialized input like sum_op or assign the uninitialized gradient to 0 when the conditional_block_grad_op doesn't run. I found there are about 10+ optimizer ops. **To be simpler, I just assign output gradient of the conditional_block_grad_op to 0 in this PR**. But it can be further explored whether we can make optimizer ops like sum_op to support uninitialized input tensor because theoretically we can speed up without the assigning in conditional_block_grad_op. 2. Infer parameter shapes during append_backward. I didn't know that all our parameters are in global block. When op_desc is inferring shapes at the sub-block, it may not know the shape of gradients of parameters whose shape information is at global block. I fixed it by inferring shapes of gradients from forward var. This PR also did some code clean up: 1. Print the var name when sgd_op catches shape error so that it is easier to debug 2. Fix a typo: dicta -> dict
-
- 02 12月, 2019 2 次提交
-
-
由 liym27 提交于
-
由 Huihuang Zheng 提交于
Add English doc for cond
-
- 29 11月, 2019 1 次提交
-
-
由 Huihuang Zheng 提交于
* Commit before merging develop test=develop * Backup after working with Huihuang logs * Commit before deleting Huihuang debug loggings * Commit before debug test=develop * Fix bug commit test=develop * Backup of fixing bugs test=develop * Clean up code test=develop * Fix a bug in sum_op test=develop
-
- 25 11月, 2019 1 次提交
-
-
由 lijianshe02 提交于
-
- 21 11月, 2019 1 次提交
-
-
由 lijianshe02 提交于
* add input type and input data type check for Print_op test=develop
-
- 20 11月, 2019 1 次提交
-
-
由 liym27 提交于
* add control flow API: case. test=develop * delete 'raise TypeError' in _error_message() and return a string. test=develop * polish API document. test=develop
-
- 18 11月, 2019 1 次提交
-
-
由 liym27 提交于
* add API switch_case. test=develop add Nest * modify code according to reviews: 1.Attr(branch_index) support 'uint8' and 'int64' besides 'int32'. 2.remove useless code. test=develop * replace fluid.layers.data with fluid.data and polish API document. test=develop
-
- 11 11月, 2019 1 次提交
-
-
由 Huihuang Zheng 提交于
-
- 07 11月, 2019 1 次提交
-
-
由 Huihuang Zheng 提交于
These ops are useful in control flow.
-
- 12 10月, 2019 2 次提交
-
-
由 zhaoyuchen2018 提交于
* Refine create_array api en doc test=develop test=document_fix * Fix api doc example bug and polish square test=develop test=document_fix * Refine comment test=develop test=document_fix * refine API.spec test=develop test=document_fix
-
由 hong19860320 提交于
refine the en api doc of ones, zeros, reverse, assign, increment, hsigmoid and create_py_reader_by_data ops (#20343) * refine the en api doc of ones, zeros, reverse, increment, hsigmoid and create_py_reader_by_data ops test=develop, test=document_preview, test=document_fix * refine eng doc for hsigmoid and create_py_reader_by_data ops test=develop, test=document_preview, test=document_fix * update API.spec test=document_fix * Fix the parameter name axis of reverse op in eng doc test=develop, test=document_fix * Update API.spec test=develop, test=document_fix * Refine eng doc of zeros, ones, reverse and assign op test=develop, test=document_fix * Update API.spec for assign, ones, zeros and reverse test=develop, test=document_fix * Fix data type of reverse op in eng doc test=develop, test=document_fix * Update API.spec for reverse op test=develop, test=document_fix
-
- 11 10月, 2019 6 次提交
-
-
由 lijianshe02 提交于
* fix Print, is_empty, read_file test=document_fix
-
由 Yiqun Liu 提交于
* Refine the main comment of DynamicRNN. * Refine the documentation of DynamicRNN's step_input function. * Refine the documentation of DynamicRNN's static_input function. * Refine the documentation of DynamicRNN's block function. * Refine the documentation of DynamicRNN's memory function. * Refine the documentation of DynamicRNN's update_memory and output function. * Refine the code format and remove the method list. * Refine the documentation of DynamicRNN's __call__ function. test=develop test=document_fix * Minor modification. test=develop test=document_fix * Fix some typo. * Update API.spec. test=develop test=document_fix * Refine the English according to the comments. * Update API.spec. test=develop test=document_fix * Fix some typo. * Update API.spec.
-
由 Wilber 提交于
* modify english api test=develop test=document_fix - leaky_relu - less_than - log - logical_and - logical_or - logical_xor - logical_not
-
由 wangchaochaohu 提交于
* fix some en doc test=develop test=document_fix * fix new fluid.data API.spec test=develop test=document_fix * fix typo test=develop, test=document_fix * fix typo test=develop test=document_fix * fix typo test=develop test=document_fix * fix test=develop test=document_fix * fix according review test=develop test=document_fix * fix review test=develop test=document_fix * fix according review advice test=develop test=document_fix * fix the doc test=develop test=document_fix * fix API.spec test=develop test=document_fix
-
由 zhouwei25 提交于
* fix English Doc of API:layers.py_func/sum, test=document_fix * fix English Doc of API:layers.array_read/array_write/array_length,test=develop test=document_fix
-
由 huzhiqiang 提交于
fix reorder_lod_tensor_by_rank doc en
-