Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
A
alpha-mind
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dr.李
alpha-mind
Commits
fae6f50f
Commit
fae6f50f
authored
Mar 12, 2020
by
Dr.李
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove xgboost building steps
parent
1ec6d491
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
37 deletions
+0
-37
build_linux_dependencies.sh
build_linux_dependencies.sh
+0
-20
build_windows_dependencies.bat
build_windows_dependencies.bat
+0
-17
No files found.
build_linux_dependencies.sh
View file @
fae6f50f
#!/bin/sh
#!/bin/sh
cd
xgboost
git submodule init
git submodule update
mkdir
build
cd
build
cmake ..
make
-j4
cd
..
cd
python-package
python setup.py
install
if
[
$?
-ne
0
]
;
then
cd
../..
exit
1
fi
cd
../..
cd
alphamind/pfopt
cd
alphamind/pfopt
git submodule init
git submodule init
...
...
build_windows_dependencies.bat
View file @
fae6f50f
@echo off
@echo off
cd xgboost
git submodule init
git submodule update
mkdir build
cd build
cmake .. -G "Visual Studio 14 2015 Win64"
msbuild xgboost.sln /m /p:Configuration=Release /p:Platform=x64
if %errorlevel% neq 0 exit /b 1
cd ../python-package
python setup.py install
if %errorlevel% neq 0 exit /b 1
cd ../..
cd alphamind\pfopt
cd alphamind\pfopt
git submodule init
git submodule init
git submodule update
git submodule update
...
...
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