Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions LookupTables/default_params.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,28 @@
# default suggestions of parameters for datasets
# which have been used in past papers
task_defaults:
batch_size": 1
batch_size: 1
k: 10
max_len: 10
patience: 15
max_len: 50
patience: 15
epochs: 100
# Baseline used in Learning compositionally through attentive guidance (Hupkes et al. 2018)
baseline_2018:
full_focus: False
batch_size: 1
embedding_size: 128
hidden_size: 512
rnn_cell: 'gru'
attention: 'pre-rnn'
attention_method: 'mlp'
max_len: 50
# Final Model used in Learning compositionally through attentive guidance (Hupkes et al. 2018)
Hupkes_2018:
full_focus: True
batch_size: 1
embedding_size: 16
hidden_size: 512
rnn_cell: 'gru'
attention: 'pre-rnn'
attention_method: 'mlp'
max_len: 50