commit
a0b6b00116
@ -0,0 +1,42 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
For support and discussions, please use our [Discourse forums](https://github.com/PaddlePaddle/DeepSpeech/discussions).
|
||||
|
||||
If you've found a bug then please create an issue with the following information:
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Screenshots**
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
** Environment (please complete the following information):**
|
||||
- OS: [e.g. Ubuntu]
|
||||
- GCC/G++ Version [e.g. 8.3]
|
||||
- Python Version [e.g. 3.7]
|
||||
- PaddlePaddle Version [e.g. 2.0.0]
|
||||
- Model Version [e.g. 2.0.0]
|
||||
- GPU/DRIVER Informationo [e.g. Tesla V100-SXM2-32GB/440.64.00]
|
||||
- CUDA/CUDNN Version [e.g. cuda-10.2]
|
||||
- MKL Version
|
||||
- TensorRT Version
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
@ -0,0 +1,24 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: "[Feature request]"
|
||||
labels: feature request
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
For support and discussions, please use our [Discourse forums](https://github.com/PaddlePaddle/DeepSpeech/discussions).
|
||||
|
||||
If you've found a feature request then please create an issue with the following information:
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
@ -1,7 +1,7 @@
|
||||
# Aishell-1
|
||||
|
||||
## CTC
|
||||
| Model | Config | Test set | CER |
|
||||
| --- | --- | --- | --- |
|
||||
| DeepSpeech2 | conf/deepspeech2.yaml | test | 0.078977 |
|
||||
| DeepSpeech2 | release 1.8.5 | test | 0.080447 |
|
||||
| Model | Config | Test Set | CER | Valid Loss |
|
||||
| --- | --- | --- | --- | --- |
|
||||
| DeepSpeech2 | conf/deepspeech2.yaml | test | 0.077249 | 7.036566 |
|
||||
| DeepSpeech2 | release 1.8.5 | test | 0.087004 | 8.575452 |
|
||||
|
@ -1,7 +1,7 @@
|
||||
# LibriSpeech
|
||||
|
||||
## CTC
|
||||
| Model | Config | Test set | WER |
|
||||
| --- | --- | --- | --- |
|
||||
| DeepSpeech2 | conf/deepspeech2.yaml | test-clean | 0.073973 |
|
||||
| DeepSpeech2 | release 1.8.5 | test-clean | 0.074939 |
|
||||
| Model | Config | Test Set | WER | Valid Loss |
|
||||
| --- | --- | --- | --- | --- |
|
||||
| DeepSpeech2 | conf/deepspeech2.yaml | test-clean | 0.069357 | 15.078561 |
|
||||
| DeepSpeech2 | release 1.8.5 | test-clean | 0.074939 | 15.351633 |
|
||||
|
@ -0,0 +1,11 @@
|
||||
_HDR_FMT="%.23s %s[%s]: "
|
||||
_ERR_MSG_FMT="ERROR: ${_HDR_FMT}%s\n"
|
||||
_INFO_MSG_FMT="INFO: ${_HDR_FMT}%s\n"
|
||||
|
||||
error_msg() {
|
||||
printf "$_ERR_MSG_FMT" $(date +%F.%T.%N) ${BASH_SOURCE[1]##*/} ${BASH_LINENO[0]} "${@}"
|
||||
}
|
||||
|
||||
info_msg() {
|
||||
printf "$_INFO_MSG_FMT" $(date +%F.%T.%N) ${BASH_SOURCE[1]##*/} ${BASH_LINENO[0]} "${@}"
|
||||
}
|
Loading…
Reference in new issue