forked from johnjim0816/joyrl-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
31 lines (28 loc) · 1.06 KB
/
config.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
#!/usr/bin/env python
# coding=utf-8
'''
Author: JiangJi
Email: [email protected]
Date: 2022-12-24 20:41:56
LastEditor: JiangJi
LastEditTime: 2022-12-24 20:53:52
Discription:
'''
from config.general_config import DefaultConfig
import torch
class AlgoConfig(DefaultConfig):
def __init__(self):
self.gamma = 0.99 # discount factor
self.tau = 1.0 # 1.0 means hard update
self.Vmin = 0. # support of C51
self.Vmax = 200. # support of C51
self.num_atoms = 51 # support of C51
self.support = torch.linspace(self.Vmin, self.Vmax, self.num_atoms) # support of C51
self.delta_z = (self.Vmax - self.Vmin) / (self.num_atoms - 1) # support of C51
self.batch_size = 32 # batch size
self.lr = 0.0001 # learning rate
self.target_update = 200 # target network update frequency
self.memory_capacity = 10000 # size of replay buffer
self.epsilon_start = 0.95 # epsilon start value
self.epsilon_end = 0.01 # epsilon end value
self.epsilon_decay = 500 # epsilon decay rate