Luo Tao
216b81ace7
Merge branch 'develop' into seqpool
8 years ago
Tao Luo
aeccaf5631
Merge pull request #4827 from pengli09/ensure-bias-attr-has-no-name
...
Ensure name is not set in bias_attr in gru_step_naive_layer
8 years ago
Peng Li
98a6b85e8b
revise the error message to provide more detailed info
8 years ago
Peng Li
386a0289bd
Ensure name is not set in bias_attr in gru_step_naive_layer
8 years ago
Peng Li
808adc346f
Fix bug in computing output size of IdentityOffsetProjection
8 years ago
Luo Tao
97332d7c0c
Merge branch 'develop' into seqpool
8 years ago
Qiao Longfei
88b9202c48
Python cpp sync ( #4816 )
...
* add sync_with_cpp to Python Program and Block
* sync vars and ops in block from cpp
* optimize code and add some comment
* add more check for sync
8 years ago
Qiao Longfei
a4b172252b
Merge pull request #4809 from jacquesqiao/backward-return-map
...
Backward return map
8 years ago
qiaolongfei
2befb9f972
optimizer backward CreateGradVarInBlock input output order
8 years ago
qiaolongfei
9a0ef7d2aa
append_backward return map to python
8 years ago
Dong Zhihong
5eed0134e6
"refix the python logic"
8 years ago
Dong Zhihong
5bd14f6edb
Merge remote-tracking branch 'origin/develop' into fix/scope
8 years ago
Qiao Longfei
d7383c6dd0
create grad_var when run Backward pass ( #4796 )
...
* add target to Backward, generate var in block when call backward
* modify backward_test
* fix executor_test
* set var desc default type to LOD_TENSOR
* update backward_test
* insert loss in the top level of backward
* create grad vars for all blocks in current program
* optimize code
* update test_program.py
* only create var for newly create blocks when backward
8 years ago
fengjiayi
dbb60572a5
Refine Python operator input/output checks ( #4803 )
8 years ago
Dong Zhihong
b3df1f4a49
"fix tests"
8 years ago
Dong Zhihong
3f4177ea8d
Merge branch 'develop' into fix/scope
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
Yu Yang
d17eb73e9f
Update VarDesc from design doc ( #4769 )
...
* Update VarDesc from design doc
* Fix GCC compile
* Fix unittest
8 years ago
Luo Tao
abfa81b106
Merge branch 'develop' into seqpool
8 years ago
Guo Sheng
a0af1eeabf
Merge pull request #4443 from guoshengCS/add-GRUStepOp
...
Add gru_unit_op
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
Luo Tao
4c3ef7fca5
Merge branch 'develop' into seqpool
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
dongzhihong
7da9ab3c6c
Merge remote-tracking branch 'origin/develop' into fix/scope
8 years ago
fengjiayi
36de398924
Rename Python `graph` to `framework` ( #4762 )
8 years ago
dongzhihong
ff0e9d2207
Merge remote-tracking branch 'origin/develop' into fix/scope
8 years ago
fengjiayi
1a87a963e1
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into dev_opdesc_in_python
8 years ago
Luo Tao
393c748c89
add seqlastin/seqfirstin for seq_pool op
8 years ago
guosheng
9b4a6af251
Merge branch 'develop' of https://github.com/PaddlePaddle/paddle into add-GRUStepOp
8 years ago
guosheng
0bc5a122d4
Refine gru_unit_op by optional bias
8 years ago
chengduo
487a13bbfa
Merge pull request #4742 from chengduoZH/refine_conv2_naive_func
...
refine conv2d naive function
8 years ago
chengduoZH
db4de4ffd9
follow comments
8 years ago
guosheng
1cabdb8708
Refine gru_unit_op according to comments to support multiple activation types
8 years ago
chengduoZH
5fe68931f6
fix code struce
8 years ago
kexinzhao
d3b8bffaf1
Implementing the Decayed Adagrad optimizer operator ( #4645 )
...
* Implementing the DecayedAdagrad optimizer step operator
* implementing DecayedAdagrad operator
* remove file
* small fix
8 years ago
Luo Tao
e69a565a5b
Merge branch 'develop' into seqpool
8 years ago
chengduoZH
8ad67da9ab
fix conflict
8 years ago
Yu Yang
2daba04042
Merge pull request #4731 from reyoung/feature/fix_ci
...
Feature/fix ci
8 years ago
武毅
a3ccbdb3b6
Cudnn conv op ( #4195 )
...
* add cudnn_conv_op
* WIP
* update
* update
* fix grad check
* use platform::memory
* add support group for cudnn
* update
* follow comments
* fix onlycpu build
* update cuda define
* follow comments
* follow comments
* merge with updates
* fix compile error
* follow comments
* follow comments
8 years ago
chengduoZH
6ef2da2e89
finetune conv2d navie func
8 years ago
Yu Yang
3eac6d9f50
Disable test_seq_concat_op.py temp
8 years ago
chengduoZH
a015ea8f7c
refine conv2d naive function
8 years ago
dongzhihong
4b6b4bc84a
"change GetOrCreate to Var"
8 years ago
fengjiayi
458a2da3cf
Merge branch 'fix_bugs' into dev_opdesc_in_python
8 years ago
dongzhihong
5d6a3eee5b
new_var to get_or_create
8 years ago
fengjiayi
f8211328e1
Fix bug
8 years ago
Abhinav Arora
b504a2346c
Adding the Thresholded Relu Op ( #4685 )
...
* Adding thresholded_relu op
* Adding test for thresholded relu op
8 years ago
fengjiayi
90fa6db6bd
Add infer_shape to Python Operator and fix bugs
8 years ago
fengjiayi
bf26cc5307
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into dev_opdesc_in_python
8 years ago