This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
This has been generated by the overpass-turbo wizard. | |
The original search was: | |
“name=KaupShop” | |
--> | |
<osm-script output="json" timeout="125"> | |
<!-- gather results --> | |
<union> | |
<query type="relation"> | |
<has-kv k="admin_level" v="10"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.econ.berkeley.edu/course/economics-202a-%E2%80%93-macroeconomic-theory-0 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/llSourcell/tensorflow_chatbot #easy going | |
https://github.com/chiphuyen/stanford-tensorflow-tutorials/tree/master/assignments/chatbot #nice write up, for stanford class | |
https://github.com/Conchylicultor/DeepQA #google brain resident, interesting (recognizes shortcomings/future work) | |
https://github.com/dennybritz/chatbot-retrieval/ #just classification but tbh anything else is pretty bad as of now.. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Most code from John Schulman's MLSS talk on Deep Reinforcement Learning | |
#http://rl-gym-doc.s3-website-us-west-2.amazonaws.com/mlss/lab1.html#szitalorincz06 | |
import numpy as np | |
import gym | |
from gym.spaces import Discrete, Box | |
# ================================================================ | |
# Policies | |
# ================================================================ |