1. 17 6月, 2018 2 次提交
  2. 09 6月, 2018 1 次提交
  3. 07 6月, 2018 1 次提交
  4. 06 6月, 2018 2 次提交
  5. 05 6月, 2018 4 次提交
  6. 04 6月, 2018 1 次提交
  7. 01 6月, 2018 1 次提交
  8. 31 5月, 2018 1 次提交
  9. 30 5月, 2018 6 次提交
  10. 29 5月, 2018 4 次提交
  11. 28 5月, 2018 1 次提交
  12. 23 5月, 2018 1 次提交
  13. 22 5月, 2018 1 次提交
  14. 18 5月, 2018 1 次提交
  15. 17 5月, 2018 1 次提交
  16. 16 5月, 2018 3 次提交
  17. 14 5月, 2018 2 次提交
  18. 12 5月, 2018 1 次提交
    • Q
      Add inferencer infer (#10445) · 2a971f30
      Qiao Longfei 提交于
      * add Inference.infer
      
      * optimize code
      
      * update no_test_word2vec_new_api.py
      
      * update trainer
      
      * split check_and_get_place
      
      * use inference_program to save inference model in Trainer
      
      * update demo
      
      * update save_inference_model
      
      * clean code
      2a971f30
  19. 11 5月, 2018 1 次提交
    • F
      trainer.test() (#10453) · ba57348f
      fengjiayi 提交于
      * a draft of trainer.test()
      
      * polish trainer.test()
      
      * polish trainer.test()
      
      * update code format
      
      * update
      
      * polish code
      
      * polish code
      
      * polish code
      
      * Make trainer.test follow the rule of returning [loss, metric, metric, ..]
      ba57348f
  20. 08 5月, 2018 1 次提交
  21. 07 5月, 2018 2 次提交
  22. 05 5月, 2018 1 次提交
    • J
      Trainer save load params (#10386) · bd66eed5
      Jeff Wang 提交于
      * Load/save the params from the params_path
      
      * Switch to use load_persistables and save_persistables
      
      * Instaed of setup the executor to run program and scope. Pass the program to the load_persistables
      bd66eed5
  23. 04 5月, 2018 1 次提交
    • H
      Fluid new API: dist train without modifying code · 8ee23da8
      Helin Wang 提交于
      Works with 1 trainer 1 pserver. 2 trainer 1 pserver will stuck at the
      end of first step, still investigating.
      
      The user only need to set envrionment variables to enable distributed
      training.
      
      run pserver:
      
      PADDLE_TRAINING_ROLE=PSERVER PADDLE_PSERVER_IPS=127.0.0.1 PADDLE_TRAINERS=2 PADDLE_CURRENT_IP=127.0.0.1 python no_test_word2vec_new_api.py
      
      run trainer:
      
      PADDLE_TRAINING_ROLE=TRAINER PADDLE_PSERVER_IPS=127.0.0.1 PADDLE_TRAINERS=2 PADDLE_TRAINER_ID=0 python no_test_word2vec_new_api.py
      8ee23da8