- 17 9月, 2020 2 次提交
-
-
由 liym27 提交于
* Add env value to log to stdout; 2.Add logger name * Optimize log messages in dygraph-to-static * Replace logging.warn and warnings.warn with logging_utils.warn
-
由 Huihuang Zheng 提交于
Change ProgramTranslator.enable_declarative to ProgramTranslator.enable_to_static to meet API 2.0
-
- 16 9月, 2020 3 次提交
-
-
由 Leo Chen 提交于
* remove objgraph * remove graphviz * fix ut
-
由 Chen Weihang 提交于
* support load state_dict from save_params/persistables * remove failed unittest * add load eof check & unittest * remove eof check
-
由 Chen Weihang 提交于
* add input_spec & output_spec for translated_layer * update error message
-
- 14 9月, 2020 2 次提交
-
-
由 zhupengyang 提交于
-
由 Zhen Wang 提交于
Update amp_check_finite_and_scale_op and add an updating_loss_scaling op for static graph amp training. (#26240) * update amp_check_finite_and_scale_op for static_amp. * use amp_check_finite_and_scale in static graph amp. * update grads to zero when grads own infinite values(as for amp_checkout_finite_and_scale op). * add update_loss_scaling op in cpp. * add update_loss_scaling_op unit test. * update the doc of the check_finite_and_unscale op * Update the process of gradients updating skipping if the gradients have infinite values. * update the way to zero grads. * update test_update_loss_scaling_op.py * add log info when find infinite grads. * add the unit test for UpdateLossScaling Layer.
-
- 11 9月, 2020 5 次提交
-
-
由 Leo Chen 提交于
* temporally disable zero_copy * add test * follow comments
-
由 Chen Weihang 提交于
-
由 liym27 提交于
-
由 Chen Weihang 提交于
-
由 Aurelius84 提交于
* support to_static(model) * add warning and unittest
-
- 10 9月, 2020 2 次提交
-
-
由 Chen Weihang 提交于
* add some unittest cases ot verify jit.save, no_test * add more unittests * add test with example inputs * polish implement details * remove useless blank * fix fetch random error
-
由 ShenLiang 提交于
-
- 09 9月, 2020 2 次提交
-
-
由 liym27 提交于
-
由 Aurelius84 提交于
* Add naming rule if not specific InputSpec.name * fix function name typo * refine comment * remove print statement
-
- 08 9月, 2020 1 次提交
-
-
由 Chen Weihang 提交于
-
- 07 9月, 2020 2 次提交
-
-
由 Chen Weihang 提交于
* change configs to config & update examples * fix deprecate decorator conflict
-
由 Aurelius84 提交于
* add descriptor cache * fix self arugments * deal case if instance is None * clean code * fix usage
-
- 06 9月, 2020 1 次提交
-
-
由 Chen Weihang 提交于
* add TranslatedLayer.program method * add unittests & update example code * polish example code * update program api example code
-
- 03 9月, 2020 2 次提交
-
-
由 Chen Weihang 提交于
* update set_dict method name & add aliases * fix var name error * fix alias formats * use set_state_dict in unittest * add decorator solve compatible problem * polish decorator * replace layer set_state_dict by patched method * remove import monkey path layer * fix import function error * add unittest for coverage
-
由 Chen Weihang 提交于
* support load infer model format state dict * add unittests * remove keep name table * recolve circle inport * fix compatible problem * recover unittest * polish doc and comment
-
- 02 9月, 2020 3 次提交
-
-
由 liym27 提交于
Raise RuntimeError if run the callable object decorated by '@paddle.jit.to_static' not in dynamic mode. (#26750)
-
由 liym27 提交于
-
由 Yang Zhang 提交于
-
- 01 9月, 2020 2 次提交
-
-
由 liym27 提交于
[Dy2Stat-debugging] Fix bug: Returns True if the verbosity level set by the user is greater than or equal to the log level (#26858)
-
由 MRXLT 提交于
* update doc * update doc * fix optimizer sample code * add default value for adamw weight_decay * fix adamw * change LearningRateDecay to _LRScheduler * fix adamw;notest * fix load;notest * remove file * bug fix * fix code style * bug fix * add ut * adamw support weight_decay=0 * fix ut * fix set_lr doc * fix doc * change parameters place
-
- 31 8月, 2020 3 次提交
-
-
由 Chen Weihang 提交于
* remove backend argument of init_parallel_env * remove keep name table in transformer * add cpu version check * add skip unittest for init_parallel_env * polish doc: remove func use & update example
-
由 Aurelius84 提交于
-
由 Aurelius84 提交于
* Fix Python Version compatibility * add import six
-
- 28 8月, 2020 4 次提交
-
-
由 Zhen Wang 提交于
Use `Tensor` instead of `Variable` in the doc of paddle.grad.
-
由 Chen Weihang 提交于
* add dygraph parallel run interface * polish implement & unified env property name * add print config arg * refactor init_parallel_env function * Compatible with multiprocessing and launch modes * set default trainer start port * support run in python 2 * polish python2 support code * remove python2 support * refine launch import * polish dome design details * refactor api implemention & path * use new method _set_expected_place * add spawn unittest framework & mnist test * add more unittests & doc * fix unittest failed * polish english doc * self review and polish details * refactor code by reviewer's comments * fix unittest failed * fix parallel_env unittest * fix several typos * fix error introduced when fixing typos * add unpublic note for start_processes * polish details by xiaoguang's comment * verify correctly when spawn nprocs=-1 * refactor spawn & init_parallel_env design * polish doc details * open spawn unittests * try to fix doc compile error * try to fix unknown doc format error * add skip unittest when not gpu
-
由 liym27 提交于
* [Dy2Stat] Add debugging and logging mechanism for dygraph to static. * Remove TransformerError temporarily. * import mock in PY2, from unittest import mock in PY3. test=develop * Expose interfaces set_code_level and set_verbosity in paddle.jit, fix doc of the two interface. * polish doc of set_verbosity and set_code_level.
-
由 Zhen Wang 提交于
* update the demo code and the doc of varbase.backward. * update the doc of the fake interface `paddle.fluid.Variable`. * remove BackwardStrategy.
-
- 27 8月, 2020 2 次提交
-
-
由 Aurelius84 提交于
* add InputSpec * add unittest for tensorSpec and SimpleNet
-
由 wanghuancoder 提交于
* API2.0 del old api(BilinearTensorProduct) from nn init.py, test=develop * add import for deprecated, test=develop * modify deprecated location, test=develop * fix english doc, test=develop * Update __init__.py * Update __init__.py * Update common.py * fix english doc, test=develop Co-authored-by: NChen Weihang <chenweihang@baidu.com>
-
- 26 8月, 2020 1 次提交
-
-
由 Aurelius84 提交于
-
- 25 8月, 2020 1 次提交
-
-
由 Huihuang Zheng 提交于
As the title.
-
- 24 8月, 2020 2 次提交
-
-
由 ceci3 提交于
* fix syncbn, test=develop * fix test,test=develop * fix unittest,test=develop
-
由 yaoxuefeng 提交于
-