訓練資料要放到dataset中供lgb使用,構建資料如下:
1import
lightgbm as lgb
2import
numpy as np34
#訓練資料,500個樣本,10個維度
5 train_data = np.random.rand(500, 10)6#
構建二分類資料
7 label = np.random.randint(2, size=500)8#
放入到dataset中
9 train = lgb.dataset(train_data, label=label)
10print(train)
很清晰的構建資料方式,記住這種用法
指定 feature names(特徵名稱)和 categorical features(分類特徵):
1 train_data = lgb.dataset(data, label=label, feature_name=['c1', '
c2', '
c3'], categorical_feature=['
c3'])
分類特徵可以人為制定,使用categorical_feature選取你制定的名稱
c 使用redis 訪問dataset資料集
1.下面是關於c 使用redis資料庫 對dataset進行訪問操作的方法using servicestack.redis using system using system.collections.generic using system.configuration using system.da...
django專案使用uwisgi部署到linux
0 首先在專案下建立乙個uwisgi的配置檔案 內容為 uwsgi 使用nginx連線時使用 socket 127.0.0.1 8080 直接做web伺服器使用 專案目錄 chdir home deep django project bigpeng 專案中wsgi.py檔案的目錄,相對於專案目錄ws...
windows下mysql資料庫移植到linux下
windows下mysql資料庫移植到linux下 最近做畢業設計,需要把windows下的mysql移植到linux下 曾經有過在window下移植mysql資料庫的經驗,只需要把msql的資料檔案複製到另一台安裝mysql的機器的資料存放位置,然後重啟mysql服務即可 mysql資料庫的資料檔...