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
9 years ago
Peng Li
98a6b85e8b
revise the error message to provide more detailed info
9 years ago
Peng Li
386a0289bd
Ensure name is not set in bias_attr in gru_step_naive_layer
9 years ago
Peng Li
808adc346f
Fix bug in computing output size of IdentityOffsetProjection
9 years ago
Luo Tao
97332d7c0c
Merge branch 'develop' into seqpool
9 years ago
qijun
7c0facd195
init
9 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
9 years ago
Dong Zhihong
d4d215a514
Merge remote-tracking branch 'origin/develop' into multigpu
9 years ago
Qiao Longfei
a4b172252b
Merge pull request #4809 from jacquesqiao/backward-return-map
...
Backward return map
9 years ago
qiaolongfei
2befb9f972
optimizer backward CreateGradVarInBlock input output order
9 years ago
qiaolongfei
9a0ef7d2aa
append_backward return map to python
9 years ago
Dong Zhihong
d2be7ec370
Merge remote-tracking branch 'origin/develop' into multigpu
9 years ago
Dong Zhihong
5eed0134e6
"refix the python logic"
9 years ago
Dong Zhihong
5bd14f6edb
Merge remote-tracking branch 'origin/develop' into fix/scope
9 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
9 years ago
fengjiayi
dbb60572a5
Refine Python operator input/output checks ( #4803 )
9 years ago
Dong Zhihong
b3df1f4a49
"fix tests"
9 years ago
Dong Zhihong
3f4177ea8d
Merge branch 'develop' into fix/scope
9 years ago
chengduoZH
24a796fbc0
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into Add_conv3d_gemm_op
9 years ago
Dong Zhihong
d144310415
"nccl add interface"
9 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
9 years ago
Yu Yang
d17eb73e9f
Update VarDesc from design doc ( #4769 )
...
* Update VarDesc from design doc
* Fix GCC compile
* Fix unittest
9 years ago
Luo Tao
abfa81b106
Merge branch 'develop' into seqpool
9 years ago
Guo Sheng
a0af1eeabf
Merge pull request #4443 from guoshengCS/add-GRUStepOp
...
Add gru_unit_op
9 years ago
chengduoZH
557c7ae37b
remove conflict
9 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
9 years ago
Yan Chunwei
1c1f73b46d
Feature/dynamic recurrent op forward test ( #4729 )
9 years ago
Luo Tao
4c3ef7fca5
Merge branch 'develop' into seqpool
9 years ago
Dong Zhihong
51abb6c323
add test
9 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
9 years ago
dongzhihong
7da9ab3c6c
Merge remote-tracking branch 'origin/develop' into fix/scope
9 years ago
fengjiayi
36de398924
Rename Python `graph` to `framework` ( #4762 )
9 years ago
dongzhihong
ff0e9d2207
Merge remote-tracking branch 'origin/develop' into fix/scope
9 years ago
fengjiayi
1a87a963e1
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into dev_opdesc_in_python
9 years ago
guosheng
71abb4ceb1
Merge branch 'develop' of https://github.com/PaddlePaddle/paddle into add-NormOp
9 years ago
caoying03
cbcf11d930
Merge branch 'develop' into crf
9 years ago
Luo Tao
393c748c89
add seqlastin/seqfirstin for seq_pool op
9 years ago
chengduoZH
4aae1fff78
fix conv3d_gemm, unit test and follow comments
9 years ago
guosheng
9b4a6af251
Merge branch 'develop' of https://github.com/PaddlePaddle/paddle into add-GRUStepOp
9 years ago
guosheng
0bc5a122d4
Refine gru_unit_op by optional bias
9 years ago
chengduo
487a13bbfa
Merge pull request #4742 from chengduoZH/refine_conv2_naive_func
...
refine conv2d naive function
9 years ago
chengduoZH
db4de4ffd9
follow comments
9 years ago
guosheng
1cabdb8708
Refine gru_unit_op according to comments to support multiple activation types
9 years ago
chengduoZH
5fe68931f6
fix code struce
9 years ago
kexinzhao
d3b8bffaf1
Implementing the Decayed Adagrad optimizer operator ( #4645 )
...
* Implementing the DecayedAdagrad optimizer step operator
* implementing DecayedAdagrad operator
* remove file
* small fix
9 years ago
Luo Tao
e69a565a5b
Merge branch 'develop' into seqpool
9 years ago
chengduoZH
8ad67da9ab
fix conflict
9 years ago
Yu Yang
2daba04042
Merge pull request #4731 from reyoung/feature/fix_ci
...
Feature/fix ci
9 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
9 years ago
chengduoZH
6ef2da2e89
finetune conv2d navie func
9 years ago
Yu Yang
3eac6d9f50
Disable test_seq_concat_op.py temp
9 years ago
chengduoZH
a015ea8f7c
refine conv2d naive function
9 years ago
caoying03
515981d714
Merge branch 'develop' into crf
9 years ago
caoying03
d92c671d5f
add python forward unittest.
9 years ago
chengduoZH
c2fbf8c5a7
Add unit test
9 years ago
dongzhihong
4b6b4bc84a
"change GetOrCreate to Var"
9 years ago
fengjiayi
458a2da3cf
Merge branch 'fix_bugs' into dev_opdesc_in_python
9 years ago
dongzhihong
5d6a3eee5b
new_var to get_or_create
9 years ago
fengjiayi
f8211328e1
Fix bug
9 years ago
Abhinav Arora
b504a2346c
Adding the Thresholded Relu Op ( #4685 )
...
* Adding thresholded_relu op
* Adding test for thresholded relu op
9 years ago
fengjiayi
90fa6db6bd
Add infer_shape to Python Operator and fix bugs
9 years ago
fengjiayi
bf26cc5307
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into dev_opdesc_in_python
9 years ago
fengjiayi
d92f8de431
Merge pull request #4702 from Canpio/fix_expose_checker_to_python
...
Explose check_attr to Python
9 years ago
Qiao Longfei
5e9d43995b
Merge pull request #4699 from jacquesqiao/expose-backward
...
expose AppendBackward of ProgramDesc to python
9 years ago
wanghaoshuang
f984cba0ca
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into seq_expand_op
9 years ago
guosheng
0922fca41e
Add gru_unit_op
9 years ago
wanghaoshuang
901b041196
Add seq_expand op
...
1. Add unitest
2. Add SeqExpandOpKernel
9 years ago
Cao Ying
134a07365b
Merge pull request #4713 from ranqiu92/doc
...
Update annotations of layers.py.
9 years ago
Cao Ying
e9495e7694
Merge pull request #4508 from Yancey1989/seqconcat_op
...
Add the sequence_concat operator.
9 years ago
Luo Tao
c77bd553de
Merge branch 'develop' into seqpool
9 years ago
ranqiu
0402a69694
Update annotations of layers.py
9 years ago
Yibing Liu
240adef1a1
Merge branch 'develop' of upstream into margin_rank_loss_op_dev
9 years ago
qiaolongfei
e8cad5a1d0
add more unit test for test_append_backward
9 years ago
kexinzhao
9995aed114
Implementing Softplus operator ( #4690 )
...
* implementing softplus
* small fix
* small fix
* small fix
* small fix
9 years ago
fengjiayi
f8267db657
Explose check_attr to Python
9 years ago
qiaolongfei
e9a0c4ef87
expose AppendBackward of ProgramDesc to python
9 years ago
kavyasrinet
1397e17f6b
Implemented the hardShrink activation ( #4653 )
...
* Implemented the hardShrink activation
* Fixing the unit test
9 years ago
Luo Tao
67dc606b32
Merge branch 'develop' into seqpool
9 years ago
fengjiayi
e621ff39e5
Follow comments
9 years ago
Siddharth Goyal
6604d7cda2
Add logsigmoid (numerically stable) and softshrink ( #4663 )
...
* Add numerically-stable logsigmoid activation
* Add softshrink operator
* Adjust relative tolerance for grad-check
* Address review comments
9 years ago
fengjiayi
afaac7896e
Refine code
9 years ago
fengjiayi
906f5e8a26
Fix unittest bugs
9 years ago
fengjiayi
e71b836f53
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into dev_opdesc_in_python
9 years ago
fengjiayi
247fb2a086
Add unittests
9 years ago
Yu Yang
f185af8d7b
Complete parameter
9 years ago
Yu Yang
0c37a06117
Merge branch 'feature/change_proto_to_desc' into feature/complete_variable_bind
9 years ago
Yu Yang
fb2ad4c949
Change PythonAPI `.proto` to `.desc`
9 years ago
Yu Yang
7506e4816b
Merge pull request #4660 from reyoung/feature/polish_infer_shape
...
Polish CompileTime InferShape
9 years ago
fengjiayi
cffca923b9
Change Proto to Desc
9 years ago
fengjiayi
5fddd288a6
Merge branch 'feature/add_persistable_in_var_desc' into dev_opdesc_in_python
9 years ago
Yu Yang
83dbc15055
Merge branch 'develop' of github.com:baidu/Paddle into feature/complete_variable_bind
9 years ago
fengjiayi
86451b3064
Update
9 years ago
Markus Kliegl
a281b38393
Conv Shift Operator ( #4591 )
...
* conv_shift_op: initial implementation using Eigen
Limitations:
- both gradient outputs must be specified and are always computed
- explicit for loops => could be optimized in various ways
(e.g., different memory layout)
* conv shift - gradient fixes
fix case when not all output gradients desired
* conv shift: minor cleanup
* conv shift - more minor cleanup
* conv shift: clean up & initial GPU implementation
* fix rebase issue
9 years ago
Yu Yang
7973d3a0ad
Merge pull request #4641 from reyoung/feature/add_persistable_in_var_desc
...
Init Python API
9 years ago
Yu Yang
69fd376bca
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into feature/polish_infer_shape
9 years ago
chengduo
0f1d3af438
Merge pull request #4461 from chengduoZH/Add_maxpool_withIdx_only
...
Add max pool op (with index)
9 years ago
Luo Tao
60f706a1d6
add SQRT strategy for sequence_pool_op
9 years ago
ranqiu
4545a058bd
add dot-product attention
9 years ago
Yancey1989
a4d410aec8
Merge branch 'develop' of github.com:PaddlePaddle/Paddle into seqconcat_op
9 years ago
Yancey1989
d211b51bd4
update comment
9 years ago
zhouxiao-coder
e6421249d5
update to latest
9 years ago
fengjiayi
a427855902
Update
9 years ago
Yu Yang
d350cdbc97
Polish CompileTime InferShape
...
1. InferShape should be a method for `OpDescBind` not `Operator`, since
`OpDescBind` is a compile-time concept.
2. Pre-create operators and store them into a map. Make InferShape
faster
9 years ago
QI JUN
9efd5422f9
Merge pull request #4655 from abhinavarora/fill_constant_op
...
Implementing the fill constant op for the executor
9 years ago
Tao Luo
ceefb555f7
Merge pull request #4500 from luotao1/interp
...
add interpolation op
9 years ago
fengjiayi
53222cb9c3
Add OpProtoHolder
9 years ago
Abhinav Arora
6efacc14d8
Implementing the fill constant op for the executor
9 years ago
Yu Yang
569616b329
Complete Variable for Python API
9 years ago
Yu Yang
1e41a675d4
Convert np.dtype to core.DataType
9 years ago
Yu Yang
68483f95a0
Merge branch 'develop' of github.com:baidu/Paddle into feature/add_persistable_in_var_desc
9 years ago
Yu Yang
61a5181e31
Add skeleton of Operator
9 years ago
Abhinav Arora
4cb5bd9021
Implementing the Adamax optimizer operator ( #4538 )
...
* Implementing the Adamax optimizer step operator
* Adding unit tests for adamax_op
* Changing learning rate and time step to inputs from attributes
* Changing learning rate and time step to input(tensors)
* Making the Adamax operator conform to naming convention
* Removing Tensor<float> from comments
* Rectifying the Adamax implementation
* Changing Unit Test values and adding comments
* Changing Unit Test to test multiple steps
9 years ago
Yu Yang
8f4771be22
Add skeleton of Variable
9 years ago
kavyasrinet
f30a1f42f0
Adding relu6 activation function ( #4607 )
9 years ago
Yu Yang
bedcf074a2
Implementation singleton
9 years ago
Yu Yang
3c39df197e
Init Python API
...
Following the design
* https://github.com/PaddlePaddle/Paddle/blob/develop/doc/design/python_api.md
Just written `Program`, `Block` and unittest of program.
9 years ago
Luo Tao
a06f099d9f
refine comment of interp_op
9 years ago
chengduoZH
fcfce48421
follow coments
9 years ago
typhoonzero
282435204e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into auc_op
9 years ago
zhouxiao-coder
53574e54a1
reslove merge conflict;reimplement ELU activation with functor
9 years ago
武毅
3f874143fe
fix grad debug event ( #4536 )
9 years ago
Luo Tao
4724bdbe68
Merge branch 'develop' into interp
9 years ago
caoying03
dcfbbd3f1d
Merge branch 'develop' into crf
9 years ago
Yi Wang
99895730f7
Merge pull request #4609 from kavyasrinet/tanhshrink
...
Implementing tanhshrink operator
9 years ago
Yan Chunwei
20a6ae7f1f
Feature/tensor array add python binding ( #4616 )
9 years ago
qiaolongfei
ffe1b69229
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into add_compile_time_infershape
9 years ago
kexinzhao
087addaa76
Merge pull request #4558 from kexinzhao/adagrad_op
...
Implementing the Adagrad optimizer step operator
9 years ago
Kexin Zhao
78f4c803f3
change learning rate and fix format
9 years ago
Kavya Srinet
0336304176
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into rmsprop
9 years ago
Kavya Srinet
154a6ed29c
Implementing tanhshrink operator
9 years ago
qiaolongfei
628715d602
clean code
9 years ago
qiaolongfei
352af966d7
add python unit test
9 years ago
kavyasrinet
3e2be065b9
Merge pull request #4604 from kavyasrinet/activations
...
Added Leaky Relu activation
9 years ago
sidgoyal78
c10da26cf5
Modify implementation
9 years ago
Abhinav Arora
828c5b3e1d
Adding Adadelta optimization operator ( #4576 )
...
* Adding Adadelta optimization operator
* Making inputs and outputs conform to naming convention
* Removing type alias from header files
* Fixing Adadelta documentation in comments
* Addressing code review feedback
9 years ago
Kavya Srinet
11070e5f36
Updated the reltive error
9 years ago
Kavya Srinet
60af56c1b8
Added Leaky Relu activation
9 years ago
qiaolongfei
5917e09cde
tmp work
9 years ago
Kavya Srinet
fa12e51675
Adding the default attribute test case
9 years ago
Kavya Srinet
94855f4af0
Fixed changes proposed in the review
9 years ago
Abhinav Arora
eed2c1e1d6
Changing SGD inputs and outputs to conform to Operator naming convention ( #4586 )
9 years ago
Abhinav Arora
324876bbbf
Changing learning rate from type Input(float) to Input(tensor) ( #4578 )
9 years ago
zchen0211
94b94e5b68
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into develop
9 years ago
sidgoyal78
d28b3094dd
Add momentum operator
9 years ago
Abhinav Arora
42e7fe05a2
Changing learning rate from attribute to input(float) ( #4568 )
...
* Changing learning rate from attribute to input(float)
* Removing obsolete code
9 years ago
Kavya Srinet
163d287143
Made learning rate the input
9 years ago
Kexin Zhao
d1de7ec630
Change learning rate from attribute to input tensor
9 years ago
Kavya Srinet
61c03f9d59
Adding the implementation for rmsprop operator
9 years ago
zchen0211
58174b12f7
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into develop
9 years ago
Kexin Zhao
1ac654a69f
Implementing the Adagrad optimizer step operator
9 years ago
qiaolongfei
32f5c9dd93
recurrent_op pass the unit test
9 years ago
zchen0211
15941dbd8c
solve conflict for cond_op and scatter
9 years ago
qiaolongfei
7163dd0413
revert code
9 years ago
caoying03
be8bef9bdd
Merge branch 'develop' into add_config_helper_for_resize_layer
9 years ago
chengduoZH
14b2c98f90
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into Add_maxpool_withIdx_only
9 years ago
qiaolongfei
af6f3c0423
use float32 in cond_op
9 years ago
Yu Yang
0900aedfa0
Merge pull request #4514 from reyoung/feature/remove_add_op
...
Remove add_op since it can be replaced by sum_op
9 years ago
caoying03
480154896c
add configuration helper for resize layer.
9 years ago
chengduoZH
2ed56df1e6
remove conflict
9 years ago
chengduoZH
6fc44800ed
fix unit test
9 years ago
chengduoZH
bee95fc891
fix code format and some bug
9 years ago
Yancey1989
a35e82a649
Merge branch 'develop' of github.com:PaddlePaddle/Paddle into seqconcat_op
9 years ago
chengduo
4f5491b2b4
Merge pull request #4146 from chengduoZH/Add_pool_op
...
Add pool op
9 years ago
chengduoZH
6abcb74c8f
fix unit test class name
9 years ago
Yu Yang
aa52fa1c64
Merge pull request #4491 from reyoung/feature/stable_lstm
...
Using double precision to stablize lstm gradient check
9 years ago
chengduoZH
2d8a5b97cc
fix unit test
9 years ago
Qiao Longfei
7fe0297e64
remove Runtime InferShape for cond op ( #4518 )
...
* init remove cond_op infershape
* optimize code
* add PrepareDataForSubnet and MergeDataFromSubnet
9 years ago
Yu Yang
6164b8986e
Fix CI
9 years ago
Yu Yang
762a99cc06
Remove add_op since it can be replaced by sum_op
9 years ago
caoying03
735737d283
initialize crf opreator.
9 years ago
Yancey1989
be3fa7926e
add sequence concat op
9 years ago
guosheng
46641c6361
Fix infer when input is empty in v2/inference.py
9 years ago
zhouxiao-coder
601e2317fd
update to latest
9 years ago
zhouxiao-coder
a815d6abcf
elu: Optimize gradient calculation;Add more comments
9 years ago
chengduoZH
df59889984
remove conflict
9 years ago
Luo Tao
bb7f555803
remove rowwise_add_op
9 years ago
Luo Tao
884e31a59b
add interpolation op
9 years ago
Cao Ying
99130c6e94
Merge pull request #4498 from pengli09/fix-random-seed
...
fix random seeds in gradient checkers.
9 years ago
Peng Li
4dfc10ccf7
a patch for fixing random seeds in gradient checkers
9 years ago
Liu Yiqun
8bafdda0ad
Merge branch 'develop' into core_add_sequence_softmax_op
9 years ago
guosheng
a53191f12a
Add norm_op
9 years ago
Yu Yang
f60f0eae11
Using double precision to stablize lstm gradient check
9 years ago
Yu Yang
9fbf94b61a
Merge pull request #4487 from abhinavarora/softsign_activation
...
Implementing the SoftSign activation operator
9 years ago
Abhinav Arora
0c3eee09ff
Implementing the SoftSign activation operator
9 years ago
Yu Yang
279178e457
Fix bug in test_prelu and test_xe
...
They were using float64 for FP32 kernel before.
9 years ago
Yu Yang
54892c0797
Simplify op_test
9 years ago
Yu Yang
61cc3ae4d1
Stablize elementwise_mul by using double precision
9 years ago
Yu Yang
6efcbc4fcb
Fix bug in test_prelu and test_xe
...
They were using float64 for FP32 kernel before.
9 years ago
zchen0211
88a8eedda1
scatter gather gpu
...
gather scatter gpu
9 years ago
Yu Yang
6ed78729b2
Simplify op_test
9 years ago
Yu Yang
fd479631e1
Stablize elementwise_mul by using double precision
9 years ago
Abhinav Arora
b9336e6f8c
Adding support for the sigmoid_cross_entropy_with_logits operator ( #4448 )
...
* Adding support for the sigmoid_cross_entropy_with_logits operator
* Fixing a typo in the cuda file
* Adding Python documentation for sigmoid_cross_entropy_with_logits_op
* Correcting typos in documentation
* Adding unit tests for sigmoid_cross_entropy_with_logits_op
* Addressing code review feedback
9 years ago
chengduoZH
6326c40d27
Add max pool with index
9 years ago
Guo Sheng
ecef2e6b97
Merge pull request #4086 from guoshengCS/add-ReduceOp
...
Add reduce op
9 years ago
Yibing Liu
e303897f35
Merge branch 'develop' of upstream into margin_rank_loss_op_dev
9 years ago
Liu Yiqun
03897f251d
Finish the SequenceSoftmaxGradKernel, using SoftmaxGradFunctor.
9 years ago
wangmeng28
0e6c96a871
Merge remote-tracking branch 'upstream/develop' into fix-4388
9 years ago
Yu Yang
21f63ec223
Merge pull request #4458 from reyoung/feature/compile_time_infer_shape
...
Remove OperatorBase::InferShape
9 years ago
Yancey
d7db15f3e5
Use StridedMemCpy in Concat/Split Kernel ( #4188 )
...
User StridedMemCpy in Concat/Split Op
9 years ago
guosheng
be58c6327d
Merge branch 'develop' of https://github.com/PaddlePaddle/paddle into add-ReduceOp
9 years ago
Yu Yang
6196209478
Remove OperatorBase::InferShape
...
InferShape in Operator should be performed in OperatorBase::Run.
* cond_op, recurrent_op and mnist might be changed in following PR
9 years ago
Yu Yang
ba4b0291ef
Follow comments, check exception message
9 years ago
Yu Yang
680c20217e
Merge branch 'develop' of github.com:baidu/Paddle into feature/make_python_catch_enforce_not_met
9 years ago
chengduoZH
3c0f079333
remove conflict and fix InferShape function
9 years ago
Liu Yiqun
ce3171f3c4
Merge branch 'develop' into core_add_sequence_softmax_op
9 years ago
guosheng
99b8dbb14f
Merge branch 'develop' of https://github.com/PaddlePaddle/paddle into add-ReduceOp
9 years ago
Yu Yang
dcfd31d736
Merge pull request #4397 from reyoung/feature/pybind_for_protobuf_desc
...
Feature/pybind for protobuf desc
9 years ago
Yu Yang
de35098779
Fix CI and follow comment
9 years ago
Liu Yiqun
c8fc6037fd
Merge branch 'develop' into core_add_sequence_softmax_op
9 years ago
Yu Yang
7b385ff206
Merge pull request #4407 from Canpio/fix_huber_loss_test_error
...
Fix error in unit test of ModifiedHuberLossOp
9 years ago
Yiqun Liu
29cb85634c
Merge pull request #4144 from lcy-seso/softmax_with_cross_entropy_op
...
Softmax with cross entropy op.
9 years ago
fengjiayi
36f3d0af22
Fix error in unit test of ModifiedHuberLossOp
9 years ago
Yu Yang
49697d9dab
Merge branch 'develop' of github.com:baidu/Paddle into feature/make_python_catch_enforce_not_met
9 years ago
Yu Yang
9e5de16719
Merge branch 'feature/pybind_for_protobuf_desc' of github.com:reyoung/Paddle into feature/pybind_for_protobuf_desc
9 years ago
Yu Yang
62d597c176
Merge branch 'develop' of github.com:baidu/Paddle into feature/pybind_for_protobuf_desc
9 years ago
Yu Yang
67cdd5bc61
Make PyBind support C++ exception
9 years ago
Yibing Liu
dc186af729
Merge branch 'develop' of upstream into margin_rank_loss_op_dev
9 years ago
Yibing Liu
367a54e08c
Merge pull request #4360 from kuke/multiplex_modify_dev
...
Modify multiplex_op
9 years ago
chengduoZH
30a586df0c
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into Add_pool_op
9 years ago
Tao Luo
0cc85d794a
Merge pull request #4331 from tensor-tang/mkldnn_softmax
...
Add mkldnn_softmax
9 years ago
caoying03
3d77360b89
add negative clipping for softmax.
9 years ago
caoying03
360bde9a70
Merge branch 'develop' into softmax_with_cross_entropy_op
9 years ago
wangmeng28
a378db3c37
fix style issue
9 years ago
wangmeng28
8dc382e4ee
Check whether param name is manually set when input is a sequence in fc layer
9 years ago
Cao Ying
7d65321620
Merge pull request #4237 from lcy-seso/optimize_cross_entropy_kernel
...
optimize cross entropy kernel.
9 years ago
caoying03
000d75116f
fix backward op.
9 years ago
Yibing Liu
089f8e2d37
Merge branch 'develop' of upstream into multiplex_modify_dev
9 years ago
caoying03
8b8ad6b164
fix implementations of supporting soft labels.
9 years ago
fengjiayi
6915c924a4
Fix bug
9 years ago
fengjiayi
4fb106afb0
Merge branch 'feature/pybind_for_protobuf_desc' of https://github.com/reyoung/Paddle into feature/pybind_for_protobuf_desc
9 years ago
fengjiayi
5419f16b38
Add unittests
9 years ago
Yu Yang
16c5f629bd
Complete unittest for OP
9 years ago
Yu Yang
f9f910a33b
Complete op
9 years ago
Yu Yang
1cd2014007
Merge branch 'develop' of github.com:baidu/Paddle into feature/pybind_for_protobuf_desc
9 years ago
Zhuoyuan
e5a3c1d2d5
Merge pull request #4372 from reyoung/feature/stable_prelu_grad_test
...
Stabilize prelu gradient check
9 years ago
Zhuoyuan
f698a49ce3
Merge pull request #4240 from zchen0211/develop
...
lstm unit
9 years ago
Yu Yang
d54e8420be
Stabilize prelu gradient check
9 years ago
Yibing Liu
236af56612
separate index tensor from candidate tensors in multiplex_op
9 years ago
chengduoZH
b72854389e
Fix (According to the review)
9 years ago
tensor-tang
7483087c8c
enable mkldnn_softmax
9 years ago
Cao Ying
14a7399d22
Merge pull request #4329 from ranqiu92/r-doc
...
Update annotation in layers.py and update FAQ.
9 years ago
ranqiu
732c8973e0
Update annotations of layers.py
9 years ago
Liu Yiqun
9f32c8d896
Merge branch 'develop' into core_add_sequence_softmax_op
9 years ago
Yibing Liu
47fbc96fa1
Merge pull request #4064 from kuke/multiplex_op_dev
...
Add multiplex operator
9 years ago
Tao Luo
01bec25734
Merge pull request #4193 from luotao1/seq_pool
...
implement framework of seq_pool_op and its unitest
9 years ago
caoying03
bb58b63b6c
Merge branch 'develop' into softmax_with_cross_entropy_op
9 years ago
guosheng
1295e5ef54
Refine reduce_op unit test and add newline at end of file
9 years ago
guosheng
c8d877195b
Revise the reduce_op unit test accordingly
9 years ago
guosheng
3994e91a67
Add reduce_op
9 years ago
ranqiu
17622b482d
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into r-doc
9 years ago
caoying03
201c2bcf20
delete redundant codes.
9 years ago
caoying03
6735585b0f
fix cpu kernel with soft labels.
9 years ago
Yu Yang
9fa7c9306c
Merge branch 'feature/pybind_for_protobuf_desc' of github.com:reyoung/Paddle into feature/pybind_for_protobuf_desc
9 years ago
fengjiayi
08e9900621
Fix bugs
9 years ago
Yu Yang
b941865d44
Merge branch 'feature/simplify_attr_parse' into feature/pybind_for_protobuf_desc
9 years ago
fengjiayi
57c95c7957
Merge branch 'fix_lod_tensor_dim_64' into feature/pybind_for_protobuf_desc
9 years ago
Yu Yang
ddf2448484
Update Input/Output of Op
9 years ago
Yu Yang
dc643a3352
Hot fix unittest
9 years ago
Yu Yang
bddb40609d
Buggy code
9 years ago
fengjiayi
f5aa8b4d7e
Update namespace of pybind/protobuf.cc and .h
9 years ago
fengjiayi
6db6475460
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into feature/pybind_for_protobuf_desc
9 years ago
fengjiayi
ee547f6ac9
Add unittests
9 years ago
superjom
b545b5b86b
Merge branch 'develop' of github.com:PaddlePaddle/Paddle into feature/recurrent_op_backward_fix
9 years ago
ranqiu
0e6466423b
Update the annotation of layers.py
9 years ago
caoying03
30bfaab36e
Merge branch 'develop' into optimize_cross_entropy_kernel
9 years ago
gongweibao
f99841dd2a
Elementwise operator. ( #4139 )
...
Elementwise operator add/sub/mul/div
9 years ago
dangqingqing
efb56db770
tune max_relative_error in test_cos_sim_op.
9 years ago
qingqing01
7831b1d9ea
Merge branch 'develop' into attr_bool
9 years ago
chengduoZH
c2c2d610a4
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into Add_pool_op
9 years ago
Yu Yang
618884dd69
Complete unittest for ProgramDesc
9 years ago
Yu Yang
70f398e207
Update
9 years ago
dangqingqing
0dce16a697
Use bool type for attr in cross_entropy_op.
9 years ago
Yibing Liu
85a5d38446
Merge branch 'develop' of upstream into multiplex_op_dev
9 years ago
chengduoZH
6f61b5df7d
fix unit test
9 years ago
Luo Tao
0449b9c89e
Merge branch 'develop' into seq_pool
9 years ago
chengduoZH
84a2512b90
fix parameter name and function define
9 years ago
Yibing Liu
756af4e73a
regulate comments in margin_rank_loss_op
9 years ago
dangqingqing
58e3ad0a70
Fix conflicts.
9 years ago
caoying03
f1d5fb3b9a
support soft labels.
9 years ago
Yibing Liu
6b3e9ccb3a
pass unit test for margin_rank_loss_op
9 years ago
chengduoZH
50b8ec0564
fix unit test
9 years ago
Yibing Liu
2f12256186
Merge branch 'develop' of upstream into margin_rank_loss_op_dev
9 years ago
dangqingqing
6e2782e958
update to develop branch.
9 years ago
caoying03
a2a0d6f82a
Merge branch 'develop' into softmax_with_cross_entropy_op
9 years ago
chengduoZH
3416f5e0f8
fix function define
9 years ago
Liu Yiqun
4d9293940b
Merge branch 'develop' into core_add_sequence_softmax_op
9 years ago
chengduoZH
510f00800a
Add pool3d unit test
9 years ago
chengduoZH
33d9999890
Add pool2d unit test
9 years ago
hedaoyuan
0ee967b513
Merge pull request #4288 from hedaoyuan/fix_bug
...
Bug fix for get device_context in conv2d op.
9 years ago
hedaoyuan
ccbb285311
Increase the max_relative_error in TestConv2dOp.
9 years ago
QI JUN
8c3b8af31e
Merge pull request #4071 from QiJune/activation_ops
...
Implement activation related operators
9 years ago
Yibing Liu
d827359c71
Merge pull request #4098 from kuke/rank_loss_op_dev
...
Add rank loss operator
9 years ago
whs
da2aabb628
Merge pull request #3906 from wanghaoshuang/crop_op
...
Add crop op
9 years ago
superjom
27aaee1181
Merge branch 'develop' of github.com:PaddlePaddle/Paddle into feature/recurrent_op_backward_fix
9 years ago
Yibing Liu
cf4b2db758
change the dims of input of rank_loss_op
9 years ago
Yibing Liu
79c2d90a7f
add margin_rank_loss_op
9 years ago
Liu Yiqun
f14a7966b0
Initialize the sequence softmax operator.
9 years ago
whs
e53dc8a2e4
Merge pull request #3937 from wanghaoshuang/clip_op
...
Add clip op
9 years ago
X.Dragon
c003895c1c
Merge pull request #3920 from NHZlX/op_transpose
...
add the transpose op
9 years ago
superjom
0da8133224
Merge branch 'develop' of github.com:PaddlePaddle/Paddle into feature/recurrent_op_backward_fix
9 years ago
superjom
6a0c342874
make RecurrentOp's backward work
9 years ago
hedaoyuan
7a891a3321
Merge pull request #4042 from hedaoyuan/conv_op
...
Convolution operator
9 years ago
Yan Chunwei
b5e67fce70
RNNOp remove alias ( #4274 )
...
* remove alias
9 years ago
wanghaoshuang
bc632df822
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
9 years ago
wanghaoshuang
c7b6d2c46d
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into clip_op
9 years ago
superjom
68399ab921
Merge remote-tracking branch 'origin/rnn-backward-python' into feature/recurrent_op_backward_fix
9 years ago
Zhuoyuan
40e49c3f8b
update python test
9 years ago
superjom
075e0e3c5d
Merge branch 'develop' of github.com:PaddlePaddle/Paddle into rnn_remove_alias
9 years ago
superjom
3c29224ef3
remove alias
9 years ago
zchen0211
7883227716
lstm
9 years ago
caoying03
a3a8a0900d
optimize cross entropy kernel by using reduce.
9 years ago
Yibing Liu
9da5192f77
adapt multiplex_op to the dev of framework
9 years ago
Tao Luo
4400284685
Merge pull request #4224 from tensor-tang/act
...
some addition for mkldnn_act
9 years ago
tensor-tang
eb26fdce46
add python interface for mkldnn_relu and mkldnn_tanh
9 years ago
yangyaming
9367fa1229
Add more test cases and refine doc.
...
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-4029
9 years ago
Yang yaming
51f1148921
Merge pull request #3987 from pkuyym/fix-3923-c
...
Add modified huber loss operator
9 years ago
Yang yaming
cdda0cf3d4
Merge pull request #3913 from pkuyym/fix-3789
...
Complete smooth_l1_loss_op.
9 years ago
Yibing Liu
18dc201bd9
merge multiplex_op with the latest upstream
9 years ago
dangqingqing
39cf2e217d
update to develop branch.
9 years ago
dangqingqing
b65709e403
Share LoD between input and output of each opeators.
9 years ago
Yibing Liu
ece329100a
refine rank_loss_op
9 years ago
yangyaming
308ce9ac55
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-3923-c
9 years ago
yangyaming
4e3ba65f19
Refine doc.
9 years ago
yangyaming
12596a16ec
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-3789
9 years ago
ranqiu
37faf49565
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into r-doc
9 years ago
xzl
1792e58f20
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into op_transpose
9 years ago
xzl
0cd9b8c0aa
modify the input\output name to X\Out
9 years ago
Yibing Liu
f2cfa32411
Merge branch 'develop' of upstream into rank_loss_op_dev
9 years ago
wanghaoshuang
3f3848cdf7
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into clip_op
9 years ago
dangqingqing
72ba02701b
Add bool type for attribute and use it in dropout_op.
9 years ago
superjom
b818e64720
Merge branch 'develop' of github.com:PaddlePaddle/Paddle into rnn_remove_alias
9 years ago
superjom
0d7e4294fc
remove alias
9 years ago
dangqingqing
7ee916b0d3
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into attr_bool
9 years ago
dangqingqing
2aa4d326ec
Fix unit testint in test_prelu_op.
9 years ago
wanghaoshuang
a3c3b7866e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into clip_op
9 years ago
wanghaoshuang
ce709b75b3
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
9 years ago
typhoonzero
12f0a86f36
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into auc_op
9 years ago
qingqing01
5b42d2b21b
Merge pull request #4081 from xinghai-sun/soft_label_cross_entropy
...
Add soft-label support for cross-entropy operator.
9 years ago
ranqiu
2ba70f5d36
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into r-doc
9 years ago
ranqiu
62377fd1f3
Update annotations about layer name of layers.py
9 years ago
Tao Luo
de8aaf6c00
Merge pull request #4192 from qingqing01/fix_prelu
...
Fix compile error in prelu_op.
9 years ago
qingqing01
5882c1f6f0
Remove test_prelu_op since it failed and will be fixed later.
9 years ago
Xinghai Sun
19de8ae141
Fixed a error in mnist unitest.
9 years ago
ranqiu
fe2c5936d9
Update annotation of layers.py
9 years ago
ranqiu
93e0183662
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into r-doc
9 years ago
Luo Tao
1b01f1ea7b
implement framework of seq_pool_op and its unitest
9 years ago
Xinghai Sun
d8046da0cd
Use soft_label attribute for cross-entropy.
9 years ago
Xinghai Sun
c7f91a94ec
Merge pull request #3817 from xinghai-sun/dropout
...
Add dropout operator.
9 years ago
wanghaoshuang
a4b1abe5c4
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
9 years ago
dangqingqing
fad48fa6b1
Add bool type for attr.
9 years ago
Xinghai Sun
8e7fe8cae5
Merge branch 'develop' into soft_label_cross_entropy
9 years ago
Xinghai Sun
ffeeef82f3
Remove unnecessary mask operations in test phase for dropout operator.
9 years ago
Zhuoyuan
f86c1ccdbe
Merge pull request #4121 from zchen0211/develop
...
Prelu with forward, backward and python test passed
9 years ago
wanghaoshuang
fa4908dc10
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
9 years ago
xzl
a9a7ba3cff
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into op_transpose
9 years ago
xzl
9de45e113a
fixed bug when dims.size == 1, modify the variable naming, add judgement when input_grad is null
9 years ago
Xinghai Sun
a2798ff25f
Merge branch 'develop' into dropout
9 years ago
gaoyuan
71b3fbb18a
Fix a ssd bug
9 years ago
Tao Luo
d4d4580d5e
Merge pull request #4140 from tensor-tang/mkldnn_pool
...
Add MKLDNN pool
9 years ago
zchen0211
154d88c261
fix gradient not stable
9 years ago
zchen0211
3c3a6d90ae
prelu finalize
9 years ago
zchen0211
4a2378845e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into develop
9 years ago
Xinghai Sun
585d12a307
Add is_training attr and testing phrase compuation to dropout operator.
...
Change type of dropout_prob to template typename.
9 years ago
hedaoyuan
f3669ca3f1
Support input_grad = null or filter_grad = null.
9 years ago
tensor-tang
cc28fb4bb3
Merge remote-tracking branch 'upstream/develop' into mkldnn_pool
9 years ago
ranqiu
a0187f1c55
Update the annotation about bias_attr of layers.py
9 years ago
xzl
35967e8658
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into op_transpose
9 years ago
xzl
5ede6fd434
delete cuda impl, complete comments, modify variable naming
9 years ago
ranqiu
82bff6eee3
Update the annotation of layers.py
9 years ago
Liu Yiqun
466d48fd23
Check and only check the output varibles specified by self.outputs.
9 years ago
Yancey
56b1b70142
Split operator with CPU kernel ( #4046 )
...
Split Op CPU Kernel
9 years ago
ranqiu
c2dea5a877
Update the annotation of layers.py
9 years ago
wanghaoshuang
8d9d537b9f
remove op_test_util.py
9 years ago
wanghaoshuang
44224f4b5b
remove gradient_checker.py
9 years ago
wanghaoshuang
3102a52a67
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into clip_op
9 years ago
wanghaoshuang
a345b7195e
1. Add CUDA stream when launching kernel.
...
2. Fix unitest.
3. Fix comments and some issues.
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into clip_op
9 years ago
Yiqun Liu
ec9a55aea4
Merge pull request #3927 from Xreki/core_add_fc_op
...
Port fully connected operator
9 years ago
武毅
8580dce308
Refine accuracy_op CUDA kernel ( #4097 )
...
* refind accuracy_op
* follow comments
* follow comments
9 years ago
wanghaoshuang
46888c32df
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
9 years ago
wanghaoshuang
57a3b8b69e
1. Implement GPUCrop kernel instead of eigen.
...
2. Fix unitest
9 years ago
Yibing Liu
26b393f911
Merge branch 'develop' of upstream into rank_loss_op_dev
9 years ago
hedaoyuan
5a4138b66b
Add test with groups=1.
9 years ago
qijun
87ba6cbf20
merge baidu/develop
9 years ago
wanghaoshuang
2321a37b3c
fix issues
9 years ago
caoying03
8f8ea005fe
fix implementations.
9 years ago
hedaoyuan
7bf1e76fdc
Merge branch 'develop' of https://github.com/baidu/Paddle into conv_op
9 years ago
peterzhang2029
fc3b129b08
delete the unused comments
9 years ago
tensor-tang
971acff749
add python interface for mkldnn_pool
9 years ago
Xinghai Sun
0532662902
Merge branch 'develop' into dropout
9 years ago
Xinghai Sun
e87068290e
Update cross entropy operator by following reviewer's comments.
9 years ago
Xinghai Sun
d7717f2e6b
Merge branch 'develop' into soft_label_cross_entropy
9 years ago
zchen0211
1b2374ad3b
new prelu with functor
9 years ago
zchen0211
384368f42c
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into develop
9 years ago
wanghaoshuang
57011b2022
reste
9 years ago
wanghaoshuang
e2d75bd364
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
9 years ago
wanghaoshuang
b21aee635e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
...
Conflicts:
paddle/pybind/pybind.cc
9 years ago
peterzhang2029
e7cc863980
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into my-paddle
9 years ago
peterzhang2029
bfba756b48
update the version of pre-commit0.13.2
9 years ago
dangqingqing
05680d0d5a
Add unit testing for sequence average pool operator.
9 years ago
dangqingqing
90886443b4
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into seq_op_test
9 years ago
dangqingqing
d6a0280eb9
Enhance unit testing framework for operator with LoDTensor.
9 years ago
wanghaoshuang
a8584a9902
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
...
Conflicts:
paddle/pybind/pybind.cc
9 years ago
peterzhang2029
9e74b89877
update notation in networks.py roughly
9 years ago
Liu Yiqun
6ce4bf3645
Merge branch 'develop' into core_add_fc_op
9 years ago
yangyaming
3ee87653b4
Tight the relative error.
9 years ago
Liu Yiqun
eef1ccbf08
Add the check of inputs and outputs in all operators.
9 years ago
caoying03
1fb5f12f0c
Merge branch 'develop' into softmax_with_cross_entropy_op
9 years ago
caoying03
efa4526c52
finish implementation and fix unittest.
9 years ago
zchen0211
490ca5f1ae
prelu_op
9 years ago
qijun
fd559b3a7e
Merge remote-tracking branch 'baidu/develop' into activation_ops
9 years ago
qijun
2dc7f39ea7
Merge branch 'activation_ops' of https://github.com/QiJune/Paddle into activation_ops
9 years ago
qijun
48f5f6bdd0
refine some operators' python unittests
9 years ago
qijun
34ecfcad4a
fix code style
9 years ago
zchen0211
260026fa67
prelu modify
9 years ago
zchen0211
58b5b08bba
prelu op
9 years ago
zchen0211
299dcb6715
merge with new change
9 years ago
qijun
41271f03cb
fix gpu build error
9 years ago
xzl
6b3ae01e02
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into op_transpose
9 years ago
yangyaming
09a13f6c49
Using LoDTensor and adapt to new unittest.
...
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-3789
9 years ago
Liu Yiqun
cb7d718611
Merge branch 'develop' into core_add_fc_op
9 years ago
qijun
fd5aa2ada2
merge baidu/develop
9 years ago
Yibing Liu
f2442be9e3
merge conflicts
9 years ago
qijun
5824d85001
add activation operators and python unittests
9 years ago
qingqing01
30ab4fae4c
Merge pull request #4083 from qingqing01/lod_tensor2
...
Using LoDTensor instead of Tensor in every operator.
9 years ago
Tao Luo
654344b94c
Merge pull request #4032 from tensor-tang/mkldnn-conv
...
Add MKLDNNConvLayer
9 years ago
dangqingqing
48000a8f2d
Update to develop branch and resovle conflicts.
9 years ago
Cao Ying
0e46f5ebd7
Merge pull request #4094 from lcy-seso/fix_cross_entropy_op_output_shape
...
fix shape of output tensor of cross_entropy_op.
9 years ago
Yibing Liu
36f349e71e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into rank_loss_op_dev
9 years ago
Liu Yiqun
989e8358b3
Reuse the output of mul when there is only one input in FCOp.
9 years ago
whs
012db97241
Merge pull request #4103 from wanghaoshuang/pad_op
...
Fix unitest of pad_op
9 years ago
Liu Yiqun
fe2ab2ee7f
Set the default value of xNumColDims and rename the output to "Out" in FCOp.
9 years ago
wanghaoshuang
481a8370ac
update unitest
9 years ago
Xinghai Sun
c5972faca9
Merge pull request #3918 from xinghai-sun/cos_sim_vector
...
Add broadcasting support (e.g. matrix-vector) for cos sim operator.
9 years ago
wanghaoshuang
680da5c9d0
Fix unitest of pad_op
9 years ago
Yibing Liu
7c423e4b0d
add unit test for rank_loss_op
9 years ago
Liu Yiqun
0b21b854ec
Make the weights of FCOp a fixed 2-D matrix and refine some comments in FCOp.
9 years ago
wanghaoshuang
b299d07fbe
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
...
Conflicts:
paddle/pybind/pybind.cc
python/paddle/v2/framework/tests/op_test_util.py
9 years ago
caoying03
e0ca4d7a29
fix shape of output tensor of cross_entropy_op.
9 years ago
武毅
2d6233646a
Accuracy op ( #3907 )
...
* init add
* add topk op
* someupdate
* fix style check
* add test py file
* update top k cuda kernel
* follow comments
* remove debug print
* accuracy_op
* fix casting error
* fix casting error
* fix casting error
* fix rename bug...
* make it smaller
* update cast
9 years ago
qijun
3110bf9a9a
merge activation operator python tests
9 years ago
zchen0211
f6dee08d76
new changes
9 years ago
zchen0211
c7db6e8d14
cond op passed
9 years ago
wanghaoshuang
7deddab1ff
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
...
Conflicts:
paddle/pybind/pybind.cc
9 years ago
dangqingqing
30a58b5121
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into lod_tensor2
9 years ago
dangqingqing
f299206396
Using LoDTensor instead of Tensor in every operator.
9 years ago
Xinghai Sun
6d60352e7e
Add soft-label support for cross-entropy operator.
9 years ago
whs
08f9b72dbf
Merge pull request #3765 from wanghaoshuang/pad_op
...
Add pad op
9 years ago
yangyaming
ce15d89afa
Adapt to new unittest.
9 years ago
yangyaming
df83ac4c7b
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-3923-r
9 years ago
yangyaming
6d4c440576
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-3923-c
9 years ago
Cao Ying
aed51dde32
Merge pull request #4076 from chengduoZH/enable_cudnn_convt
...
add cudnn_convt layer type in config_helper.
9 years ago
Liu Yiqun
af2eb94909
Support inputs and weights of multi-dimensions and refine the output names.
9 years ago
Yancey
47975870aa
Fix check grad with multioutput ( #4067 )
...
Fix check grad with multi outputs
9 years ago
chengduoZH
22de57f127
enable cudnn_convt
9 years ago
Liu Yiqun
8495f3f04a
Merge branch 'develop' into core_add_fc_op
9 years ago
yangyaming
ec92588a37
Fix some conflicts and correct unittest.
...
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-3923-c
9 years ago
qijun
4e173527c1
fix op python tests
9 years ago
qijun
b50a507617
add activation operator python test
9 years ago
qijun
d736fc0e00
add activation macro
9 years ago
Yibing Liu
4a71d954e9
merge conflicts
9 years ago
Yibing Liu
b3f44ad761
add multiplex operator
9 years ago
hedaoyuan
b4ba35caeb
Add groups test.
9 years ago
yangyaming
4520afcf3e
Consider corner case.
9 years ago
Xinghai Sun
965fd2250d
Merge branch 'develop' into cos_sim_vector
9 years ago
typhoonzero
c7eef34c28
auc cpu only
9 years ago
yangyaming
c1215dd91f
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-4029
9 years ago
yangyaming
ad5e7cc031
Implemented by boost preprocessor.
9 years ago
caoying03
8d88c52d8a
Merge branch 'develop' into softmax_with_cross_entropy_op
9 years ago
caoying03
c6366c819e
softmax as functor.
9 years ago
gongweibao
8778957cfc
Add element-wise multiplication operator. ( #3787 )
...
Add element-wise multiplication operator
9 years ago
dangqingqing
d11430e009
Use the inheritance in the definition of LoDTensor.
9 years ago
tensor-tang
66fdbd0cee
add some comment and simplify some code
9 years ago
wanghaoshuang
23381dd16a
Update pad op unitest
9 years ago
hedaoyuan
14ae805014
Merge branch 'develop' of https://github.com/baidu/Paddle into conv_op
9 years ago
wanghaoshuang
d89598054e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into pad_op
9 years ago
zchen0211
b8e75c1f1a
cond op
9 years ago
hedaoyuan
a7c1872206
Refine test_conv2d_op.py
9 years ago
hedaoyuan
c671189d7f
Fix test_conv2d_op.py.
9 years ago
hedaoyuan
3705de6ddd
Merge branch 'develop' of https://github.com/baidu/Paddle into conv_op
9 years ago
Luo Tao
8a2ff350ed
simplify the python/paddle/v2/framework/tests/CMakeLists.txt
9 years ago
hedaoyuan
40fe0a8c47
Add backward of convolution.
9 years ago
caoying03
1f839a6618
fix bug in prelu parsing.
9 years ago
caoying03
2507bcaa29
Merge branch 'develop' into softmax_with_cost_op
9 years ago
Yibing Liu
4137cb0baf
Merge pull request #3949 from kuke/reshape_op_dev
...
Add reshape operator
9 years ago
tensor-tang
44acc7514a
add python interface for mkldnn_conv
9 years ago
zhangchao41
b90461b9d9
fix the typo of the param description in sequence_conv_pool
9 years ago
Yibing Liu
dd926498e7
adapt to the new test framework
9 years ago
qingqing01
6d0d29f645
Merge pull request #4001 from qingqing01/lod_tensor_py
...
Correctly use host_vector in LoDTensor and expose LoDTensor to Python.
9 years ago
Yibing Liu
31cbb3432f
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into reshape_op_dev
9 years ago
wanghaoshuang
a03c6849e7
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into pad_op
9 years ago
Yu Yang
2b352212c2
Add serialize to file for topology and read file obj for inference
9 years ago
Yu Yang
fb32106e24
Make paddle.v2.inference can direct load protobuf
9 years ago
qijun
a3ec652110
fix bug
9 years ago
hedaoyuan
c9d8cb4e90
Convolution op and forward calculation.
9 years ago
qijun
d6c3794cff
merge baidu/develop and remove unused gradient_checker/op_test_util
9 years ago
Liu Yiqun
4f2ee63c44
Get rid of the calling of inplace op in FCOp.
9 years ago
dangqingqing
28dc434036
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into lod_tensor_py
9 years ago
dangqingqing
68943f59aa
Add construction function for LoDTensor in pybind.
9 years ago
qijun
477b23c3f5
follow comments
9 years ago
qijun
436fbb0d6a
Merge remote-tracking branch 'baidu/develop' into refine_op_test
9 years ago
Yancey1989
76a70d10db
fix unit test error
9 years ago
qijun
9d46f443fe
fix attr bug in op_test and ensure order in duplicate inputs/outputs
9 years ago
Yibing Liu
7ae72f752d
remove unused code in test
9 years ago
qijun
2d807f2b4c
init refine op python tests
9 years ago
Yancey
7bd517129a
Add Concat operator with CPU kernel ( #3775 )
...
add concat op with CPU kernel
9 years ago
Yibing Liu
477d92bcd2
merge conflicts
9 years ago
Yibing Liu
dd64349a92
refine reshape operator
9 years ago
Liu Yiqun
4223ff8c27
Correct the key name of "mul" op in FCOp, and add some annotations for debug.
9 years ago
wanghaoshuang
ba8a5c155d
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into pad_op
9 years ago
Liu Yiqun
70e60d73f9
Merge branch 'develop' into core_add_fc_op
9 years ago
武毅
d34516fb66
Get output when training ( #3978 )
...
* get output when training
* follow comments
9 years ago
xzl
e129dcfb74
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into op_transpose
9 years ago
Liu Yiqun
d874fca46b
Support multiple inputs in FCOp.
9 years ago
chengduo
663f14319b
Merge pull request #3995 from wanghaoshuang/fix_warning
...
Fix switch layer attribute name
9 years ago
qingqing01
0f05fded23
Merge pull request #3991 from Noplz/develop
...
Fixed some ssd bugs.
9 years ago
dangqingqing
372ede1527
update and fix conflicts.
9 years ago
dangqingqing
d0dbc0610f
Correctly use host_vector in LoDTensor and expose LoDTensor to Python.
9 years ago
gaoyuan
1eb5e56f38
Add comment to the PythonAPI
9 years ago
wanghaoshuang
e1da6c06c2
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into pad_op
9 years ago
QI JUN
c1696696a3
Merge pull request #3882 from QiJune/refactor_op_py_test
...
Refactor operator python test framework and add sum operator
9 years ago
wanghaoshuang
a251956d7d
Add activation to output of switch layer
9 years ago
wanghaoshuang
253b19ed9a
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix_warning
9 years ago
wanghaoshuang
5bd3fbeef8
Fix switch layer attribute name
9 years ago
Yibing Liu
02da0d1bb2
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into reshape_op_dev
9 years ago
yangyaming
1c81d57938
Add huber loss operator.
9 years ago
yangyaming
984117458c
Finish modified huber loss op.
9 years ago
chengduo
0be349496f
Merge pull request #3594 from chengduoZH/Adapting_to_the_BatchNorm_structure_to_support_3D_data
...
Adapting to the BatchNorm structure to support 3D data
9 years ago
chengduo
2fefaa1c94
Merge pull request #3977 from PaddlePaddle/Adaptive_data_structure_for_SwitchOrderLayer
...
Adaptive data structure for switch order layer
9 years ago
chengduoZH
80a8e91fb8
fix order
9 years ago
chengduoZH
aea05b6e95
add param mean_var_names
9 years ago
chengduoZH
26638e9cab
fix batch_norm parameter share
9 years ago
chengduoZH
91a0c11b19
Adaptive data structure for SwitchOrderLayer
9 years ago
xzl
4da89f28cb
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into op_transpose
9 years ago
xzl
828008e41d
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into op_transpose
9 years ago
xzl
d6651b9b8e
fixed bug of the gpu impl
9 years ago
qingqing01
4c68405c95
Fix name in test_lookup_table
9 years ago
yangyaming
3a49bae0b4
Finish forward for GPU and CPU and CPU backward.
9 years ago
wanghaoshuang
d79e3e4d9b
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into pad_op
9 years ago
wanghaoshuang
0910a9bac4
Refine pad op
...
1. Rename variables by Google style.
2. Add more test cases.
3. Add more detail and meaningful comments.
4. Change type of "padding" to vector<int>
9 years ago
qijun
c0192889cc
fix code style
9 years ago
qijun
15627e48d8
fix gou test bug
9 years ago
caoying03
2070bc936d
Merge branch 'develop' into softmax_with_cost_op
9 years ago
qijun
090b8114e6
merge baidu/develop
9 years ago
qijun
f50e36e285
follow comments
9 years ago
fengjiayi
f6e72c93c7
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into dev_add_axis
9 years ago
武毅
3fbb692d4b
Add topk op ( #3760 )
...
* init add
* add topk op
* someupdate
* fix style check
* add test py file
* update top k cuda kernel
* follow comments
* remove debug print
* fix casting error
* fix casting error
* fix casting error
* fix rename bug...
* fix travis
9 years ago
Yibing Liu
899c7d6b35
pass unit test
9 years ago
Liu Yiqun
c05d319c2d
Merge branch 'develop' into core_add_fc_op
9 years ago
Liu Yiqun
734a9eeaa4
Correct the definition of Operator in TestFCGradOp, and rename the output name
...
of identity to Y.
9 years ago
Cao Ying
da66891b94
Merge pull request #3928 from lcy-seso/refine_softmax_op
...
Refine names and doc of some operators.
9 years ago