1. 19 7月, 2017 1 次提交
  2. 11 7月, 2017 1 次提交
  3. 10 7月, 2017 1 次提交
    • W
      Add pixel softmax layer for FCN model · 29f25fbe
      wanghaoshuang 提交于
      1. Add switch function for switching image dimensions order
      2. Add CpuMatrix::backwardSoftmax function
      3. Add pixel softmax layer, python wrapper and grad_test
      29f25fbe
  4. 06 7月, 2017 2 次提交
  5. 03 7月, 2017 1 次提交
  6. 30 6月, 2017 1 次提交
  7. 29 6月, 2017 1 次提交
  8. 20 6月, 2017 1 次提交
  9. 18 6月, 2017 1 次提交
  10. 17 6月, 2017 2 次提交
  11. 16 6月, 2017 2 次提交
  12. 15 6月, 2017 1 次提交
    • X
      Parameter initializer in V2 API · dd2cbb63
      xuwei06 提交于
      User can provide an initializer in ParamAttr. The initializer will be called when at parameters.create().
      dd2cbb63
  13. 14 6月, 2017 1 次提交
  14. 13 6月, 2017 1 次提交
  15. 08 6月, 2017 1 次提交
  16. 07 6月, 2017 1 次提交
  17. 04 6月, 2017 1 次提交
  18. 02 6月, 2017 2 次提交
  19. 27 5月, 2017 1 次提交
  20. 26 5月, 2017 1 次提交
  21. 23 5月, 2017 1 次提交
  22. 17 5月, 2017 1 次提交
  23. 11 5月, 2017 1 次提交
  24. 24 4月, 2017 1 次提交
  25. 31 3月, 2017 1 次提交
  26. 24 3月, 2017 1 次提交
  27. 23 3月, 2017 1 次提交
  28. 21 3月, 2017 2 次提交
  29. 20 3月, 2017 1 次提交
  30. 13 3月, 2017 1 次提交
  31. 09 3月, 2017 1 次提交
  32. 01 3月, 2017 1 次提交
  33. 27 2月, 2017 1 次提交
  34. 22 2月, 2017 1 次提交
  35. 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