标签: deep-learning creme
我尝试为RNN网络实施增量学习。我尝试使用Creme库,但无法使用模型。如何在奶油中使用我的模型,而不在以下模型中使用naive_bayes?
model = compose.Pipeline( ('tokenize', feature_extraction.BagOfWords(lowercase=False)), ('nb', naive_bayes.MultinomialNB(alpha=1))