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
32ef7603
"vscode:/vscode.git/clone" did not exist on "8ace7339d884a20275585a47d70b34f1103b4381"
Commit
32ef7603
authored
Apr 13, 2019
by
Nikita Titov
Committed by
Guolin Ke
Apr 13, 2019
Browse files
added copyright message in files (#2101)
parent
50ce01b5
Changes
95
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
79 additions
and
2 deletions
+79
-2
src/boosting/score_updater.hpp
src/boosting/score_updater.hpp
+4
-0
src/c_api.cpp
src/c_api.cpp
+4
-0
src/io/bin.cpp
src/io/bin.cpp
+4
-0
src/io/config.cpp
src/io/config.cpp
+4
-0
src/io/config_auto.cpp
src/io/config_auto.cpp
+7
-1
src/io/dataset.cpp
src/io/dataset.cpp
+4
-0
src/io/dataset_loader.cpp
src/io/dataset_loader.cpp
+4
-0
src/io/dense_bin.hpp
src/io/dense_bin.hpp
+4
-0
src/io/dense_nbits_bin.hpp
src/io/dense_nbits_bin.hpp
+4
-0
src/io/file_io.cpp
src/io/file_io.cpp
+4
-0
src/io/json11.cpp
src/io/json11.cpp
+0
-1
src/io/metadata.cpp
src/io/metadata.cpp
+4
-0
src/io/ordered_sparse_bin.hpp
src/io/ordered_sparse_bin.hpp
+4
-0
src/io/parser.cpp
src/io/parser.cpp
+4
-0
src/io/parser.hpp
src/io/parser.hpp
+4
-0
src/io/sparse_bin.hpp
src/io/sparse_bin.hpp
+4
-0
src/io/tree.cpp
src/io/tree.cpp
+4
-0
src/lightgbm_R.cpp
src/lightgbm_R.cpp
+4
-0
src/main.cpp
src/main.cpp
+4
-0
src/metric/binary_metric.hpp
src/metric/binary_metric.hpp
+4
-0
No files found.
src/boosting/score_updater.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_BOOSTING_SCORE_UPDATER_HPP_
#define LIGHTGBM_BOOSTING_SCORE_UPDATER_HPP_
...
...
src/c_api.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/c_api.h>
#include <LightGBM/boosting.h>
...
...
src/io/bin.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/bin.h>
#include <LightGBM/utils/common.h>
...
...
src/io/config.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/config.h>
#include <LightGBM/utils/common.h>
...
...
src/io/config_auto.cpp
View file @
32ef7603
/// This file is auto generated by LightGBM\helpers\parameter_generator.py from LightGBM\include\LightGBM\config.h file.
/*!
* Copyright (c) 2018 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*
* \note
* This file is auto generated by LightGBM\helpers\parameter_generator.py from LightGBM\include\LightGBM\config.h file.
*/
#include<LightGBM/config.h>
namespace
LightGBM
{
std
::
unordered_map
<
std
::
string
,
std
::
string
>
Config
::
alias_table
({
...
...
src/io/dataset.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/dataset.h>
#include <LightGBM/feature_group.h>
...
...
src/io/dataset_loader.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/dataset_loader.h>
#include <LightGBM/network.h>
...
...
src/io/dense_bin.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_IO_DENSE_BIN_HPP_
#define LIGHTGBM_IO_DENSE_BIN_HPP_
...
...
src/io/dense_nbits_bin.hpp
View file @
32ef7603
/*!
* Copyright (c) 2017 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_IO_DENSE_NBITS_BIN_HPP_
#define LIGHTGBM_IO_DENSE_NBITS_BIN_HPP_
...
...
src/io/file_io.cpp
View file @
32ef7603
/*!
* Copyright (c) 2018 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/utils/file_io.h>
#include <LightGBM/utils/log.h>
...
...
src/io/json11.cpp
View file @
32ef7603
...
...
@@ -18,7 +18,6 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <LightGBM/json11.hpp>
#include <limits>
...
...
src/io/metadata.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/dataset.h>
#include <LightGBM/utils/common.h>
...
...
src/io/ordered_sparse_bin.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_IO_ORDERED_SPARSE_BIN_HPP_
#define LIGHTGBM_IO_ORDERED_SPARSE_BIN_HPP_
...
...
src/io/parser.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include "parser.hpp"
#include <string>
...
...
src/io/parser.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_IO_PARSER_HPP_
#define LIGHTGBM_IO_PARSER_HPP_
...
...
src/io/sparse_bin.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_IO_SPARSE_BIN_HPP_
#define LIGHTGBM_IO_SPARSE_BIN_HPP_
...
...
src/io/tree.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/tree.h>
#include <LightGBM/dataset.h>
...
...
src/lightgbm_R.cpp
View file @
32ef7603
/*!
* Copyright (c) 2017 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/lightgbm_R.h>
#include <LightGBM/utils/common.h>
...
...
src/main.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/application.h>
#include <iostream>
...
...
src/metric/binary_metric.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_METRIC_BINARY_METRIC_HPP_
#define LIGHTGBM_METRIC_BINARY_METRIC_HPP_
...
...
Prev
1
2
3
4
5
Next
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