Guest User

Untitled

a guest
Nov 25th, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. name: "LinearRegression"
  2. layer {
  3. name: "ip"
  4. type: "InnerProduct"
  5. bottom: "data"
  6. top: "ip"
  7. inner_product_param {
  8. num_output: 100
  9. }
  10. }
  11. layer {
  12. name: "ip2"
  13. type: "InnerProduct"
  14. bottom: "ip"
  15. top: "ip2"
  16. inner_product_param {
  17. num_output: 10
  18. }
  19. }
  20. layer {
  21. name: "softmax"
  22. type: "Softmax"
  23. bottom: "ip2"
  24. top: "softmax"
  25. include { stage: "deploy" }
  26. }
  27. layer {
  28. name: "accuracy"
  29. type: "Accuracy"
  30. bottom: "ip2"
  31. bottom: "label"
  32. top: "accuracy"
  33. include { stage: "val" }
  34. }
  35. layer {
  36. name: "loss"
  37. type: "SoftmaxWithLoss"
  38. bottom: "ip2"
  39. bottom: "label"
  40. top: "loss"
  41. exclude { stage: "deploy" }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment