Is there somebody already working on attention models or/and LSTMs ?
z
zaleslaw
01/28/2021, 10:14 AM
I tried to implement LSTM units on TF Java API 1.15 from scratch via basic operands but found a few operands like LSTMCelll in TF Java API 2.x, decided to wait before the update on 2.x. So, attention is a new thing in frameworks and implemented mostly in Python, have no tries yet to implement it in Kotlin
m
Michal Harakal
01/28/2021, 10:46 AM
I am just learning about attention models and the best way to learn it is to implement it. AFAIK on the end its just matrices multiplications, but to have a usefull use case, they need encoder and decoders with LSTMs. Feel free to cerrect me if I am wrong