Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. begin{tikzpicture}[node distance=1cm, auto,]
  2. %nodes
  3. node[punkt] (agent) {Agent};
  4. node[below=of agent] (dummy) {};
  5. node[left=2.0 of dummy] (state) {$X_t$}
  6. edge[pil, bend left=45] (agent.west);
  7. node[left=3.0 of dummy] (reward) {$R_t$}
  8. edge[pil, bend left=45] (agent.west);
  9. node[punkt, inner sep=5pt,below=1.0cm of dummy]
  10. (environment) {Environment}
  11. edge[pil, bend left=45] (state.south)
  12. edge[pil, bend left=45] (reward.south);
  13. node[right=2.0cm of dummy] (action) {$A_t$}
  14. edge[pil,bend left=45] (agent.east)
  15. edge[pil, bend left=45] (environment.east);
  16. end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement