- 26 10月, 2020 1 次提交
-
-
由 Leo Chen 提交于
* refine format * update doc * handle uninitialized tensor * add ut
-
- 21 10月, 2020 3 次提交
-
-
由 cnn 提交于
* rename manual_seed to seed * rename xxx1d-->xxx1D, xxx2d-->xxx2D, xxx3d-->xxx3D * rename manual_seed --> seed * do not rename .cc, .cu and .h file * rename manual_seed --> seed * rename manual_seed --> seed * rename manual_seed --> seed * rename manual_seed --> seed * disable_static on doc example code * donot change manual_seed on generator * add enable_static on sample code * convert python/paddle/fluid/layers/nn.py to bak * fix typo * fix code style * fix seed to manual_seed when call functions of Generator() * fix bug
-
由 李灿 提交于
-
由 zhulei 提交于
* Add new api: is_tensor * Add new api: is_tensor * Add new api: is_tensor * Add new api: is_tensor
-
- 19 10月, 2020 3 次提交
-
-
由 liuyuhui 提交于
* transfer from paddle.fluid.layers.assign() into creation.py,test=develop * fix ut fail,add support for paddle.assign,test=develop * fix,test=develop * fix UT coverage,test=coverage * fix UT fail,test=coverage * fix doc,test=develop
-
由 huangxu96 提交于
* Still has bugs. * Fixed allclose_op bug, which cannot deal with some cases of fp64 inputs. * improved CUDA kernel performance. * Changed CUDA code. * Fixed a bug in cuda kernel which cannot deal with large dimension input, and added an unittest for it. * Add a test case for float32 input.
-
由 pangyoki 提交于
* fix multinomial doc * fix multinomial error message * little doc change * fix Categorical class doc * optimize format of error message * fix CPU Kernel error message format * fix isinf and isnan error in WindowsOPENBLAS CI * delete inf and nan * add manual_seed in sample code * little error message change * change error message to InvalidArgument * add full point for error message and add manual_seed in CPU environment
-
- 16 10月, 2020 1 次提交
-
-
由 chentianyu03 提交于
-
- 15 10月, 2020 1 次提交
-
-
由 mapingshuo 提交于
-
- 14 10月, 2020 4 次提交
-
-
由 chentianyu03 提交于
* modify cond while_loop to paddle.static.nn.cond * modify crop_tensor to paddle.crop * modify Variable to paddle.static.Variable * remove nn.beam_search, nn.beam_search_decode, nn.gather_tree * remove bpr_loss, center_loss, rank_loss, smooth_l1, teacher_student_sigmoid_loss, edit_distance, sampled_softmax_with_cross_entropy in nn.functional * remove apis in nn.functional.learn_rate.py * remove pool2d, pool3d, adaptive_pool2d, adaptive_pool3d in nn.functional * remove apis in nn.functional.vision * remove erf, soft_relu in nn.functional.activation * remove apis in nn.functional.extension * remove nn.functional.rnn * remove hash from nn.functional.lod * remove row_conv from nn.functional.extension * remove one_hot, pad2d, pad_constant_like from nn.functional.common * remove nn.gather_tree, nn.BilinearTensorProduct, nn.Pool2D, nn.Pad2D * remove apis from optimizer.__init * remove tensor.creation.fill_constant * remove elementwise_mul in nn.functional.common and modify to paddle.multiply * remove tensor.stat.reduce_mean * remove reduce_all, reduce_any in tensor.logic * remove apis in tensor.math * remove apis in tensor.__init__ * remove has_inf, has_nan in tensor.search * remove apis in framework.__init__ * remove apis in paddle.__init__ * remove apis in nn.functional.__init__ * modify removed alias apis to raw api in doc and unittests * fix remove grid_sample bug * modify removed alias apis to raw api in doc and unittests * modify removed alias apis to raw api in doc and unittests * modify removed alias apis to raw api in doc and unittests * modify removed alias apis to raw api in doc and unittests * modify removed alias apis to raw api in doc and unittests * modify removed alias apis to raw api in doc and unittests * delete alias api relastions in doc * reserve paddle.compat, paddle.sysconfig * remove unittest for paddle.reduce_all, paddle.reduce_any * modify removed alias apis to raw api in doc and unittests * recover paddle.save and paddle.load * resolve conflicts * fix sample code missing paddle.enable_static() bug * fix sample code missing paddle.enable_static() bug * fix to_string sample code error
-
由 Leo Chen 提交于
* refine to_string * re-enable ut
-
由 liuyuhui 提交于
* update assign/cast/linspace/addcmul op doc for 2.0 api,test=document_fix * fix bug about cast doc for 2.0 api,test=document_fix
-
由 AshburnLee 提交于
Made a change in python API to support the GPU version of unique OP working in static graph (#27899) * Made a change to support unique op working in static graph * Correct python format error
-
- 13 10月, 2020 4 次提交
-
-
由 Leo Chen 提交于
* add sumary feature * refine printting tensor * add sci_mode * add sample code * fix indent error * fix _format_item * polish code * support item indent * add ut * set place for ut * fix py2 issue * fix ut
-
由 Chengmo 提交于
* update index sample
-
由 Steffy-zxf 提交于
* 1. remove paddle.unique_with_counts api, which counts as unique api 2. add paddle.math.increment(x, value=1.0, name=None) api 3. replace paddle.sums with paddle.add_n api 4. update paddle.metric.accuracy api (add name parameter)
-
由 Steffy-zxf 提交于
Update code examples for api2.0
-
- 12 10月, 2020 2 次提交
-
-
由 MRXLT 提交于
* refine parameters order && doc * update rmsprop doc * refine adam/transpose/unstack/stride_slice * fix bug && doc * fix doc * bug fix * bug fix * fix doc * fix doc * fix doc * fix doc * depercate old strided_slice * update doc * set default value for name * update doc
-
由 joejiong 提交于
Mutiply allows non-tensor data input
-
- 10 10月, 2020 1 次提交
-
-
由 LutaoChu 提交于
Fix cross, cumsum op docs
-
- 09 10月, 2020 1 次提交
-
-
由 zhupengyang 提交于
-
- 30 9月, 2020 4 次提交
-
-
由 123malin 提交于
* test=develop, update example
-
由 yaoxuefeng 提交于
-
由 Qi Li 提交于
-
由 ShenLiang 提交于
* fix the scatternd/scatterndadd * fix the doc of scatter * replace rank with ndim
-
- 29 9月, 2020 4 次提交
-
-
由 pangyoki 提交于
* add multinomial cpu kernel * fix C++ notype error * fix windows ci array len error * let array len be const * change array to vector * add cuda kernrl with num_distribution is 1, and not support replacement=False * add multinomial python api * support num_distribution different multinomial distributions * add multinomial python api unittest * change output dtype to int64 * fix coverage prob * optimize format * fix dtype of output error, should be int64_t
-
由 yaoxuefeng 提交于
-
由 yaoxuefeng 提交于
-
由 furnace 提交于
-
- 28 9月, 2020 2 次提交
-
-
由 mapingshuo 提交于
-
由 Leo Chen 提交于
* remove inplace argument * fix sample code * fix sample code
-
- 27 9月, 2020 1 次提交
-
-
由 Zhou Wei 提交于
-
- 25 9月, 2020 1 次提交
-
-
由 ShenLiang 提交于
* add fp16 for matmul
-
- 23 9月, 2020 2 次提交
-
-
由 Chen Weihang 提交于
* init commit of new save/load * fix failed unittests * fix save_load_v2 unittest failed * fix failed unittest & polish doc * add tests for coverage * add more tests & move static apis * fix example code error * polish emample code * fix detail example code problem
-
由 Zhou Wei 提交于
* Makes the Bind Method more intelligent * Makes the Bind Method more intelligent * fix unittest * fix unittest * fix conflict
-
- 22 9月, 2020 1 次提交
-
-
由 Kaipeng Deng 提交于
* remove paddle.readers API. test=develop
-
- 21 9月, 2020 1 次提交
-
-
由 furnace 提交于
-
- 17 9月, 2020 1 次提交
-
-
由 furnace 提交于
and optimize the c++ implmentation of empty op as PR#26659 reviews, and add bool for shape op.
-
- 14 9月, 2020 1 次提交
-
-
由 lilong12 提交于
* bug fix, test=develop
-
- 11 9月, 2020 1 次提交
-
-
由 Leo Chen 提交于
* temporally disable zero_copy * add test * follow comments
-