有没有办法在 ml.net 推荐任务中不重建模型的情况下将新用户添加到推荐系统?

Is there any way to add new user to recommender system without rebuilding the model in ml.net recommender task?

我有基于一些数据集的推荐系统。但是,如果我想添加新用户并预测此用户推荐怎么办?基于本教程的问题 https://docs.microsoft.com/en-us/dotnet/machine-learning/tutorials/movie-recommendation

如果你只是想预测,那不行,你只需调用 CreatePredictionEngine 传入你的用户数据

如果您想使用新用户的数据更新模型,则必须重建模型。