simple_example.py 614 Bytes
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
5
6
7
8
9
10
import numpy as np
import random
import lightgbm as lgb
from sklearn import datasets, metrics, model_selection

rng = np.random.RandomState(2016)

X, y = datasets.make_classification(n_samples=10000, n_features=100)
x_train, x_test, y_train, y_test = model_selection.train_test_split(X, y, test_size=0.1, random_state=1)
lgb_model = lgb.LGBMClassifier(n_estimators=100).fit(x_train, y_train, [(x_test, y_test)], eval_metric="auc")
Guolin Ke's avatar
Guolin Ke committed
11
12
13
14
15
16
17
lgb_model.predict(x_test)
# save model
lgb_model.booster().save_model('model.txt')
# load model
booster = lgb.Booster(model_file='model.txt')
# predict
print(booster.predict(x_test))