EP29: DL with Pytorch: Text generation code implementation with LSTM in pytorch

preview_player
Показать описание
This video talk about how we can do Text generation in Pytorch using RNN, video also talks about the concepts of text precrocessing for NLP , gradient clipping and embedding layer.

#LSTM #TextGeneration #Embedding #GradientClipping #SequenceModeling #deeplearning #pytorch #datascience #tutorials #machinelearning
Рекомендации по теме
Комментарии
Автор

I did not understand this part

def detach(states):
return [state.detach() for state in states]

anikdutta