From f7bf528d76bdbda630d327b1e3bce111f86b455a Mon Sep 17 00:00:00 2001 From: "jijoong.moon" Date: Fri, 6 Dec 2019 08:56:23 +0900 Subject: [PATCH] Add Copyright for Appache 2.0 License Add Copyright **Self evaluation:** 1. Build test: [X]Passed [ ]Failed [ ]Skipped 2. Run test: [X]Passed [ ]Failed [ ]Skipped Signed-off-by: jijoong.moon --- DeepQ/jni/main.cpp | 13 +++++++++++++ Environment/CartPole/cartpole.cpp | 13 +++++++++++++ Environment/CartPole/cartpole.h | 13 +++++++++++++ Environment/CartPole/main.cpp | 13 +++++++++++++ KNN/jni/demo.cpp | 13 +++++++++++++ LogisticRegression/jni/main.cpp | 13 +++++++++++++ NeuralNet/include/layers.h | 12 ++++++++++++ NeuralNet/include/matrix.h | 13 +++++++++++++ NeuralNet/include/neuralnet.h | 13 +++++++++++++ NeuralNet/layers.cpp | 13 +++++++++++++ NeuralNet/matrix.cpp | 13 +++++++++++++ NeuralNet/neuralnet.cpp | 13 +++++++++++++ Training/jni/main.cpp | 13 +++++++++++++ 13 files changed, 168 insertions(+) diff --git a/DeepQ/jni/main.cpp b/DeepQ/jni/main.cpp index 196b88f..3a6ff99 100644 --- a/DeepQ/jni/main.cpp +++ b/DeepQ/jni/main.cpp @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file main.cpp * @date 04 December 2019 * @see https://github.sec.samsung.net/jijoong-moon/Transfer-Learning.git diff --git a/Environment/CartPole/cartpole.cpp b/Environment/CartPole/cartpole.cpp index 2ef1d8c..2297dfa 100644 --- a/Environment/CartPole/cartpole.cpp +++ b/Environment/CartPole/cartpole.cpp @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file cartpole.cpp * @date 04 December 2019 * @brief This is environment class for cartpole example diff --git a/Environment/CartPole/cartpole.h b/Environment/CartPole/cartpole.h index 16cf7b9..f7b0252 100644 --- a/Environment/CartPole/cartpole.h +++ b/Environment/CartPole/cartpole.h @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file cartpole.h * @date 04 December 2019 * @brief This is environment class for cartpole example diff --git a/Environment/CartPole/main.cpp b/Environment/CartPole/main.cpp index 706471f..b60f345 100644 --- a/Environment/CartPole/main.cpp +++ b/Environment/CartPole/main.cpp @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file main.cpp * @date 04 December 2019 * @brief This is simple example to use Env CartPole-v0 diff --git a/KNN/jni/demo.cpp b/KNN/jni/demo.cpp index 23e2011..ee9c16e 100644 --- a/KNN/jni/demo.cpp +++ b/KNN/jni/demo.cpp @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file main.cpp for K Nearest Neighbor * @date 04 December 2019 * @see https://github.sec.samsung.net/jijoong-moon/Transfer-Learning.git diff --git a/LogisticRegression/jni/main.cpp b/LogisticRegression/jni/main.cpp index d1318b7..2f2f753 100644 --- a/LogisticRegression/jni/main.cpp +++ b/LogisticRegression/jni/main.cpp @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file main.cpp * @date 04 December 2019 * @see https://github.sec.samsung.net/jijoong-moon/Transfer-Learning.git diff --git a/NeuralNet/include/layers.h b/NeuralNet/include/layers.h index 7f744b5..a16f73f 100644 --- a/NeuralNet/include/layers.h +++ b/NeuralNet/include/layers.h @@ -1,4 +1,16 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * * @file layers.h * @date 04 December 2019 * @brief This is Layer classes of Neural Network diff --git a/NeuralNet/include/matrix.h b/NeuralNet/include/matrix.h index 6ab33d1..1042479 100644 --- a/NeuralNet/include/matrix.h +++ b/NeuralNet/include/matrix.h @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file matrix.h * @date 04 December 2019 * @brief This is Matrix class for calculation diff --git a/NeuralNet/include/neuralnet.h b/NeuralNet/include/neuralnet.h index c883762..9b4a60f 100644 --- a/NeuralNet/include/neuralnet.h +++ b/NeuralNet/include/neuralnet.h @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file neuralnet.h * @date 04 December 2019 * @brief This is Neural Network Class diff --git a/NeuralNet/layers.cpp b/NeuralNet/layers.cpp index a5ea534..009cf7a 100644 --- a/NeuralNet/layers.cpp +++ b/NeuralNet/layers.cpp @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file layers.cpp * @date 04 December 2019 * @brief This is Layers Classes for Neural Network diff --git a/NeuralNet/matrix.cpp b/NeuralNet/matrix.cpp index 2a2a5ff..102ebcb 100644 --- a/NeuralNet/matrix.cpp +++ b/NeuralNet/matrix.cpp @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file matrix.cpp * @date 04 December 2019 * @brief This is Matrix class for calculation diff --git a/NeuralNet/neuralnet.cpp b/NeuralNet/neuralnet.cpp index d02a8e2..7313c7f 100644 --- a/NeuralNet/neuralnet.cpp +++ b/NeuralNet/neuralnet.cpp @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file neuralnet.cpp * @date 04 December 2019 * @brief This is Neural Network Class diff --git a/Training/jni/main.cpp b/Training/jni/main.cpp index ba402e0..66d1deb 100644 --- a/Training/jni/main.cpp +++ b/Training/jni/main.cpp @@ -1,4 +1,17 @@ /** + * Copyright (C) 2019 Samsung Electronics Co., Ltd. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * * @file main.cpp * @date 04 December 2019 * @see https://github.sec.samsung.net/jijoong-moon/Transfer-Learning.git -- 2.7.4