我想補充說這個問題 - is multi-cpu supported by h2o-xgboost? - 但顯然我的代表太低。 我正在使用h2o(3.14.06)的最新穩定版本。 爲了試圖解決這個問題,我已經確信,GCC是我的搬運工圖像中建立(使用apt-get安裝GCC) dpkg -l | grep gcc
gcc 4:5.3.1-1ubuntu1 amd64 GNU C c
我已經搜索了sklearn docs for TimeSeriesSplit和docs for cross-validation,但我一直未能找到一個工作示例。 我正在使用sklearn版本0.19。 這是我的設置 import xgboost as xgb
from sklearn.model_selection import TimeSeriesSplit
from sklearn.gri
在下面的代碼中,我嘗試搜索xgboost的不同超參數。 param_test1 = {
'max_depth':list(range(3,10,2)),
'min_child_weight':list(range(1,6,2))
}
predictors = [x for x in train_data.columns if x not in ['target', 'id']]
gsea
試圖實現XGBoost來確定最重要的變量,我有一些數組的錯誤。 我的完整代碼如下 from numpy import loadtxt
from numpy import sort
import pandas as pd
from xgboost import XGBClassifier
from sklearn.model_selection import train_test_split