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

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

6
7
***You must follow the [installation instructions](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html)
for the following commands to work. The `lightgbm` binary must be built and available at the root of this project.***
8

9
10
Training
--------
11

12
Run the following command in this folder:
13

14
15
```bash
"../../lightgbm" config=train.conf
16
17
```

18
19
Prediction
----------
20
21
22

You should finish training first.

23
Run the following command in this folder:
24

25
26
```bash
"../../lightgbm" config=predict.conf
27
```