我有一个带有 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、泡菜、莳萝等。
请帮我解决这个问题。如果我可以使用 pickle 保存模型,这对我会有帮助。
谢谢,阿努普。