Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如应用一个新的数据模型,例如一个神经网络,并在应用到新数据时进行调整,而无需再次训练它
我是新手,我可以生成这个,做模型,但我不能将它们应用于新数据,并且函数 apply 要求要分类的数据与训练的大小相同
我不确定你在追求什么,但你可以用它predict来将你的模型应用于新数据。例如
predict
predict(your_model, newdata = your_new_data)