-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
34 lines (28 loc) · 840 Bytes
/
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
32
33
34
from dataclasses import dataclass
import torch
@dataclass
class fbrc_config:
# Experiment
device: str = "cuda" if torch.cuda.is_available() else "cpu"
dataset_name: str = "halfcheetah-medium-v2"
seed: int = 42
state_dim: int = 17
action_dim: int = 6
actor_lr: float = 3e-4
critic_lr: float = 3e-4
alpha_lr: float = 3e-4
behavior_lr: float = 3e-4
batch_size: int = 256
buffer_size: int = 1000000
discount: float = 0.99
hidden_dim: int = 256
max_action: float = 1.0
max_timesteps: int = int(5e5)
behavior_pretrain_steps: int = int(5e5)
tau: float = 5e-3
reward_bonus: float = 5.0
fisher_regularization_weight: float = 0.1
num_bc_actors: int = 5
project: str = "FisherBRC"
group: str = dataset_name
name: str = dataset_name + "_" + str(seed)