You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,15 @@
1
+
## [1.1.0] - 2022-08-28
2
+
### Changed
3
+
- Changed `mltu.transformers.SpectrogramPadding` object, to pad spectrogram end with zeros instead of start
4
+
5
+
### Added
6
+
- Created `Tutorials/09_translation_transformer` tutorial, that shows how to train translation transformer model
7
+
- Created `mltu.tensorflow.tokenizers` module, that contains `CustomTokenizer` for text data
8
+
- Created `mltu.tensorflow.transformer.attention` module, that contains `BaseAttention`, `CrossAttention`, `GlobalSelfAttention` and `CausalSelfAttention` layers
9
+
- Created `mltu.tensorflow.transformer.layers` module, that contains `positional_encoding` function, `PositionalEmbedding`, `FeedForward`, `EncoderLayer`, `DecoderLayer`, `Encoder`, `Decoder` layers and `Transformer` model
10
+
- Created `mltu.tensorflow.transformer.callbacks` module, that contains `EncDecSplitCallback` callback, to split Transformer model into separate encoder and decoder models
11
+
- Created `mltu.tensorflow.transformer.utils` module, that contains `MaskedLoss` loss and `MaskedAccuracy` metric, used for training Transformer models
12
+
1
13
## [1.0.15] - 2022-07-15
2
14
### Changed
3
15
- Fixed bug in `mltu.dataProvider.DataProvider` to work with `batch_postprocessors`.
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,4 +23,5 @@ Each tutorial has its own requirements.txt file for a specific mltu version. As
23
23
5.[Introduction to speech recognition with TensorFlow](https://pylessons.com/speech-recognition), code in ```Tutorials\05_speech_recognition``` folder;
24
24
6.[Introduction to PyTorch in a practical way](https://pylessons.com/pytorch-introduction), code in ```Tutorials\06_pytorch_introduction``` folder;
25
25
7.[Using custom wrapper to simplify PyTorch models training pipeline](https://pylessons.com/pytorch-introduction), code in ```Tutorials\07_pytorch_wrapper``` folder;
26
-
8.[Handwriting words recognition with PyTorch](https://pylessons.com/handwriting-recognition-pytorch), code in ```Tutorials\08_handwriting_recognition_torch``` folder;
26
+
8.[Handwriting words recognition with PyTorch](https://pylessons.com/handwriting-recognition-pytorch), code in ```Tutorials\08_handwriting_recognition_torch``` folder;
27
+
9.[Transformer training with TensorFlow for Translation task](https://pylessons.com/transformers-training), code in ```Tutorials\09_translation_transformer``` folder;
# Training TensorFlow Transformer model for Spanish to English translation task
2
+
### In this tutorial, I'll walk through a practical example of Transformer Training for Language Translation tasks from Spanish to the English language
3
+
4
+
<br><br>
5
+
# **Detailed tutorial**:
6
+
### [Transformer training with TensorFlow for Translation task](https://pylessons.com/transformers-training)
0 commit comments