- 30 9月, 2020 12 次提交
-
-
由 123malin 提交于
* test=develop, update example
-
由 Leo Chen 提交于
* move dygraph amp api to paddle * refine code and add unit test
-
由 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 categorical class * fix test_distribution enable_static error * add unittest for different setting of Categorical * optimize format * little change * little change * add raise error if shape not match, optimize format * fix windows CI dtype error in concat * little changes * little changes2 * change values type to int64 * change values type to int64 * change values type to int64
-
由 Huihuang Zheng 提交于
* Add test_resnet_v2.py test=develop
-
由 LielinJiang 提交于
* refine grid_sample and temporal_shift
-
由 danleifeng 提交于
* fleet support non_distributed training in dygraph mode; test=develop
-
由 yaoxuefeng 提交于
-
由 Qi Li 提交于
-
由 tianshuo78520a 提交于
* add xpu test * notest;add kunlun_test * notest;add kunlun_test * notest;test=kunlun * notest;test=kunlun * notest;test=kunlun * notest;test=kunlun * test=kunlun
-
由 Peihan 提交于
* fix test_se_resnet unittest * fix test_se_resnet unittest * add comments for decresing test_se_resnet precision
-
由 ShenLiang 提交于
* fix the scatternd/scatterndadd * fix the doc of scatter * replace rank with ndim
-
由 Huihuang Zheng 提交于
As the title
-
- 29 9月, 2020 16 次提交
-
-
由 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
-
由 pangyoki 提交于
* increase tolerance * increase the difference between low and high * change tolerance of Normal log_prob method * change probs tolerance to 1e-4 * change tolerance of Normal kl method
-
由 ceci3 提交于
-
由 Wojciech Uss 提交于
-
由 123malin 提交于
* test=develop, optimize geo communicator
-
由 Pei Yang 提交于
-
由 Chen Weihang 提交于
* remove data parallel scale loss & apply collective_grads * move apply in minimize * fix failed unittests
-
由 yukavio 提交于
-
由 Huihuang Zheng 提交于
Refine Dy2stat APIs to 2.0rc After discussion, we accepted 3 key points from reviewers: 1. In 2.0rc we changed dygraph_to_static folder to dy2static 2. Keep the three files: convert_call_func.py, convert_operators.py, variable_trans_func.py 3. Remove convert_operators path when users import convert_xxx. After this PR, users can import convert_xxx APIs by: `import paddle.jit.dy2static.convert_xxx` The file structure will be: ``` jit dy2static convert_operators.py convert_func_call.py variable_trans_func.py ``` Detail changed API in files: In python/paddle/jit/dygraph_to_static/convert_call_func.py: from ...fluid.dygraph.dygraph_to_static.convert_call_func import convert_call #DEFINE_ALIAS In python/paddle/jit/dygraph_to_static/convert_operators.py: from ...fluid.dygraph.dygraph_to_static.convert_operators import cast_bool_if_necessary #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_assert #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_ifelse #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_len #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_logical_and #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_logical_not #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_logical_or #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_print #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_var_dtype #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_var_shape #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_while_loop #DEFINE_ALIAS In python/paddle/jit/dygraph_to_static/variable_trans_func.py: from ...fluid.dygraph.dygraph_to_static.variable_trans_func import create_fill_constant_node #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.variable_trans_func import create_static_variable_gast_node #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.variable_trans_func import data_layer_not_check #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.variable_trans_func import to_static_variable #DEFINE_ALIAS from ...fluid.dygraph.dygraph_to_static.variable_trans_func import to_static_variable_gast_node #DEFINE_ALIAS
-
由 MRXLT 提交于
-
由 Shang Zhizhou 提交于
* add paddle.enable_static() to some testcase * add seed to random in test_activation_op * update a randomseed * update a randomseed
-
由 Huihuang Zheng 提交于
This PR fixed two bugs when converting LSTM in dy2stat: is_unsupported has a condition can trigger Python syntax error LSTM API's implementation in _rnn_static_graph doesn't include parameter initialization, which can cause dy2stat error.
-
由 lilong12 提交于
* add gloo initializer, test=develop
-
由 Huihuang Zheng 提交于
We decreased the batch size on CPU so that it can run correctly on Win/Mac machine, this may cause the delta to be larger. So I set larger delta value.
-
由 danleifeng 提交于
* fix is_empty api and code example; test=develop
-
由 LiuChiachi 提交于
* add transformer generate square subsequent mask api * add dtype for input, update doc, use -np.inf * add dtype for input, update doc, use -np.inf
-
- 28 9月, 2020 12 次提交
-
-
由 whs 提交于
-
由 arlesniak 提交于
* Add support for mkldnn ops types selection with FLAGS in dygraph * use regex to match DNNL verbose * python3 encoding fix
-
由 YUNSHEN XIE 提交于
-
由 Qinghe JING 提交于
* set default value to strategy in distributed_optimizer test=develop
-
由 Leo Chen 提交于
* support not passing block * fix NumpyArrayInitializer * add unit test
-
由 Feiyu Chan 提交于
1. fix a bug that paddle.nn.RNN does not initialize the state for the cell correctly; 2. add unittest for paddle.nn.RNN and paddle.nn.BiRNN
-
由 Li Fuchen 提交于
* modified sample code of add_position_encoding to 2.0, test=document_fix * use core.op in add_position_encoding API. * add test for add_position_encoding in dygraph mode
-
由 yaoxuefeng 提交于
-
由 lilong12 提交于
-
由 Pei Yang 提交于
* add unittests and op version register for tensorrt_subgraph_pass * rename to test_trt_subgraph_pass.py * fix softmax converter diff when padding dim=1
-
由 123malin 提交于
* test=develop, rm netifaces
-
由 Li Fuchen 提交于
-