Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tianlh
LightGBM-DCU
Commits
f20a2c4d
Commit
f20a2c4d
authored
Oct 08, 2016
by
Guolin Ke
Browse files
Change bulid target name to lower case.
parent
f3245171
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
15 deletions
+19
-15
CMakeLists.txt
CMakeLists.txt
+1
-1
examples/binary_classification/README.md
examples/binary_classification/README.md
+4
-4
examples/lambdarank/README.md
examples/lambdarank/README.md
+4
-4
examples/parallel_learning/README.md
examples/parallel_learning/README.md
+2
-2
examples/regression/README.md
examples/regression/README.md
+4
-4
windows/LightGBM.vcxproj
windows/LightGBM.vcxproj
+4
-0
No files found.
CMakeLists.txt
View file @
f20a2c4d
cmake_minimum_required
(
VERSION 2.8
)
PROJECT
(
L
ight
GBM
)
PROJECT
(
l
ight
gbm
)
OPTION
(
USE_MPI
"MPI based parallel learning"
OFF
)
...
...
examples/binary_classification/README.md
View file @
f20a2c4d
...
...
@@ -8,13 +8,13 @@ Here is an example for LightGBM to run binary classification task.
For windows, by running following command in this folder:
```
L
ight
GBM
.exe config=train.conf
l
ight
gbm
.exe config=train.conf
```
For linux, by running following command in this folder:
```
./
L
ight
GBM
config=train.conf
./
l
ight
gbm
config=train.conf
```
#### Prediction
...
...
@@ -23,12 +23,12 @@ You should finish training first.
For windows, by running following command in this folder:
```
L
ight
GBM
.exe config=predict.conf
l
ight
gbm
.exe config=predict.conf
```
For linux, by running following command in this folder:
```
./
L
ight
GBM
config=predict.conf
./
l
ight
gbm
config=predict.conf
```
examples/lambdarank/README.md
View file @
f20a2c4d
...
...
@@ -8,13 +8,13 @@ Here is an example for LightGBM to run lambdarank task.
For windows, by running following command in this folder:
```
L
ight
GBM
.exe config=train.conf
l
ight
gbm
.exe config=train.conf
```
For linux, by running following command in this folder:
```
./
L
ight
GBM
config=train.conf
./
l
ight
gbm
config=train.conf
```
#### Prediction
...
...
@@ -23,11 +23,11 @@ You should finish training first.
For windows, by running following command in this folder:
```
L
ight
GBM
.exe config=predict.conf
l
ight
gbm
.exe config=predict.conf
```
For linux, by running following command in this folder:
```
./
L
ight
GBM
config=predict.conf
./
l
ight
gbm
config=predict.conf
```
examples/parallel_learning/README.md
View file @
f20a2c4d
...
...
@@ -12,9 +12,9 @@ Here is an example for LightGBM to perform parallel learning for 2 machines.
2.
Copy this folder and executable file to these 2 machines that you want to run application on.
3.
Run command in this folder on both 2 machines:
For windows:
```
L
ight
GBM
.exe config=train.conf```
For windows:
```
l
ight
gbm
.exe config=train.conf```
For linux:
```./
L
ight
GBM
config=train.conf```
For linux:
```./
l
ight
gbm
config=train.conf```
This parallel learning example is based on socket. LightGBM also support parallel learning based on mpi.
...
...
examples/regression/README.md
View file @
f20a2c4d
...
...
@@ -8,13 +8,13 @@ Here is an example for LightGBM to run regression task.
For windows, by running following command in this folder:
```
L
ight
GBM
.exe config=train.conf
l
ight
gbm
.exe config=train.conf
```
For linux, by running following command in this folder:
```
./
L
ight
GBM
config=train.conf
./
l
ight
gbm
config=train.conf
```
#### Prediction
...
...
@@ -23,11 +23,11 @@ You should finish training first.
For windows, by running following command in this folder:
```
L
ight
GBM
.exe config=predict.conf
l
ight
gbm
.exe config=predict.conf
```
For linux, by running following command in this folder:
```
./
L
ight
GBM
config=predict.conf
./
l
ight
gbm
config=predict.conf
```
windows/LightGBM.vcxproj
View file @
f20a2c4d
...
...
@@ -54,18 +54,22 @@
<PropertyGroup
Condition=
"'$(configuration)|$(Platform)'=='Debug|x64'"
>
<IncludePath>
..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);
</IncludePath>
<LibraryPath>
$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);
</LibraryPath>
<TargetName>
lightgbm
</TargetName>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(configuration)|$(Platform)'=='Debug_mpi|x64'"
>
<IncludePath>
$(MSMPI_INC);..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);
</IncludePath>
<LibraryPath>
$(MSMPI_LIB64);$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);
</LibraryPath>
<TargetName>
lightgbm
</TargetName>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(configuration)|$(Platform)'=='Release|x64'"
>
<IncludePath>
..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);
</IncludePath>
<LibraryPath>
$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);
</LibraryPath>
<TargetName>
lightgbm
</TargetName>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(configuration)|$(Platform)'=='Release_mpi|x64'"
>
<IncludePath>
$(MSMPI_INC);..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);
</IncludePath>
<LibraryPath>
$(MSMPI_LIB64);$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);
</LibraryPath>
<TargetName>
lightgbm
</TargetName>
</PropertyGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug_mpi|x64'"
>
<ClCompile>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment