Skip to content

Instantly share code, notes, and snippets.

@jadechip
Created November 6, 2019 04:40
Show Gist options
  • Save jadechip/f4fc668cca0c89a69a3a095f5483ce15 to your computer and use it in GitHub Desktop.
Save jadechip/f4fc668cca0c89a69a3a095f5483ce15 to your computer and use it in GitHub Desktop.
Reinforcement learning - Navigation companion code
class QNetwork(nn.Module):
"""Actor (Policy) Model."""
def __init__(self, state_size, action_size, seed, fc1_units=64, fc2_units=64):
super(QNetwork, self).__init__()
self.seed = torch.manual_seed(seed)
self.fc1 = nn.Linear(state_size, fc1_units)
self.fc2 = nn.Linear(fc1_units, fc2_units)
self.fc3 = nn.Linear(fc2_units, action_size)
def forward(self, state):
"""Build a network that maps state -> action values."""
x = F.relu(self.fc1(state))
x = F.relu(self.fc2(x))
return self.fc3(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment