提交 c32cb734 编写于 作者: J Junkun

update the result of TED-EN-ZH

上级 4b225b76
...@@ -113,7 +113,8 @@ class U2STBaseModel(nn.Layer): ...@@ -113,7 +113,8 @@ class U2STBaseModel(nn.Layer):
asr_weight: float=0.0, asr_weight: float=0.0,
ignore_id: int=IGNORE_ID, ignore_id: int=IGNORE_ID,
lsm_weight: float=0.0, lsm_weight: float=0.0,
length_normalized_loss: bool=False): length_normalized_loss: bool=False,
**kwargs):
assert 0.0 <= ctc_weight <= 1.0, ctc_weight assert 0.0 <= ctc_weight <= 1.0, ctc_weight
super().__init__() super().__init__()
...@@ -650,7 +651,7 @@ class U2STModel(U2STBaseModel): ...@@ -650,7 +651,7 @@ class U2STModel(U2STBaseModel):
odim=vocab_size, odim=vocab_size,
enc_n_units=encoder.output_size(), enc_n_units=encoder.output_size(),
blank_id=0, blank_id=0,
dropout_rate=model_conf['ctc_dropout_rate'], dropout_rate=model_conf['ctc_dropoutrate'],
reduction=True, # sum reduction=True, # sum
batch_average=True, # sum / batch_size batch_average=True, # sum / batch_size
grad_norm_type=model_conf['ctc_grad_norm_type']) grad_norm_type=model_conf['ctc_grad_norm_type'])
......
...@@ -6,5 +6,10 @@ ...@@ -6,5 +6,10 @@
| Data Subset | Duration in Seconds | | Data Subset | Duration in Seconds |
| --- | --- | | --- | --- |
| data/manifest.train | 0.942 ~ 60 | | data/manifest.train | 0.942 ~ 60 |
| data/manifest.dev | 1.151 ~ 39 | | data/manifest.dev | 1.151 ~ 39 |
| data/manifest.test | 1.1 ~ 42.746 | | data/manifest.test | 1.1 ~ 42.746 |
## Transformer
| Model | Params | Config | Char-BLEU |
| --- | --- | --- | --- |
| Transformer+ASR MTL | 50.26M | conf/transformer_joint_noam.yaml | 17.38 |
\ No newline at end of file
...@@ -19,7 +19,8 @@ for type in fullsentence; do ...@@ -19,7 +19,8 @@ for type in fullsentence; do
--config ${config_path} \ --config ${config_path} \
--result_file ${ckpt_prefix}.${type}.rsl \ --result_file ${ckpt_prefix}.${type}.rsl \
--checkpoint_path ${ckpt_prefix} \ --checkpoint_path ${ckpt_prefix} \
--opts decoding.decoding_method ${type} decoding.batch_size ${batch_size} --opts decoding.decoding_method ${type} \
--opts decoding.batch_size ${batch_size}
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Failed in evaluation!" echo "Failed in evaluation!"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册