我有一个带有h2o预处理器和h2o估算器的sklearn管道。请参阅下文。
pipeline = Pipeline([("standardize", h2o.transforms.preprocessing.H2OScaler()),
("pca", h2o.transforms.decomposition.H2OPCA(k=2)),
("drf", h2o.estimators.random_forest.H2ORandomForestEstimator(ntrees=200))])
pipeline.fit(iris_df[:4],iris_df[4])
我无法以h2o文档中描述的任何方式保存此管道模型。我尝试过POJO,MOJO,泡菜,莳萝等。
请帮我解决这个问题。如果我可以使用泡菜保存模型,那对我会有所帮助。
谢谢, 阿努普。