Yu Yang
d41ac09090
Merge pull request #1017 from gangliao/external
...
Download, build, install External dependencies via cmake
8 years ago
liaogang
be8b126845
Move Execepts into arch/osx dir
8 years ago
liaogang
b090ce329a
Fix conflict with develop
8 years ago
liaogang
8acd1ac31a
Add extern python interp
8 years ago
qiaolongfei
8ff42cd37d
merge develop
8 years ago
qiaolongfei
32b28c6429
add remote updater in api and swig
8 years ago
qiaolongfei
027aaf9ef2
add cluster train for quick_start
8 years ago
Yu Yang
adc58397d2
Merge pull request #969 from reyoung/feature/clean_gradient_machine_start
...
Remove not used params in GradientMachine::start
8 years ago
Yu Yang
4e34220852
Merge pull request #970 from reyoung/feature/clean_parameter_updater_finish_pass
...
Remove unused cost parameter in ParameterUpdater
8 years ago
Yu Yang
677c79b6a1
Merge branch 'feature/clean_parameter_updater_finish_pass' into feature/mnist_train_api
8 years ago
Yu Yang
71a316ea1f
Remove unused cost parameter in ParameterUpdater
8 years ago
Yu Yang
ad6cb60d74
Merge branch 'feature/clean_gradient_machine_start' into feature/mnist_train_api
8 years ago
Yu Yang
56f29658ba
Remove not used params in GradientMachine::start
8 years ago
Yu Yang
0d1703d91f
Add const in ParameterUpdater init
8 years ago
Yu Yang
7aad9f539e
Merge branch 'develop' of github.com:baidu/Paddle into feature/add_unittest
8 years ago
Yu Yang
96eab5046a
Complete unittest setting in CMake
8 years ago
Yu Yang
04fb1fc13e
Merge pull request #891 from backyes/sparse_bug
...
[Sparse Bug] Test and sparse_remote_update can not co-exsit, crash trainer if necessary
8 years ago
Yu Yang
22b9b6662b
Add unittest to coverage SgdThreadUpdater's enableBufType
8 years ago
wangyanfei01
7c7430470d
follow comments: more readable LOG
8 years ago
wangyanfei01
45bd0a5e16
more accurate to early stop train sparse model
8 years ago
liaogang
3d0e73bd32
Remove custom glog-like and gflags-like macros
8 years ago
wangyanfei01
2294b819cc
Merge remote branch 'origin/develop' into sparse_bug
8 years ago
wangyanfei01
f53e8d7a09
fix bug: if test and sparse_remote_update can not co-exsit, crash trainer if necessary
8 years ago
Yu Yang
068bfbb817
All file pass pre-commit hook
8 years ago
Yi Wang
e9549cbb78
Change "Baidu, Inc" into "PaddlePaddle Authors"
8 years ago
Yu Yang
ba68704edb
Fix api test, fix testing script for macos
8 years ago
Yu Yang
3100406cc4
Simplify the testOnePeriod method.
8 years ago
wangyanfei01
1f2423a919
follow comments: more docs
8 years ago
wangyanfei01
290ee32f2d
fix confliction
8 years ago
wangyanfei01
63de3ec2ba
merge origin/develop and fix confliction
8 years ago
Luo Tao
7830893a83
fix conflict
8 years ago
xuwei06
66520f8b41
Fix --job=test
...
When the define_py_data_sources2 has both train_list and test_list,
for job=test, the trainer will create both dataProvider_ and testDataProvider_.
But dataProvider_ is not used. This causes SIGSEGV at finishAsync() because asyncLoader_ is not created.
Change-Id: If579f715f80a70ebc795094792c3436bfa0f5746
8 years ago
wangyanfei01
1f743d381c
Redesign test_period meaning:
...
* always do test on all test data
* do test at the end of each pass if test_period=0, otherwise do test if test_period batches passed
8 years ago
Luo Tao
96615fe329
merge develop, fix conflict
8 years ago
Luo Tao
80c68d38ff
clang format .cc .h .cpp .c and .hpp file
8 years ago
Luo Tao
496d64ebdb
Support rectangle input for CNN
8 years ago
Yu Yang
836d61382f
Update pre-commit-config
...
* Check all files by pre commit hooks
9 years ago
qijun
319742c641
format python code in demo, doc, doc_cn and paddle directories
9 years ago
wangyanfei01
b62c80f156
qfg
9 years ago
wangyanfei01
0feecbd13c
modify on docs
9 years ago
wangyanfei01
0a0c55d228
more friendly test options
9 years ago
wangyanfei01
c6a0298e2a
create PR to polish test_period meaning
9 years ago
Yu Yang
968464cc60
Fix a bug in testOnePeriod. ( #322 )
...
* Forget to finishTestPeriod in testOnePeriod.
* Fix #318
9 years ago
qingqing01
45c81a414f
Add job=time in trainer, refine cudnn_conv to reduce gpu memory and speed up training. ( #218 )
...
* Add benchmark for PaddlePaddle, tensorflow and caffe
* ConvProjection to reduce memory for goolenet
* Add unit test for ConvProjection.
1. unit test in test_LayerGrad.
2. compare the ConvPorjection and CudnnConvLayer, also compare the concat_layer+img_conv_layer and concat_layer_conv_projection.
* Reduce cudnn_conv memory and add benchmark document.
1. Use TmpMatrix as the workspace in cudnn_conv to reduce gpu memory. It reduce lots of memory.
2. Add benchmark document.
3. fix smallnet_mnist_cifar.py in paddle.
* Add job=time and refine cudnn_conv to reduce gpu memroy and speed up
* Refine cudnn_conv and shared biases operation in concat_layer and mixed_layer.
* follow comments
* follow comments
* Use unique_ptr to prevent memory leaks in CudnnConvLayer.
9 years ago
luotao1
ca5a5ec480
Make Paddle --save_dir support a directory name ( #277 )
...
* Also fix #243
9 years ago
backyes
0e1a22d0fc
set test_period default value to 0 ( #279 )
9 years ago
emailweixu
cbe734b396
Python trainer api ( #193 )
...
* Python trainer API and demo
* Adding missing PaddleAPIPrivate.h
* Adding api_train.sh
* More comments
* Bump up patch version to 0b3
9 years ago
luotao1
e20ff3b3e9
fix build bug in gcc46 ( #236 )
9 years ago
emailweixu
28bc05b126
Fix sparse training for trainer_count=1 ( #204 )
...
* Fix sparse training for trainer_count=1
For trainer_count=1, the gradient machine is NeuralNetwork, which does not create parameter buf for PARAMETER_GRADIENT for sparse update in Parameter::enableType. But gradient parameter buf is still used in SgdThreadUpdater.
* Minor update to comment
9 years ago
luotao1
43f7d7b768
add interface and unittest for nce layer ( #180 )
...
* add interface and unittest for nce layer
* follow comments
9 years ago