I want to implement some LSTM model in Tensorflow. I think I understood the textbooks quite well. These inputs were given in the form of words that were embedded in a continuous vector space (having a number of advantages). Now I want to do LSTM to predict a series of conditional numbers and I donβt know what is the best approach to this. Should I discretize my input range in this way, effectively get a classification problem with multiple classes and use the nesting described earlier, or stick to continuous numbers and do a regression? In this case, I just pass at one step one function of the model, namely a continuous number?
source share