lukalabs / cakechat

CakeChat: Emotional Generative Dialog System
Apache License 2.0
1.7k stars 935 forks source link

Is continuous training supported? #30

Closed Ratismal closed 6 years ago

Ratismal commented 6 years ago

I was just wondering if cakechat works off of precompiled static models, or if it can "learn" from people talking to it. It's not really a big deal either way as I could just periodically retrain it using an updated dataset.

nicolas-ivanov commented 6 years ago

@Ratismal, hi! Out of the box online learning is not supported in CakeChat. You can retrain your model on the newly collected data, as you said, or write a wrapper for predict and train functions, that would implement online learning.

Ratismal commented 6 years ago

Thank you!