README.md 638 Bytes
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Binary Classification Example
=====================
Here is an example for LightGBM to run binary classification task.

***You should copy executable file to this folder first.***

#### Training

For windows, by running following command in this folder:
```
LightGBM.exe config=train.conf
```


For linux, by running following command in this folder:
```
./LightGBM config=train.conf
```

#### Prediction

You should finish training first.

For windows, by running following command in this folder:
```
LightGBM.exe config=predict.conf
```

For linux, by running following command in this folder:
```
./LightGBM config=predict.conf
```