Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def __init__(self, input_size, nb_action):
  2. super(Network, self).__init__()
  3. self.input_size = input_size
  4. self.nb_action = nb_action
  5. self.fc1 = nn.Linear(input_size, 100)
  6. self.fc2 = nn.Linear(100, nb_action)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement