I was working on a project and my cumulative reward changed so weirdly I thought I should post this.
So I read about curiosity can lead this kind of behavior however I am only using extrinsic reward.
My configuration file:
behaviors:
PandemicAgent:
trainer_type: ppo
hyperparameters:
batch_size: 2048
buffer_size: 20480
learning_rate: 0.0003
beta: 0.005
epsilon: 0.2
lambd: 0.95
num_epoch: 6
learning_rate_schedule: linear
network_settings:
normalize: false
hidden_units: 512 #256
num_layers: 4 #2
vis_encode_type: simple
reward_signals:
extrinsic:
gamma: 0.99
strength: 1.0
keep_checkpoints: 5
checkpoint_interval: 500000
max_steps: 1.0e7
time_horizon: 128
summary_freq: 10000
threaded: true
The task is simple blue agents tries to collect yellow cubes as fast as possible.
Any idea why this happened ?