Guest User

Untitled

a guest
Nov 25th, 2016
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 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: 10
  9. }
  10. }
  11. layer {
  12. name: "softmax"
  13. type: "Softmax"
  14. bottom: "ip"
  15. top: "softmax"
  16. include {
  17. stage: "deploy"
  18. }
  19. }
  20. layer {
  21. name: "accuracy"
  22. type: "Accuracy"
  23. bottom: "ip"
  24. bottom: "label"
  25. top: "accuracy"
  26. include {
  27. stage: "val"
  28. }
  29. }
  30. layer {
  31. name: "loss"
  32. type: "SoftmaxWithLoss"
  33. bottom: "ip"
  34. bottom: "label"
  35. top: "loss"
  36. exclude {
  37. stage: "deploy"
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment