-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
26 lines (22 loc) · 760 Bytes
/
Copy pathconfig.yaml
File metadata and controls
26 lines (22 loc) · 760 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
# config.yaml
# Configuration for the 2048 RL environment and demonstration
environment:
board_size: 4
rendering:
# Set to true to see the animation during a single episode run
animate_episode: true
# Delay in seconds between frames during animation
animation_delay: 0.3
# Parameters for evaluation (optional, but good practice)
evaluation:
num_episodes: 10 # Number of episodes to run for evaluation
policy_to_evaluate: 'heuristic' # 'random' or 'heuristic' (or others you define)
# Placeholder for agent hyperparameters if you add learning agents
# agent:
# learning_rate: 0.001
# gamma: 0.99
# epsilon_start: 1.0
# epsilon_decay: 0.995
# epsilon_min: 0.01
# replay_buffer_size: 10000
# batch_size: 32