Guest User

Untitled

a guest
Sep 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. documentclass{article}
  2. usepackage[utf8]{inputenc}
  3.  
  4. usepackage[latin1]{inputenc}
  5. usepackage{tikz}
  6. usetikzlibrary{shapes,arrows}
  7.  
  8. % Define block styles
  9. tikzstyle{block} = [rectangle, draw,
  10. text width=15em, text centered, rounded corners, minimum height=16em]
  11. tikzstyle{line} = [draw, -latex']
  12. tikzstyle{cloud} = [draw, ellipse, node distance=6cm,
  13. minimum height=8em]
  14.  
  15. begin{document}
  16.  
  17. begin{tikzpicture}[node distance = 10cm, auto]
  18. % Place nodes
  19. node [block] (init) {underline{Machine}};
  20. node [cloud, left of=init] (data) {underline{Training data set}};
  21. node [cloud, above right of=init] (input) {underline{Input}};
  22. node [cloud, below right of=init] (output) {underline{Output}};
  23. % Draw edges
  24. path [line] (data) -- (init);
  25. path [line] (input) -- (init);
  26. path [line] (init) -- (output);
  27. end{tikzpicture}
  28.  
  29.  
  30. end{document}
Add Comment
Please, Sign In to add comment