Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. (def network-100-10-7-1
  2. [(layers/input 28 28 1 :id :data)
  3. (layers/linear 94)
  4. (layers/prelu)
  5. (layers/batch-normalization)
  6. (layers/relu)
  7. (layers/batch-normalization)
  8. (layers/prelu)
  9. (layers/linear 94)
  10. (layers/prelu)
  11. (layers/batch-normalization)
  12. (layers/linear 10)
  13. (layers/softmax :id :labels)])
  14.  
  15. ;; Training network:
  16. ;; | type | input | output | :bias | :means | :neg-scale | :scale | :variances | :weights |
  17. ;; |----------------------+---------------+-------------+-------+--------+------------+--------+------------+----------|
  18. ;; | :linear | 1x28x28 - 784 | 1x1x94 - 94 | [94] | | | | | [94 784] |
  19. ;; | :prelu | 1x1x94 - 94 | 1x1x94 - 94 | | | [94] | | | |
  20. ;; | :batch-normalization | 1x1x94 - 94 | 1x1x94 - 94 | [94] | [94] | | [94] | [94] | |
  21. ;; | :relu | 1x1x94 - 94 | 1x1x94 - 94 | | | | | | |
  22. ;; | :batch-normalization | 1x1x94 - 94 | 1x1x94 - 94 | [94] | [94] | | [94] | [94] | |
  23. ;; | :prelu | 1x1x94 - 94 | 1x1x94 - 94 | | | [94] | | | |
  24. ;; | :linear | 1x1x94 - 94 | 1x1x94 - 94 | [94] | | | | | [94 94] |
  25. ;; | :prelu | 1x1x94 - 94 | 1x1x94 - 94 | | | [94] | | | |
  26. ;; | :batch-normalization | 1x1x94 - 94 | 1x1x94 - 94 | [94] | [94] | | [94] | [94] | |
  27. ;; | :linear | 1x1x94 - 94 | 1x1x10 - 10 | [10] | | | | | [10 94] |
  28. ;; | :softmax | 1x1x10 - 10 | 1x1x10 - 10 | | | | | | |
  29. ;; Parameter count: 85080
  30. ;; Saving network to experiment.nippy
  31. ;; Classification accuracy: 0.9509
  32. ;; Saving network to experiment.nippy
  33. ;; Classification accuracy: 0.9636
  34. ;; Saving network to experiment.nippy
  35. ;; Classification accuracy: 0.9699
  36. ;; Saving network to experiment.nippy
  37. ;; Classification accuracy: 0.9714
  38. ;; Saving network to experiment.nippy
  39. ;; Classification accuracy: 0.9731
  40. ;; Saving network to experiment.nippy
  41. ;; Classification accuracy: 0.9738
  42. ;; Saving network to experiment.nippy
  43. ;; Classification accuracy: 0.974
  44. ;; Saving network to experiment.nippy
  45. ;; Classification accuracy: 0.9747
  46. ;; Saving network to experiment.nippy
  47. ;; Classification accuracy: 0.9753
  48. ;; Saving network to experiment.nippy
  49. ;; Classification accuracy: 0.9758
  50. ;; Classification accuracy: 0.9756
  51. ;; Classification accuracy: 0.9755
  52. ;; Classification accuracy: 0.9754
  53. ;; Classification accuracy: 0.9753
  54. ;; Classification accuracy: 0.9754
  55. ;; Classification accuracy: 0.9752
  56. ;; Classification accuracy: 0.975
  57. ;; Classification accuracy: 0.9749
  58. ;; Classification accuracy: 0.9753
  59. ;; Classification accuracy: 0.9752
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement