README.md 660 Bytes
Newer Older
1
Multiclass Classification Example
2
3
=================================

4
5
6
7
8
9
Here is an example for LightGBM to run multiclass classification task.

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

#### Training

10
11
For Windows, by running following command in this folder:

12
13
14
15
```
lightgbm.exe config=train.conf
```

16
For Linux, by running following command in this folder:
17
18
19
20
21
22
23
24
25

```
./lightgbm config=train.conf
```

#### Prediction

You should finish training first.

26
27
For Windows, by running following command in this folder:

28
29
30
31
```
lightgbm.exe config=predict.conf
```

32
33
For Linux, by running following command in this folder:

34
35
36
```
./lightgbm config=predict.conf
```