H2oパッケージを使用してランダムフォレストモデルを実行すると、次のエラーが発生します。次のように私は走ったH2oパッケージの文字列ベクトルで操作できません
Error: DistributedException from localhost/127.0.0.1:54321, caused by java.lang.IllegalArgumentException: Operation not allowed on string vector.
コードはでした: -
fit = h2o.randomForest(x = indep, y = dep, training_frame = QCAnalysis_sub_h2o, seed = 1234, ntrees = 500, mtries = 3, max_depth = 50)
が親切にエラーに明らかにする。
例のデータを追加してください。列の1つが入力として許可されていない文字ベクタです – timfaber