-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings-train.yml
More file actions
43 lines (34 loc) · 808 Bytes
/
settings-train.yml
File metadata and controls
43 lines (34 loc) · 808 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
seed: 1
out_dir: models
dataset: data/big/mcrae-wordnet-vgg16.32bit
#dataset: data/small-mcrae-wordnet-vgg16.32bit
#dataset: data/imagenet-200x65-vgg19.train.emb.gz
number_of_episodes: 40000
batch_size: 30
number_of_images: 2
embedding_size: 50
vocabulary_size: 50
optimizer: adam
analysis_window: 30
early_stopping_patience: 8000
early_stopping_minimum: 20000
#role_mode: static
role_mode: switch
shared_embedding: yes
shared_experience: yes
sender_type: agnostic
#sender_type: informed
algorithm: reinforce
#algorithm: qlearning
#############
# REINFORCE settings
temperature: 50
#############
# Q Learning settings
max_memory: 5000
#memory_sampling_mode: last
memory_sampling_mode: uniform
#memory_sampling_mode: linear_skew
exploration_start: 1
exploration_decay: 0.999
exploration_floor: 0.005