aboutsummaryrefslogtreecommitdiff
path: root/swr2_asr/model_deep_speech.py
diff options
context:
space:
mode:
authorPherkel2023-09-11 21:52:42 +0200
committerPherkel2023-09-11 21:52:42 +0200
commit58b30927bd870604a4077a8af9ec3cad7b0be21c (patch)
tree7dd492fa8f14ff61c88545448972022ead324c31 /swr2_asr/model_deep_speech.py
parent9ca17d8a83369257f4cc42c963e25baf35a28f8f (diff)
changed config to yaml!
Diffstat (limited to 'swr2_asr/model_deep_speech.py')
-rw-r--r--swr2_asr/model_deep_speech.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/swr2_asr/model_deep_speech.py b/swr2_asr/model_deep_speech.py
index 8ddbd99..77f4c8a 100644
--- a/swr2_asr/model_deep_speech.py
+++ b/swr2_asr/model_deep_speech.py
@@ -3,27 +3,10 @@
Following definition by Assembly AI
(https://www.assemblyai.com/blog/end-to-end-speech-recognition-pytorch/)
"""
-from typing import TypedDict
-
import torch.nn.functional as F
from torch import nn
-class HParams(TypedDict):
- """Type for the hyperparameters of the model."""
-
- n_cnn_layers: int
- n_rnn_layers: int
- rnn_dim: int
- n_class: int
- n_feats: int
- stride: int
- dropout: float
- learning_rate: float
- batch_size: int
- epochs: int
-
-
class CNNLayerNorm(nn.Module):
"""Layer normalization built for cnns input"""