-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel.py
More file actions
37 lines (33 loc) · 942 Bytes
/
model.py
File metadata and controls
37 lines (33 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
class QNetwork(nn.Module):
"""
Policy Model
"""
def __init__(
self,
state_size: int,
action_size: int,
seed: int,
fc1_units: int=64,
fc2_units: int=64,
) -> None:
"""
Initialize hyperparameters and build model.
Params
======
state_size: number of states
action_size: number of actions
seed: random seed
"""
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: np.ndarray) -> torch.Tensor:
x = F.relu(self.fc1(state))
x = F.relu(self.fc2(x))
return self.fc3(x)