Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kefirski/pytorch_TDNN

Time Delayed NN implemented in pytorch
https://github.com/kefirski/pytorch_TDNN

cnn deep-learning python pytorch tdnn

Last synced: 29 days ago
JSON representation

Time Delayed NN implemented in pytorch

Awesome Lists containing this project

README

        

# Pytorch Time Delayed NN
Time Delayed NN implemented in [PyTorch](http://www.pytorch.org).
![TDNN](images/TDNN.png)

## Usage

```python
kernels = [(1, 25), (2, 50), (3, 75), (4, 100), (5, 125), (6, 150)]

tdnn = TDNN(kernels, input_embedding_size)

# in is tensor with shape [batch_size, max_seq_len, max_word_len, input_embedding_size]
out = tdnn(in)
```