-
Notifications
You must be signed in to change notification settings - Fork 0
/
trainer.py
57 lines (43 loc) · 2.03 KB
/
trainer.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import torch
from sql import SQL
from config import sql_config
from modules import Actor, EnsembledCritic, ValueFunction
from dataset import ReplayBuffer
import wandb
from tqdm import tqdm
class SQLTrainer:
def __init__(self,
cfg=sql_config) -> None:
self.cfg = cfg
self.device = cfg.device
self.batch_size = cfg.batch_size
actor = Actor(cfg.state_dim,
cfg.action_dim,
cfg.hidden_dim)
critic = EnsembledCritic(cfg.state_dim,
cfg.action_dim,
cfg.hidden_dim,
layer_norm=cfg.layer_norm)
value = ValueFunction(cfg.state_dim,
cfg.hidden_dim,
cfg.layer_norm)
self.sql = SQL(cfg,
actor,
critic,
value)
self.buffer = ReplayBuffer(cfg.state_dim, cfg.action_dim, cfg.buffer_size)
self.buffer.from_json(cfg.dataset_name)
def fit(self):
print(f"Training starts on {self.cfg.device} 🚀")
with torch.autograd.set_detect_anomaly(True):
# with wandb.init(project=self.cfg.project, entity="zzmtsvv", group=self.cfg.group, name=self.cfg.name):
# wandb.config.update({k: v for k, v in self.cfg.__dict__.items() if not k.startswith("__")})
for t in tqdm(range(self.cfg.max_timesteps), desc="SQL steps"):
batch = self.buffer.sample(self.batch_size)
states, actions, rewards, next_states, dones = [x.to(self.device) for x in batch]
logging_dict = self.sql.train(states,
actions,
rewards,
next_states,
dones)
# wandb.log(logging_dict, step=self.sql.total_iterations)