test_basic.py 1.86 KB
Newer Older
wxchan's avatar
wxchan committed
1
# coding: utf-8
wxchan's avatar
wxchan committed
2
# pylint: skip-file
wxchan's avatar
wxchan committed
3
4
5
6
7
import os
import tempfile
import unittest

import lightgbm as lgb
wxchan's avatar
wxchan committed
8
import numpy as np
wxchan's avatar
wxchan committed
9
10
from sklearn.datasets import load_breast_cancer
from sklearn.model_selection import train_test_split
wxchan's avatar
wxchan committed
11

wxchan's avatar
wxchan committed
12

wxchan's avatar
wxchan committed
13
class TestBasic(unittest.TestCase):
wxchan's avatar
wxchan committed
14

wxchan's avatar
wxchan committed
15
    def test(self):
16
        X_train, X_test, y_train, y_test = train_test_split(*load_breast_cancer(True), test_size=0.1, random_state=1)
wxchan's avatar
wxchan committed
17
18
        train_data = lgb.Dataset(X_train, max_bin=255, label=y_train)
        valid_data = train_data.create_valid(X_test, label=y_test)
wxchan's avatar
wxchan committed
19

wxchan's avatar
wxchan committed
20
        params = {
wxchan's avatar
wxchan committed
21
22
23
24
25
            "objective": "binary",
            "metric": "auc",
            "min_data": 1,
            "num_leaves": 15,
            "verbose": -1
wxchan's avatar
wxchan committed
26
27
28
        }
        bst = lgb.Booster(params, train_data)
        bst.add_valid(valid_data, "valid_1")
wxchan's avatar
wxchan committed
29

wxchan's avatar
wxchan committed
30
31
32
33
34
35
36
        for i in range(30):
            bst.update()
            if i % 10 == 0:
                print(bst.eval_train(), bst.eval_valid())
        bst.save_model("model.txt")
        pred_from_matr = bst.predict(X_test)
        with tempfile.NamedTemporaryFile() as f:
37
38
            tname = f.name
        with open(tname, "w+b") as f:
wxchan's avatar
wxchan committed
39
            np.savetxt(f, X_test, delimiter=',')
40
41
        pred_from_file = bst.predict(tname)
        os.remove(tname)
wxchan's avatar
wxchan committed
42
43
        self.assertEqual(len(pred_from_matr), len(pred_from_file))
        for preds in zip(pred_from_matr, pred_from_file):
44
            self.assertAlmostEqual(*preds, places=15)
wxchan's avatar
wxchan committed
45
        # check saved model persistence
46
47
48
49
50
        bst = lgb.Booster(params, model_file="model.txt")
        pred_from_model_file = bst.predict(X_test)
        self.assertEqual(len(pred_from_matr), len(pred_from_model_file))
        for preds in zip(pred_from_matr, pred_from_model_file):
            self.assertAlmostEqual(*preds, places=15)
wxchan's avatar
wxchan committed
51

wxchan's avatar
wxchan committed
52

wxchan's avatar
wxchan committed
53
54
55
print("----------------------------------------------------------------------")
print("running test_basic.py")
unittest.main()