README.md 645 Bytes
Newer Older
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
Multiclass Classification Example
=====================
Here is an example for LightGBM to run multiclass 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
```