philipperemy/keras-tcn

how to update tcn model

Kitaharakasusa opened this issue · 2 comments

I want to use this model for an online task, once I predict, I need to update the model by using the real data, what should I do?

By Updating the model, you mean updating the weights with back-propagation? If so use train_on_batch(). This is not just for TCN, it applies for every Keras model.

Closing this question for inactivity and because it's not clear.