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
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
80 additions
and
0 deletions
+80
-0
src/metric/dcg_calculator.cpp
src/metric/dcg_calculator.cpp
+4
-0
src/metric/map_metric.hpp
src/metric/map_metric.hpp
+4
-0
src/metric/metric.cpp
src/metric/metric.cpp
+4
-0
src/metric/multiclass_metric.hpp
src/metric/multiclass_metric.hpp
+4
-0
src/metric/rank_metric.hpp
src/metric/rank_metric.hpp
+4
-0
src/metric/regression_metric.hpp
src/metric/regression_metric.hpp
+4
-0
src/metric/xentropy_metric.hpp
src/metric/xentropy_metric.hpp
+4
-0
src/network/linker_topo.cpp
src/network/linker_topo.cpp
+4
-0
src/network/linkers.h
src/network/linkers.h
+4
-0
src/network/linkers_mpi.cpp
src/network/linkers_mpi.cpp
+4
-0
src/network/linkers_socket.cpp
src/network/linkers_socket.cpp
+4
-0
src/network/network.cpp
src/network/network.cpp
+4
-0
src/network/socket_wrapper.hpp
src/network/socket_wrapper.hpp
+4
-0
src/objective/binary_objective.hpp
src/objective/binary_objective.hpp
+4
-0
src/objective/multiclass_objective.hpp
src/objective/multiclass_objective.hpp
+4
-0
src/objective/objective_function.cpp
src/objective/objective_function.cpp
+4
-0
src/objective/rank_objective.hpp
src/objective/rank_objective.hpp
+4
-0
src/objective/regression_objective.hpp
src/objective/regression_objective.hpp
+4
-0
src/objective/xentropy_objective.hpp
src/objective/xentropy_objective.hpp
+4
-0
src/treelearner/data_parallel_tree_learner.cpp
src/treelearner/data_parallel_tree_learner.cpp
+4
-0
No files found.
src/metric/dcg_calculator.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/metric.h>
#include <LightGBM/utils/log.h>
...
...
src/metric/map_metric.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_METRIC_MAP_METRIC_HPP_
#define LIGHTGBM_METRIC_MAP_METRIC_HPP_
...
...
src/metric/metric.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/metric.h>
#include "binary_metric.hpp"
...
...
src/metric/multiclass_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_MULTICLASS_METRIC_HPP_
#define LIGHTGBM_METRIC_MULTICLASS_METRIC_HPP_
...
...
src/metric/rank_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_RANK_METRIC_HPP_
#define LIGHTGBM_METRIC_RANK_METRIC_HPP_
...
...
src/metric/regression_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_REGRESSION_METRIC_HPP_
#define LIGHTGBM_METRIC_REGRESSION_METRIC_HPP_
...
...
src/metric/xentropy_metric.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_METRIC_XENTROPY_METRIC_HPP_
#define LIGHTGBM_METRIC_XENTROPY_METRIC_HPP_
...
...
src/network/linker_topo.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/network.h>
#include <LightGBM/utils/common.h>
#include <LightGBM/utils/log.h>
...
...
src/network/linkers.h
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_NETWORK_LINKERS_H_
#define LIGHTGBM_NETWORK_LINKERS_H_
...
...
src/network/linkers_mpi.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.
*/
#ifdef USE_MPI
#include "linkers.h"
...
...
src/network/linkers_socket.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.
*/
#ifdef USE_SOCKET
#include <LightGBM/config.h>
...
...
src/network/network.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/network.h>
#include <LightGBM/utils/common.h>
...
...
src/network/socket_wrapper.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_NETWORK_SOCKET_WRAPPER_HPP_
#define LIGHTGBM_NETWORK_SOCKET_WRAPPER_HPP_
#ifdef USE_SOCKET
...
...
src/objective/binary_objective.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_OBJECTIVE_BINARY_OBJECTIVE_HPP_
#define LIGHTGBM_OBJECTIVE_BINARY_OBJECTIVE_HPP_
...
...
src/objective/multiclass_objective.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_OBJECTIVE_MULTICLASS_OBJECTIVE_HPP_
#define LIGHTGBM_OBJECTIVE_MULTICLASS_OBJECTIVE_HPP_
...
...
src/objective/objective_function.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/objective_function.h>
#include "binary_objective.hpp"
...
...
src/objective/rank_objective.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_OBJECTIVE_RANK_OBJECTIVE_HPP_
#define LIGHTGBM_OBJECTIVE_RANK_OBJECTIVE_HPP_
...
...
src/objective/regression_objective.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_OBJECTIVE_REGRESSION_OBJECTIVE_HPP_
#define LIGHTGBM_OBJECTIVE_REGRESSION_OBJECTIVE_HPP_
...
...
src/objective/xentropy_objective.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_OBJECTIVE_XENTROPY_OBJECTIVE_HPP_
#define LIGHTGBM_OBJECTIVE_XENTROPY_OBJECTIVE_HPP_
...
...
src/treelearner/data_parallel_tree_learner.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 <cstring>
#include <tuple>
#include <vector>
...
...
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