1. 17 3月, 2017 1 次提交
  2. 06 3月, 2017 1 次提交
  3. 21 2月, 2017 1 次提交
  4. 20 2月, 2017 1 次提交
  5. 14 2月, 2017 1 次提交
    • X
      Make it possible to postpone setting the layer name for a memory. · 7d551dd4
      xuwei06 提交于
      The reason for adding the function is exemplified in the following hypothetical code:
      
      mem = memory(name=None, size=256)
      hidden = fc_layer(input=mem)
      state = hidden + x
      mem.set_input(state)
      
      In the above code segment, it would be very annoying if we require the user to provide
      the name at memory() call because the layer name of state is automatically generated
      and is not easy to set it.
      
      Change-Id: I918bf1d3d5c26addd88a6f7021e98b3e0e9df494
      7d551dd4
  6. 10 2月, 2017 1 次提交
  7. 03 2月, 2017 1 次提交
  8. 02 2月, 2017 4 次提交
  9. 31 1月, 2017 1 次提交
  10. 17 1月, 2017 2 次提交
  11. 16 1月, 2017 1 次提交
  12. 06 1月, 2017 1 次提交
  13. 05 1月, 2017 1 次提交
  14. 16 12月, 2016 2 次提交
  15. 12 12月, 2016 1 次提交
  16. 09 12月, 2016 1 次提交
  17. 08 12月, 2016 4 次提交
  18. 05 12月, 2016 1 次提交
  19. 02 12月, 2016 1 次提交
  20. 01 12月, 2016 1 次提交
    • P
      Fix test_layerHelpers bug · 749456bd
      Peng Li 提交于
      The values for ____crf_layer_0__.w0 in python/paddle/trainer_config_helpers/tests/configs/protostr/test_cost_layers.protostr is not correct due to swapped height and width in config_parser
      749456bd
  21. 30 11月, 2016 1 次提交
  22. 29 11月, 2016 2 次提交
  23. 28 11月, 2016 1 次提交
  24. 17 11月, 2016 1 次提交
  25. 15 11月, 2016 1 次提交
    • X
      Add ScalingProjection · bf6f690f
      xuwei06 提交于
      out = w * input
      where w is a parameter of size 1
      
      Change-Id: Ife682d62323ceb1a20cbbf6269421b20a862d888
      bf6f690f
  26. 12 11月, 2016 1 次提交
  27. 11 11月, 2016 4 次提交
  28. 10 11月, 2016 1 次提交
    • H
      set mixedlayer output size according to input operator (#414) · 8d4c453b
      Haonan 提交于
      * set mixedlayer output size according to input operator
      * change from num_channel to num_channels for conv_operator (the old one is
      really misleading because all the others are num_channels)
      
      * also changed the arg name in projections.py
      8d4c453b