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
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
80 additions
and
0 deletions
+80
-0
include/LightGBM/utils/array_args.h
include/LightGBM/utils/array_args.h
+4
-0
include/LightGBM/utils/common.h
include/LightGBM/utils/common.h
+4
-0
include/LightGBM/utils/file_io.h
include/LightGBM/utils/file_io.h
+4
-0
include/LightGBM/utils/log.h
include/LightGBM/utils/log.h
+4
-0
include/LightGBM/utils/openmp_wrapper.h
include/LightGBM/utils/openmp_wrapper.h
+4
-0
include/LightGBM/utils/pipeline_reader.h
include/LightGBM/utils/pipeline_reader.h
+4
-0
include/LightGBM/utils/random.h
include/LightGBM/utils/random.h
+4
-0
include/LightGBM/utils/text_reader.h
include/LightGBM/utils/text_reader.h
+4
-0
include/LightGBM/utils/threading.h
include/LightGBM/utils/threading.h
+4
-0
src/application/application.cpp
src/application/application.cpp
+4
-0
src/application/predictor.hpp
src/application/predictor.hpp
+4
-0
src/boosting/boosting.cpp
src/boosting/boosting.cpp
+4
-0
src/boosting/dart.hpp
src/boosting/dart.hpp
+4
-0
src/boosting/gbdt.cpp
src/boosting/gbdt.cpp
+4
-0
src/boosting/gbdt.h
src/boosting/gbdt.h
+4
-0
src/boosting/gbdt_model_text.cpp
src/boosting/gbdt_model_text.cpp
+4
-0
src/boosting/gbdt_prediction.cpp
src/boosting/gbdt_prediction.cpp
+4
-0
src/boosting/goss.hpp
src/boosting/goss.hpp
+4
-0
src/boosting/prediction_early_stop.cpp
src/boosting/prediction_early_stop.cpp
+4
-0
src/boosting/rf.hpp
src/boosting/rf.hpp
+4
-0
No files found.
include/LightGBM/utils/array_args.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_UTILS_ARRAY_AGRS_H_
#define LIGHTGBM_UTILS_ARRAY_AGRS_H_
...
...
include/LightGBM/utils/common.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_UTILS_COMMON_FUN_H_
#define LIGHTGBM_UTILS_COMMON_FUN_H_
...
...
include/LightGBM/utils/file_io.h
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.
*/
#ifndef LIGHTGBM_UTILS_FILE_IO_H_
#define LIGHTGBM_UTILS_FILE_IO_H_
...
...
include/LightGBM/utils/log.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_UTILS_LOG_H_
#define LIGHTGBM_UTILS_LOG_H_
...
...
include/LightGBM/utils/openmp_wrapper.h
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_OPENMP_WRAPPER_H_
#define LIGHTGBM_OPENMP_WRAPPER_H_
#ifdef _OPENMP
...
...
include/LightGBM/utils/pipeline_reader.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_UTILS_PIPELINE_READER_H_
#define LIGHTGBM_UTILS_PIPELINE_READER_H_
...
...
include/LightGBM/utils/random.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_UTILS_RANDOM_H_
#define LIGHTGBM_UTILS_RANDOM_H_
...
...
include/LightGBM/utils/text_reader.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_UTILS_TEXT_READER_H_
#define LIGHTGBM_UTILS_TEXT_READER_H_
...
...
include/LightGBM/utils/threading.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_UTILS_THREADING_H_
#define LIGHTGBM_UTILS_THREADING_H_
...
...
src/application/application.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 <LightGBM/boosting.h>
...
...
src/application/predictor.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_PREDICTOR_HPP_
#define LIGHTGBM_PREDICTOR_HPP_
...
...
src/boosting/boosting.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/boosting.h>
#include "dart.hpp"
...
...
src/boosting/dart.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_DART_H_
#define LIGHTGBM_BOOSTING_DART_H_
...
...
src/boosting/gbdt.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 "gbdt.h"
#include <LightGBM/metric.h>
...
...
src/boosting/gbdt.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_BOOSTING_GBDT_H_
#define LIGHTGBM_BOOSTING_GBDT_H_
...
...
src/boosting/gbdt_model_text.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/metric.h>
#include <LightGBM/objective_function.h>
#include <LightGBM/utils/common.h>
...
...
src/boosting/gbdt_prediction.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/objective_function.h>
#include <LightGBM/prediction_early_stop.h>
#include <LightGBM/utils/openmp_wrapper.h>
...
...
src/boosting/goss.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_BOOSTING_GOSS_H_
#define LIGHTGBM_BOOSTING_GOSS_H_
...
...
src/boosting/prediction_early_stop.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/prediction_early_stop.h>
#include <LightGBM/utils/log.h>
...
...
src/boosting/rf.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_BOOSTING_RF_H_
#define LIGHTGBM_BOOSTING_RF_H_
...
...
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