Yu Yang
|
acc54c7ba7
|
Merge branch 'develop' of github.com:baidu/Paddle into feature/implenment_infer_var_type
|
8 years ago |
Dong Zhihong
|
b3df1f4a49
|
"fix tests"
|
8 years ago |
Dong Zhihong
|
2434b8f5fb
|
" add interface to scopeDesc bind"
|
8 years ago |
Dong Zhihong
|
3f4177ea8d
|
Merge branch 'develop' into fix/scope
|
8 years ago |
qijun
|
4741266d6f
|
remove unused method
|
8 years ago |
qijun
|
931572e210
|
SelectedRowsAddTensor method
|
8 years ago |
fengjiayi
|
5d9ce04625
|
Debug string for Python ProtoBuf (#4800)
* Add debug string for Python ProtoBuf
and Rename `Sync` to `Flush`
* Add check of ProtoBuf initialization
|
8 years ago |
fengjiayi
|
2c46666e7b
|
Add grad_name_map to record correspondences between vars and grad_vars (#4794)
* Add grad_name_map
* Fix bug
* Fix bug
* Follow comments
|
8 years ago |
qijun
|
7b18343305
|
remove unused header file
|
8 years ago |
qijun
|
5be10872f9
|
add selected_rows add cpu functor
|
8 years ago |
Yu Yang
|
a96372b108
|
Merge branch 'develop' of github.com:baidu/Paddle into feature/implenment_infer_var_type
|
8 years ago |
Yu Yang
|
1b1cb44f13
|
Complete infer_var_type
|
8 years ago |
zchen0211
|
652f182dc0
|
deconv
|
8 years ago |
QI JUN
|
9165235a9e
|
Merge pull request #4782 from QiJune/selected_rows
add selected rows
|
8 years ago |
zchen0211
|
da399ae6b1
|
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into develop
|
8 years ago |
Yu Yang
|
d17eb73e9f
|
Update VarDesc from design doc (#4769)
* Update VarDesc from design doc
* Fix GCC compile
* Fix unittest
|
8 years ago |
Yu Yang
|
9a6dffd4d9
|
Fix CPU compile (#4781)
|
8 years ago |
Yi Wang
|
ab01347944
|
Update register_grad_op.md (#4784)
|
8 years ago |
tensor-tang
|
7a7c8fd9e5
|
simplify some comments and code
|
8 years ago |
Luo Tao
|
abfa81b106
|
Merge branch 'develop' into seqpool
|
8 years ago |
Tao Luo
|
918d69467c
|
Merge pull request #4791 from typhoonzero/fix_pybind_op_reg_nokernel
Fix pybind op register nokernel
|
8 years ago |
Guo Sheng
|
a0af1eeabf
|
Merge pull request #4443 from guoshengCS/add-GRUStepOp
Add gru_unit_op
|
8 years ago |
typhoonzero
|
1540703394
|
fix_pybind_op_reg_nokernel
|
8 years ago |
tensor-tang
|
59ccb01a00
|
Merge remote-tracking branch 'upstream/develop' into merge_grad
|
8 years ago |
typhoonzero
|
13b4749e24
|
fix_pybind_op_reg_nokernel
|
8 years ago |
tensor-tang
|
e1954857d7
|
fix bug: merge grad must before backward act.
and add branch net comparing with cpu result
|
8 years ago |
Abhinav Arora
|
3b954e1ddc
|
Adding Hard Sigmoid Activation (#4771)
* Adding Hard Sigmoid Activation
* Adding a comment for slope to be only positive
* Fixing grammatical mistake in comment
|
8 years ago |
Yan Chunwei
|
1c1f73b46d
|
Feature/dynamic recurrent op forward test (#4729)
|
8 years ago |
qijun
|
53542d93e5
|
Merge remote-tracking branch 'baidu/develop' into selected_rows
|
8 years ago |
Luo Tao
|
4c3ef7fca5
|
Merge branch 'develop' into seqpool
|
8 years ago |
qijun
|
c49adb86c6
|
follow comments
|
8 years ago |
qijun
|
11e923176e
|
reset a new tensor in default constructor of SelectedRows
|
8 years ago |
qijun
|
4b13c80eeb
|
add selected rows
|
8 years ago |
hedaoyuan
|
6316b40a2c
|
Merge pull request #4753 from hedaoyuan/inference
Use MinSizeRel compile third_party library when build for mobile infe…
|
8 years ago |
helinwang
|
ce91f85ec5
|
Add GIT tag for all cmake dependencies. (#4776)
|
8 years ago |
Yu Yang
|
a36d24163a
|
Add no_grad_vars for grad_op_maker (#4770)
* Add no_grad_vars for grad_op_maker
* Add unittest
* Fix unittest
* Fix unittest
* Follow comment
|
8 years ago |
Yu Yang
|
4cda9a36a4
|
Stablize executor_test (#4774)
Use less GPU memory
|
8 years ago |
hedaoyuan
|
71261be901
|
Merge branch 'develop' of https://github.com/baidu/Paddle into inference
|
8 years ago |
Yu Yang
|
4838ea25d3
|
Wrong dependency order for op_info and proto_desc (#4763)
|
8 years ago |
Yu Yang
|
c7460060ed
|
Merge pull request #4765 from reyoung/feature/change_vardesc_protobuf
Update VarDesc design
|
8 years ago |
zchen0211
|
416f590912
|
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into develop
|
8 years ago |
Abhinav Arora
|
116800378a
|
Adding the Adam Optimizer operator (#4733)
* add adam op
moment1_out = beta1 * moment1 + (1 − beta1) * grad
moment2_out = beta2 * moment2 + (1 − beta2) * grad * grad
moment1_hat = moment1_out / (1 - beta1^t)
moment2_hat = moment2_out / (1 - beta2^t)
param_out = param - learning_rate * moment1_hat / (sqrt(moment2_hat) +
epsilon)
* fix moment 2
* Adding the Adam optimization operator
* Adding more tests for Adam op
|
8 years ago |
Yu Yang
|
8d939d459f
|
Update VarDesc design
|
8 years ago |
dongzhihong
|
7da9ab3c6c
|
Merge remote-tracking branch 'origin/develop' into fix/scope
|
8 years ago |
Qiao Longfei
|
7460958143
|
Merge pull request #4764 from jacquesqiao/remove-infer-todo
remove unused todo in shape_inference.h
|
8 years ago |
fengjiayi
|
be85516318
|
Remove attribute check from CreateGradOpDescs() (#4723)
* Remove attr_checker from CreateGradOpDescs()
* Fix merge error
* Fix bug in backward_test.cc
|
8 years ago |
qiaolongfei
|
9ddedeee06
|
remove unused todo in shape_inference.h
|
8 years ago |
fengjiayi
|
36de398924
|
Rename Python `graph` to `framework` (#4762)
|
8 years ago |
fengjiayi
|
a30239ce09
|
Merge pull request #4691 from Canpio/dev_opdesc_in_python
Complete `Operator` of Python API
|
8 years ago |
dongzhihong
|
ff0e9d2207
|
Merge remote-tracking branch 'origin/develop' into fix/scope
|
8 years ago |