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

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

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

8
9
Training
--------
10

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

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

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

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

23
24
Prediction
----------
25
26
27

You should finish training first.

28
29
For Windows, by running following command in this folder:

30
31
32
33
```
lightgbm.exe config=predict.conf
```

34
35
For Linux, by running following command in this folder:

36
37
38
```
./lightgbm config=predict.conf
```