Update (small) the reinforcement learning chapter

main
8bitmp3 2020-10-17 15:04:51 +01:00 committed by GitHub
parent 1e81324573
commit 80f6cb27c0
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's create a neural network that will take observations as inputs, and output the action to take for each observation. To choose an action, the network will estimate a probability for each action, then we will select an action randomly according to the estimated probabilities. In the case of the Cart-Pole environment, there are just two possible actions (left or right), so we only need one output neuron: it will output the probability `p` of the action 0 (left), and of course the probability of action 1 (right) will be `1 - p`."
"Let's create a neural network that will take observations as inputs, and output the probabilities of actions to take for each observation. To choose an action, the network will estimate a probability for each action, then we will select an action randomly according to the estimated probabilities. In the case of the Cart-Pole environment, there are just two possible actions (left or right), so we only need one output neuron: it will output the probability `p` of the action 0 (left), and of course the probability of action 1 (right) will be `1 - p`."
]
},
{