You need to sign in or sign up before continuing.
- 24 12月, 2018 1 次提交
-
-
由 minqiyang 提交于
test=develop
-
- 19 12月, 2018 1 次提交
-
-
由 sneaxiy 提交于
test=develop
-
- 18 12月, 2018 1 次提交
-
-
由 Qiao Longfei 提交于
-
- 17 12月, 2018 5 次提交
-
-
由 Qiao Longfei 提交于
-
由 Qiao Longfei 提交于
test=develop
-
由 Qiao Longfei 提交于
test=develop
-
由 minqiyang 提交于
test=develop
-
由 Qiao Longfei 提交于
-
- 14 12月, 2018 3 次提交
-
-
由 minqiyang 提交于
test=develop
-
由 minqiyang 提交于
test=develop
-
由 Qiao Longfei 提交于
-
- 13 12月, 2018 2 次提交
-
-
由 Qiao Longfei 提交于
-
由 Qiao Longfei 提交于
-
- 26 11月, 2018 1 次提交
-
-
由 minqiyang 提交于
test=develop
-
- 16 11月, 2018 1 次提交
-
-
由 Wu Yi 提交于
* wip simplify operator framework * wip * wip * done test=develop * clean test=develop * fix test=develop * fix deps test=develop * fix cpu build test=develop * fix tensorrt build test=develop * fix tests test=develop * fix test=develop * fix cpu build test=develop
-
- 08 11月, 2018 1 次提交
-
-
由 minqiyang 提交于
Fix code to support cpplint syntax check test=develop
-
- 15 10月, 2018 1 次提交
-
-
由 chengduo 提交于
* add check for opt op * fix opt op test=develop * fix test fail test=develop * fix optimization doc test=develop * test=develop
-
- 29 9月, 2018 1 次提交
-
-
由 sneaxiy 提交于
-
- 20 9月, 2018 2 次提交
- 18 9月, 2018 1 次提交
-
-
由 sneaxiy 提交于
-
- 23 7月, 2018 1 次提交
-
-
由 Yan Chunwei 提交于
-
- 27 6月, 2018 1 次提交
-
-
由 qiaolongfei 提交于
-
- 27 4月, 2018 1 次提交
-
-
由 Tomasz Patejko 提交于
* Some changes for Adam profiling * Adam optimization: initial Eigen optimization * Eigen Adam: flavour of adam can be chosen * Eigen Adam used for CPU by default. Plain Adam used for GPU * Eigen Adam: missing call to the Eigen functor added * Eigen Adam: revert changes in benchmarks * Eigen Adam: typo corrected
-
- 12 2月, 2018 1 次提交
-
-
由 qingqing01 提交于
-
- 10 2月, 2018 2 次提交
- 08 2月, 2018 1 次提交
-
-
由 Yu Yang 提交于
-
- 31 1月, 2018 1 次提交
-
-
由 dzhwinter 提交于
* "Need to re-design LoD " * "add lod design" * "fix lod gpu ptr pointer" * "removed commented code" * "fix CI" * "remove set lod in pybind" * "fix style check" * "fix CI" * "fix long type template error" * "pybind reorder to use Place" * "fix ci" * "fix ci" * fix ci * "sperate as a new file" * "fix CI" * "fix ci" * small fix * "add test" * "fix adam op" * "fix lstmp op" * "fix adam op" * "follow comments" * "fix ci"
-
- 29 12月, 2017 2 次提交
-
-
由 typhoonzero 提交于
-
由 typhoonzero 提交于
-
- 26 12月, 2017 2 次提交
-
-
由 typhoonzero 提交于
-
由 typhoonzero 提交于
-
- 25 12月, 2017 2 次提交
- 12 12月, 2017 1 次提交
-
-
由 QI JUN 提交于
There are mainly following fixes: - take `DeviceContext` as the template parameter of math functors and OpKernel instead of `Place` - remove `eigen_device` interface in base class `DeviceContext` - remove `GetEigenDevice` interface in `ExecutionContext` and base class `DeviceContext` - remove unused `platform::EigenDeviceConverter` - rename `REGISTER_OP_GPU_KERNEL` to `REGISTER_OP_CUDA_KERNEL` - rename `USE_GPU_ONLY_OP` to `USE_CUDA_ONLY_OP`
-
- 21 11月, 2017 1 次提交
-
-
由 Yu Yang 提交于
* Support many data types of several operators * SeqConv only support float/double * Revert adagrad
-
- 20 10月, 2017 1 次提交
-
-
由 Abhinav Arora 提交于
-
- 13 10月, 2017 1 次提交
-
-
由 Abhinav Arora 提交于
* 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
-
- 10 10月, 2017 1 次提交
-
-
由 Abhinav Arora 提交于
* 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
-