Instead updating the CSV and re-train DeepPavlov I would like to append new QUESTION:ANSWER tupples iteratively.
Is this possible somehow?
The most elegant would be if one could do this via the riseapi
python3 -m deeppavlov riseapi tfidf_logreg_en_faq http://0.0.0.0:5000/train?question=…&answer=…
Although Logistic Regression has warm_start parameter and could be retrained starting from custom initialization, it does not imply warm start with changing number of classes. Whereas when you add new question-answer pair, you add one more class. So, it’s not possible to iteratively add classes to the model now.
Anyway, logreg is fitted very fast, so, just add your own script to re-train model any time you add more question-answer pairs.