File size: 1,316 Bytes
af9a20c
64a1ea2
 
af9a20c
64a1ea2
 
 
 
af9a20c
64a1ea2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
44
45
46
47
48
49
50
---
language:
- en
license: apache-2.0
tags:
- dialogue policy
- task-oriented dialog

---

# lava-policy-multiwoz

This is the best performing LAVA_kl model from the [LAVA paper](https://aclanthology.org/2020.coling-main.41/) which can be used as a word-level policy module in ConvLab3 pipeline.

Refer to [ConvLab-3](https://github.com/ConvLab/ConvLab-3) for model description and usage.

## Training procedure
The model was trained on MultiWOZ 2.0 data using the [LAVA codebase](https://gitlab.cs.uni-duesseldorf.de/general/dsml/lava-public). The model started with VAE pre-training and fine-tuning with informative prior KL loss, followed by corpus-based RL with REINFORCE.

### Training hyperparameters

The following hyperparameters were used during SL training:
- y_size: 10
- k_size: 20
- beta: 0.1
- simple_posterior: true
- contextual_posterior: false
- learning_rate: 1e-03
- max_vocab_size: 1000
- max_utt_len: 50
- max_dec_len: 30
- backward_size: 2
- train_batch_size: 128
- seed: 58
- optimizer: Adam
- num_epoch: 100 with early stopping based on validation set
  
The following hyperparameters were used during RL training:
- tune_pi_only: false
- max_words: 100
- temperature: 1.0
- episode_repeat: 1.0
- rl_lr: 0.01
- momentum: 0.0
- nesterov: false
- gamma: 0.99
- rl_clip: 5.0
- random_seed: 38