|
1 | 1 | ## [1.0.2] - 2022-03-... (unreleased) |
2 | 2 | ### Changed |
3 | 3 | - changes `OnnxInferenceModel` in `mltu.torch.inferenceModels` to load custom metadata from saved ONNX model |
| 4 | +- improved `mltu.dataProvider` to remove bad samples from dataset on epoch end |
4 | 5 |
|
5 | 6 | ### Added: |
6 | 7 | - added `mltu.torch.losses`, used to create PyTorch losses, that may be used in training and validation |
7 | 8 | - added CTC loss to `mltu.torch.losses` that can be used for training CTC based models |
8 | 9 | - added `Model2onnx` and `Tensorboard` callbacks to `mltu.torch.callbacks`, used to create PyTorch callbacks, that may be used in training and validation |
9 | | -- added `CERMetric` to `mltu.torch.metrics`, used to create PyTorch metrics, that may be used in training and validation |
10 | | -- created 08 pytorch tutorial, that shows how to use mltu.torch to train CTC based models |
| 10 | +- added `CERMetric` and `WERMetric` to `mltu.torch.metrics`, used to create PyTorch metrics, that may be used in training and validation |
| 11 | +- created 08 pytorch tutorial, that shows how to use `mltu.torch` to train CTC based models |
| 12 | + |
11 | 13 |
|
12 | 14 | ## [1.0.1] - 2022-03-06 |
13 | 15 | ### Changed |
|
36 | 38 | - |
37 | 39 | ### Added: |
38 | 40 | - added 05_sound_to_text tutorial |
39 | | -- added WavReader to mltu/preprocessors, used to read wav files and convert them to numpy arrays |
| 41 | +- added `WavReader` to `mltu/preprocessors`, used to read wav files and convert them to numpy arrays |
40 | 42 |
|
41 | 43 |
|
42 | 44 | ## [0.1.7] - 2022-02-03 |
|
46 | 48 |
|
47 | 49 | ## [0.1.5] - 2022-01-10 |
48 | 50 | ### Changed |
49 | | -- seperated CWERMetric to SER and WER Metrics in mltu.metrics, Character/word rate was calculatted in a wrong way |
| 51 | +- seperated `CWERMetric` to `CER` and `WER` Metrics in `mltu.metrics`, Character/word rate was calculatted in a wrong way |
50 | 52 | - created @setter for augmentors and transformers in DataProvider, to properlly add augmentors and transformers to the pipeline |
51 | 53 | - augmentors and transformers must inherit from `mltu.augmentors.base.Augmentor` and `mltu.transformers.base.Transformer` respectively |
52 | 54 | - updated ImageShowCV2 transformer documentation |
53 | | -- fixed OnnxInferenceModel in mltu.inferenceModels to use CPU even if GPU is available with force_cpu=True flag |
| 55 | +- fixed OnnxInferenceModel in `mltu.inferenceModels` to use CPU even if GPU is available with force_cpu=True flag |
54 | 56 |
|
55 | 57 | ### Added: |
56 | 58 | - added RandomSharpen to mltu.augmentors, used for simple image augmentation; |
|
0 commit comments