Fix indent in the SPDX identifier
authorJuyeong Lee <2jy22@naver.com>
Tue, 27 Apr 2021 08:04:06 +0000 (17:04 +0900)
committerJijoong Moon <jijoong.moon@samsung.com>
Tue, 27 Apr 2021 10:40:02 +0000 (19:40 +0900)
Change tab indents to spaces in the SPDX identifier.
Resolves #1083

Signed-off-by: Juyeong Lee <2jy22@naver.com>
87 files changed:
Applications/Embedding/Tensorflow/embedding.py
Applications/Embedding/jni/main.cpp
Applications/KNN/jni/main.cpp
Applications/KNN/jni/main_sample.cpp
Applications/MNIST/PyTorch/main.py
Applications/MNIST/Tensorflow/Training_Keras.py
Applications/MNIST/Tensorflow/dataset.py
Applications/MNIST/jni/main.cpp
Applications/SimpleShot/task_runner.cpp
Applications/SimpleShot/test/simpleshot_centering_test.cpp
Applications/SimpleShot/test/simpleshot_centroid_knn.cpp
Applications/SimpleShot/test/simpleshot_l2norm_test.cpp
Applications/SimpleShot/test/simpleshot_utils_test.cpp
Applications/VGG/PyTorch/main.py
Applications/VGG/Tensorflow/dataset.py
Applications/VGG/Tensorflow/vgg_keras.py
Applications/VGG/gen_input/convert.py
Applications/VGG/jni/main.cpp
api/capi/include/platform/ml-api-common.h
api/ccapi/include/dataset.h
api/ccapi/include/layer.h
api/ccapi/include/model.h
api/ccapi/include/optimizer.h
api/ccapi/src/factory.cpp
nnstreamer/tensor_filter/tensor_filter_nntrainer.cc
nnstreamer/tensor_filter/tensor_filter_nntrainer.hh
nntrainer/app_context.cpp
nntrainer/dataset/databuffer_factory.cpp
nntrainer/dataset/databuffer_factory.h
nntrainer/dataset/databuffer_util.h
nntrainer/delegate.h
nntrainer/graph/graph_node.h
nntrainer/layers/addition_layer.cpp
nntrainer/layers/addition_layer.h
nntrainer/layers/concat_layer.cpp
nntrainer/layers/concat_layer.h
nntrainer/layers/conv2d_layer.cpp
nntrainer/layers/conv2d_layer.h
nntrainer/layers/embedding.cpp
nntrainer/layers/embedding.h
nntrainer/layers/fc_layer.h
nntrainer/layers/flatten_layer.cpp
nntrainer/layers/flatten_layer.h
nntrainer/layers/layer_factory.cpp
nntrainer/layers/layer_factory.h
nntrainer/layers/layer_node.h
nntrainer/layers/loss_layer.h
nntrainer/layers/lstm.cpp
nntrainer/layers/lstm.h
nntrainer/layers/nnstreamer_layer.cpp
nntrainer/layers/nnstreamer_layer.h
nntrainer/layers/pooling2d_layer.cpp
nntrainer/layers/pooling2d_layer.h
nntrainer/layers/preprocess_flip_layer.cpp
nntrainer/layers/preprocess_flip_layer.h
nntrainer/layers/preprocess_translate_layer.cpp
nntrainer/layers/preprocess_translate_layer.h
nntrainer/layers/rnn.cpp
nntrainer/layers/rnn.h
nntrainer/layers/tflite_layer.cpp
nntrainer/layers/tflite_layer.h
nntrainer/layers/time_dist.cpp
nntrainer/layers/time_dist.h
nntrainer/models/model_loader.h
nntrainer/optimizers/adam.cpp
nntrainer/optimizers/adam.h
nntrainer/optimizers/optimizer_devel.cpp
nntrainer/optimizers/optimizer_devel.h
nntrainer/optimizers/optimizer_factory.cpp
nntrainer/optimizers/optimizer_factory.h
nntrainer/optimizers/optimizer_impl.cpp
nntrainer/optimizers/optimizer_impl.h
nntrainer/optimizers/sgd.cpp
nntrainer/optimizers/sgd.h
nntrainer/tensor/blas_interface.cpp
nntrainer/tensor/blas_interface.h
nntrainer/tensor/lazy_tensor.cpp
nntrainer/tensor/lazy_tensor.h
nntrainer/tensor/tensor_dim.cpp
nntrainer/tensor/tensor_dim.h
nntrainer/tensor/var_grad.cpp
nntrainer/tensor/var_grad.h
nntrainer/tensor/weight.cpp
nntrainer/tensor/weight.h
test/unittest/unittest_nntrainer_appcontext.cpp
test/unittest/unittest_nntrainer_lazy_tensor.cpp
test/unittest/unittest_nntrainer_models.cpp

index c64b19d..ab03495 100644 (file)
@@ -3,12 +3,12 @@
 #
 # Copyright (C) 2021 Jijoong Moon <jijoong.moon@samsung.com>
 #
-# @file        embedding.py
-# @date        15 March 2021
-# @brief       This is Simple Embedding Layer Training Example
-# @see         https://github.com/nnstreamer/nntrainer
-# @author      Jijoong Moon <jijoong.moon@samsung.com>
-# @bug         No known bugs except for NYI items
+# @file          embedding.py
+# @date          15 March 2021
+# @brief  This is Simple Embedding Layer Training Example
+# @see    https://github.com/nnstreamer/nntrainer
+# @author Jijoong Moon <jijoong.moon@samsung.com>
+# @bug    No known bugs except for NYI items
 #
 #
 
index 47d1412..9e2e2c0 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2021 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       main.cpp
- * @date       10 March 2021
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Binary Logistic Regression Example
+ * @file   main.cpp
+ * @date   10 March 2021
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Binary Logistic Regression Example
  *
  *              Trainig set (embedding_input.txt) : 4 colume data + result (1.0
  * or 0.0) Configuration file : ../../res/Embedding.ini
index ad3840a..094f3f5 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       main.cpp
- * @date       21 August 2020
- * @brief      This is KNN example.
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   main.cpp
+ * @date   21 August 2020
+ * @brief  This is KNN example.
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 2231935..dd2459b 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       main.cpp for K Nearest Neighbor
- * @date       04 December 2019
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Transfer Learning Example with KNN
+ * @file   main.cpp for K Nearest Neighbor
+ * @date   04 December 2019
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Transfer Learning Example with KNN
  *
  *              Inputs : Three Categories ( Happy, Sad, Soso ) with
  *                       5 pictures for each category
index e6d8608..3933b53 100644 (file)
@@ -1,12 +1,12 @@
 #!/usr/bin/env python3
 # SPDX-License-Identifier: Apache-2.0
 #
-# @file        main.py
-# @date        6 Dec 2020
-# @brief       This is Simple MNIST Classification Example using PyTorch
-# @see         https://github.com/nnstreamer/nntrainer
-# @author      Parichay Kapoor <pk.kapoor@samsung.com>
-# @bug         No known bugs except for NYI items
+# @file   main.py
+# @date   6 Dec 2020
+# @brief  This is Simple MNIST Classification Example using PyTorch
+# @see    https://github.com/nnstreamer/nntrainer
+# @author Parichay Kapoor <pk.kapoor@samsung.com>
+# @bug    No known bugs except for NYI items
 
 # This code is based on official PyTorch examples repo - examples/mnist/main.py
 
index 718e81a..de4913b 100644 (file)
@@ -3,12 +3,12 @@
 #
 # Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
 #
-# @file        mnist_Keras.py
-# @date        13 July 2020
-# @brief       This is Simple Classification Example using Keras
-# @see         https://github.com/nnstreamer/nntrainer
-# @author      Jijoong Moon <jijoong.moon@samsung.com>
-# @bug         No known bugs except for NYI items
+# @file   mnist_Keras.py
+# @date   13 July 2020
+# @brief  This is Simple Classification Example using Keras
+# @see    https://github.com/nnstreamer/nntrainer
+# @author Jijoong Moon <jijoong.moon@samsung.com>
+# @bug    No known bugs except for NYI items
 #
 # mnist example
 # inputlayer -> conv2d (5x5) 6 filters -> pooling2d 2x2 (valid) -> conv2d (5x5) 12 filters ->
index 0e6a047..896b879 100644 (file)
@@ -3,12 +3,12 @@
 #
 # Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
 #
-# @file        dataset.py
-# @date        15 July 2020
-# @brief       This is for mnist input generation
-# @see         https://github.com/nnstreamer/nntrainer
-# @author      Jijoong Moon <jijoong.moon@samsung.com>
-# @bug         No known bugs except for NYI items
+# @file          dataset.py
+# @date          15 July 2020
+# @brief  This is for mnist input generation
+# @see    https://github.com/nnstreamer/nntrainer
+# @author Jijoong Moon <jijoong.moon@samsung.com>
+# @bug    No known bugs except for NYI items
 #
 #
 
index 917d6db..047bb78 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       main.cpp
- * @date       01 July 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is MNIST Example with
+ * @file   main.cpp
+ * @date   01 July 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is MNIST Example with
  *
  * Input 28x28
  * Conv2D 5 x 5 : 6 filters, stride 1x1, padding=0,0
index 381c23e..f2eaf44 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jihoon Lee <jhoon.it.lee@samsung.com>
  *
- * @file       task_runner.cpp
- * @date       08 Jan 2021
- * @brief      task runner for the simpleshot demonstration
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jihoon Lee <jhoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   task_runner.cpp
+ * @date   08 Jan 2021
+ * @brief  task runner for the simpleshot demonstration
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jihoon Lee <jhoon.it.lee@samsung.com>
+ * @bug    No known bugs except for NYI items
  */
 
 #include <fstream>
index ebcdc2c..921ece8 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jihoon Lee <jhoon.it.lee@samsung.com>
  *
- * @file       simpleshot_centering_test.cpp
- * @date       08 Jan 2021
- * @brief      test for simpleshot centering layer
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jihoon Lee <jhoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   simpleshot_centering_test.cpp
+ * @date   08 Jan 2021
+ * @brief  test for simpleshot centering layer
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jihoon Lee <jhoon.it.lee@samsung.com>
+ * @bug    No known bugs except for NYI items
  */
 
 #include <gtest/gtest.h>
index 10071f9..4f1bb6f 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jihoon Lee <jhoon.it.lee@samsung.com>
  *
- * @file       simpleshot_centroid_knn.cpp
- * @date       08 Jan 2021
- * @brief      test for simpleshot centering layer
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jihoon Lee <jhoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   simpleshot_centroid_knn.cpp
+ * @date   08 Jan 2021
+ * @brief  test for simpleshot centering layer
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jihoon Lee <jhoon.it.lee@samsung.com>
+ * @bug    No known bugs except for NYI items
  */
 
 #include <gtest/gtest.h>
index 894e838..ef6cd03 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jihoon Lee <jhoon.it.lee@samsung.com>
  *
- * @file       simpleshot_l2norm_test.cpp
- * @date       08 Jan 2021
- * @brief      test for simpleshot l2norm layer
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jihoon Lee <jhoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   simpleshot_l2norm_test.cpp
+ * @date   08 Jan 2021
+ * @brief  test for simpleshot l2norm layer
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jihoon Lee <jhoon.it.lee@samsung.com>
+ * @bug           No known bugs except for NYI items
  */
 
 #include <gtest/gtest.h>
index d770bab..4ba865b 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jihoon Lee <jhoon.it.lee@samsung.com>
  *
- * @file       simpleshot_utils_test.cpp
- * @date       08 Jan 2021
- * @brief      test for simpleshot utils
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jihoon Lee <jhoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   simpleshot_utils_test.cpp
+ * @date   08 Jan 2021
+ * @brief  test for simpleshot utils
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jihoon Lee <jhoon.it.lee@samsung.com>
+ * @bug    No known bugs except for NYI items
  */
 
 #include <gtest/gtest.h>
index 3051393..23f56b3 100644 (file)
@@ -1,12 +1,12 @@
 #!/usr/bin/env python3
 # SPDX-License-Identifier: Apache-2.0
 #
-# @file        main.py
-# @date        08 Dec 2020
-# @brief       This is VGG16 Example using PyTorch
-# @see         https://github.com/nnstreamer/nntrainer
-# @author      Parichay Kapoor <pk.kapoor@samsung.com>
-# @bug         No known bugs except for NYI items
+# @file          main.py
+# @date          08 Dec 2020
+# @brief  This is VGG16 Example using PyTorch
+# @see    https://github.com/nnstreamer/nntrainer
+# @author Parichay Kapoor <pk.kapoor@samsung.com>
+# @bug    No known bugs except for NYI items
 #
 # This is based on official pytorch examples
 
index a61b8cc..2168948 100644 (file)
@@ -3,12 +3,12 @@
 #
 # Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
 #
-# @file        dataset.py
-# @date        15 July 2020
-# @brief       This is for mnist input generation
-# @see         https://github.com/nnstreamer/nntrainer
-# @author      Jijoong Moon <jijoong.moon@samsung.com>
-# @bug         No known bugs except for NYI items
+# @file          dataset.py
+# @date          15 July 2020
+# @brief  This is for mnist input generation
+# @see    https://github.com/nnstreamer/nntrainer
+# @author Jijoong Moon <jijoong.moon@samsung.com>
+# @bug    No known bugs except for NYI items
 #
 #
 
index d5357ad..2f19d92 100755 (executable)
@@ -3,12 +3,12 @@
 #
 # Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
 #
-# @file        vgg_keras.py
-# @date        08 Oct 2020
-# @brief       This is VGG16 Example using Keras
-# @see         https://github.com/nnstreamer/nntrainer
-# @author      Jijoong Moon <jijoong.moon@samsung.com>
-# @bug         No known bugs except for NYI items
+# @file          vgg_keras.py
+# @date          08 Oct 2020
+# @brief  This is VGG16 Example using Keras
+# @see    https://github.com/nnstreamer/nntrainer
+# @author Jijoong Moon <jijoong.moon@samsung.com>
+# @bug    No known bugs except for NYI items
 #
 # vgg example : filter size is reduced.
 # conv3_16 - conv3_16, max_pooling, conv3_32 - conv3_32, max_pooling, conv3_64 - conv3_64 - conv3_64, max_pooling,
index 0f36972..310a0ea 100755 (executable)
@@ -3,12 +3,12 @@
 #
 # Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
 #
-# @file        convert.py
-# @date        12 Oct 2020
-# @brief       This is script to convert cifar100 data set for vgg model
-# @see         https://github.com/nnstreamer/nntrainer
-# @author      Jijoong Moon <jijoong.moon@samsung.com>
-# @bug         No known bugs except for NYI items
+# @file          convert.py
+# @date          12 Oct 2020
+# @brief  This is script to convert cifar100 data set for vgg model
+# @see    https://github.com/nnstreamer/nntrainer
+# @author Jijoong Moon <jijoong.moon@samsung.com>
+# @bug    No known bugs except for NYI items
 #
 # python3 convert.py path_for_cifar100 [train | val]
 #  - trainingSet.dat for training : 100 images x 100 classes
index 70e4695..b803331 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       main.cpp
- * @date       05 Oct 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is VGG Example with
+ * @file   main.cpp
+ * @date   05 Oct 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug           No known bugs except for NYI items
+ * @brief  This is VGG Example with
  *
  */
 
index 6cd63ec..889e434 100644 (file)
@@ -4,13 +4,13 @@
  * Copyright (C) 2020 MyungJoo Ham <myungjoo.ham@samsung.com>
  */
 /**
- * @file       ml-api-common.h
- * @date       07 May 2020
- * @brief      Dummy ML-API Common Header from nnstreamer. Relicensed by authors.
- * @see                https://github.com/nnstreamer/nnstreamer
- * @author     MyungJoo Ham <myungjoo.ham@samsung.com>
+ * @file   ml-api-common.h
+ * @date   07 May 2020
+ * @brief  Dummy ML-API Common Header from nnstreamer. Relicensed by authors.
+ * @see    https://github.com/nnstreamer/nnstreamer
+ * @author MyungJoo Ham <myungjoo.ham@samsung.com>
  * @author Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @bug    No known bugs except for NYI items
  *
  * @details
  *      More entries might be migrated from nnstreamer.h if
index 4a60dee..49e56e7 100644 (file)
@@ -3,13 +3,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       dataset.h
- * @date       14 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is dataset interface for c++ API
+ * @file   dataset.h
+ * @date   14 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug           No known bugs except for NYI items
+ * @brief  This is dataset interface for c++ API
  *
  * @note This is experimental API and not stable.
  */
index d0a6ea8..e115a0d 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       layer.h
- * @date       14 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is layers interface for c++ API
+ * @file   layer.h
+ * @date   14 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug           No known bugs except for NYI items
+ * @brief  This is layers interface for c++ API
  *
  * @note This is experimental API and not stable.
  */
index 716600b..e1a69d9 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       model.h
- * @date       14 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is model interface for c++ API
+ * @file   model.h
+ * @date   14 October 2020
+ * @see           https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug           No known bugs except for NYI items
+ * @brief  This is model interface for c++ API
  *
  * @note This is experimental API and not stable.
  */
index 6377b70..e100539 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       optimizer.h
- * @date       14 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is optimizers interface for c++ API
+ * @file   optimizer.h
+ * @date   14 October 2020
+ * @see           https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is optimizers interface for c++ API
  *
  * @note This is experimental API and not stable.
  */
index f56aec6..bc65269 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       factory.cpp
- * @date       14 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is implementaion for factory builder interface for c++ API
+ * @file   factory.cpp
+ * @date   14 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is implementaion for factory builder interface for c++ API
  */
 
 #include <memory>
index ab88151..6353d98 100644 (file)
@@ -4,12 +4,12 @@
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  */
 /**
- * @file       tensor_filter_nntrainer.cc
- * @date       09 Sept 2020
- * @brief      nntrainer inference module for tensor_filter gstreamer plugin
- * @see                http://github.com/nnstreamer/nnstreamer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   tensor_filter_nntrainer.cc
+ * @date   09 Sept 2020
+ * @brief  nntrainer inference module for tensor_filter gstreamer plugin
+ * @see    http://github.com/nnstreamer/nnstreamer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  * This is the per-NN-framework plugin (e.g) tensorflow-lite) for tensor_filter.
  * Fill in "GstTensorFilterFramework" for tensor_filter.h/c
index 3948a2d..b27b123 100644 (file)
@@ -4,13 +4,13 @@
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  */
 /**
- * @file       tensor_filter_nntrainer.hh
- * @date       09 Sept 2020
- * @brief      nntrainer inference module for tensor_filter gstreamer plugin header
- * @note  The clas has been exposed from tensor_filter_nntrainer.cc to unittest
- * @see                http://github.com/nnstreamer/nnstreamer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   tensor_filter_nntrainer.hh
+ * @date   09 Sept 2020
+ * @brief  nntrainer inference module for tensor_filter gstreamer plugin header
+ * @note   The clas has been exposed from tensor_filter_nntrainer.cc to unittest
+ * @see    http://github.com/nnstreamer/nnstreamer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  * This is the per-NN-framework plugin (e.g) tensorflow-lite) for tensor_filter.
  * Fill in "GstTensorFilterFramework" for tensor_filter.h/c
index 543f9d7..a3b02b0 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * Copyright (C) 2020 Jihoon Lee <jhoon.it.lee@samsung.com>
  *
- * @file        app_context.cpp
- * @date        10 November 2020
- * @brief       This file contains app context related functions and classes that
+ * @file   app_context.cpp
+ * @date   10 November 2020
+ * @brief  This file contains app context related functions and classes that
  * manages the global configuration of the current environment
- * @see                 https://github.com/nnstreamer/nntrainer
+ * @see    https://github.com/nnstreamer/nntrainer
  * @author Jihoon Lee <jhoon.it.lee@samsung.com>
  * @bug           No known bugs except for NYI items
  *
index 2cbfb17..7b3e508 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       databuffer_factory.cpp
- * @date       11 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the databuffer factory.
+ * @file   databuffer_factory.cpp
+ * @date   11 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the databuffer factory.
  */
 
 #include <databuffer_factory.h>
index feb2595..93ed81e 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       databuffer_factory.h
- * @date       19 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the layer factory.
+ * @file   databuffer_factory.h
+ * @date   19 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the layer factory.
  */
 
 #ifndef __DATABUFFER_FACTORY_H__
index a440ba1..1641c66 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       databuffer_util.h
- * @date       12 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Databuffer utility file.
+ * @file   databuffer_util.h
+ * @date   12 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Databuffer utility file.
  *
  */
 
index f20d384..0122a73 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       delegate.h
- * @date       7 Aug 2020
- * @brief      This is Delegate Class for the Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   delegate.h
+ * @date   7 Aug 2020
+ * @brief  This is Delegate Class for the Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  * @note This class is experimental and subject to major modifications.
  *
index 8e3d133..7ddc0ff 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2021 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       graph_node.h
- * @date       1 April 2021
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the graph node interface for c++ API
+ * @file   graph_node.h
+ * @date   1 April 2021
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the graph node interface for c++ API
  */
 
 #ifndef __GRAPH_NODE_H__
index c12cdd8..e0e8979 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       addition_layer.cpp
- * @date       30 July 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Addition Layer Class for Neural Network
+ * @file   addition_layer.cpp
+ * @date   30 July 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Addition Layer Class for Neural Network
  *
  */
 
index 1cfc028..80a4d7e 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       addition_layer.h
- * @date       30 July 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Addition Layer Class for Neural Network
+ * @file   addition_layer.h
+ * @date   30 July 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Addition Layer Class for Neural Network
  *
  */
 
index b107ff4..095bff8 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       concat_layer.cpp
- * @date       27 Oct 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Concat Layer Class for Neural Network
+ * @file   concat_layer.cpp
+ * @date   27 Oct 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Concat Layer Class for Neural Network
  *
  */
 
index bad6e52..67ec4dc 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       concat_layer.h
- * @date       27 Oct 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Concat Layer Class for Neural Network
+ * @file   concat_layer.h
+ * @date   27 Oct 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Concat Layer Class for Neural Network
  *
  */
 
index 020a16d..10512a7 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       conv2d_layer.h
- * @date       02 June 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Jihoon Lee <jhoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Convolution Layer Class for Neural Network
+ * @file   conv2d_layer.h
+ * @date   02 June 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Jihoon Lee <jhoon.it.lee@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Convolution Layer Class for Neural Network
  *
  */
 #include <algorithm>
index c2e09c6..a67435e 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       conv2d_layer.h
- * @date       01 June 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Convolution Layer Class for Neural Network
+ * @file   conv2d_layer.h
+ * @date   01 June 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Convolution Layer Class for Neural Network
  *
  */
 
index d79db4b..573cc8d 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       embedding.cpp
- * @date       04 March 2021
- * @brief      This is Embedding Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   embedding.cpp
+ * @date   04 March 2021
+ * @brief  This is Embedding Layer Class of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 5a6e0c7..6bff382 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2021 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       embedding.h
- * @date       04 March 2021
- * @brief      This is Embedding Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   embedding.h
+ * @date   04 March 2021
+ * @brief  This is Embedding Layer Class of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 68612cd..c4cd4a8 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       fc_layer.h
- * @date       14 May 2020
- * @brief      This is Fully Connected Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   fc_layer.h
+ * @date   14 May 2020
+ * @brief  This is Fully Connected Layer Class of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index b2fd112..d45f843 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       flatten_layer.cpp
- * @date       16 June 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Flatten Layer Class for Neural Network
+ * @file   flatten_layer.cpp
+ * @date   16 June 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug           No known bugs except for NYI items
+ * @brief  This is Flatten Layer Class for Neural Network
  *
  */
 
index 120b519..6be38fb 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       flatten_layer.h
- * @date       16 June 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Flatten Layer Class for Neural Network
+ * @file   flatten_layer.h
+ * @date   16 June 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Flatten Layer Class for Neural Network
  *
  */
 
index f193822..1edfcd8 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       optimizer_factory.cpp
- * @date       11 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the layer factory.
+ * @file   optimizer_factory.cpp
+ * @date   11 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the layer factory.
  */
 
 #include <layer_factory.h>
index 9d8183e..9751114 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       layer_factory.h
- * @date       7 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the layer factory.
+ * @file   layer_factory.h
+ * @date   7 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the layer factory.
  */
 
 #ifndef __LAYER_FACTORY_H__
index cc2be3a..2891b5b 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2021 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       graph_node.h
- * @date       1 April 2021
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the graph node interface for c++ API
+ * @file   graph_node.h
+ * @date   1 April 2021
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the graph node interface for c++ API
  */
 
 #ifndef __LAYER_NODE_H__
index a3de5a6..0f8f475 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       loss_layer.h
- * @date       12 June 2020
- * @brief      This is Loss Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   loss_layer.h
+ * @date   12 June 2020
+ * @brief  This is Loss Layer Class of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index a05410f..f57ab2e 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       lstm.cpp
- * @date       17 March 2021
- * @brief      This is Long Short-Term Memory Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   lstm.cpp
+ * @date   17 March 2021
+ * @brief  This is Long Short-Term Memory Layer Class of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 6b3342c..62131e2 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2021 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       lstm.h
- * @date       31 March 2021
- * @brief      This is Long Short-Term Memory Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   lstm.h
+ * @date   31 March 2021
+ * @brief  This is Long Short-Term Memory Layer Class of Neural Network
+ * @see           https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 04a9114..c7fc59a 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       nnstreamer_layer.cpp
- * @date       26 October 2020
- * @brief      This is class to encapsulate nnstreamer as a layer of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   nnstreamer_layer.cpp
+ * @date   26 October 2020
+ * @brief  This is class to encapsulate nnstreamer as a layer of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug           No known bugs except for NYI items
  *
  * @todo: provide input/output dimensions to nnstreamer for certain frameworks
  * @todo: support transposing the data to support NCHW nntrainer data to NHWC
index b29b998..4295030 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       nnstreamer_layer.h
- * @date       26 October 2020
- * @brief      This is class to encapsulate nnstreamer as a layer of Neural Network
- * @see        https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug        no known bugs except for NYI items
+ * @file   nnstreamer_layer.h
+ * @date   26 October 2020
+ * @brief  This is class to encapsulate nnstreamer as a layer of Neural Network
+ * @see           https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 31c96fc..9328e57 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       pooling2d_layer.cpp
- * @date       12 June 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is 2 Dimensional Pooling Layer Class for Neural Network
+ * @file   pooling2d_layer.cpp
+ * @date   12 June 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is 2 Dimensional Pooling Layer Class for Neural Network
  *
  */
 
index 3b464b4..9faad31 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       pooling2d_layer.h
- * @date       12 June 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is 2 Dimensional Pooling Layer Class for Neural Network
+ * @file   pooling2d_layer.h
+ * @date   12 June 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is 2 Dimensional Pooling Layer Class for Neural Network
  *
  */
 
index 110e3c6..9571067 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       preprocess_flip_layer.cpp
- * @date       20 January 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Preprocess Random Flip Layer Class for Neural Network
+ * @file   preprocess_flip_layer.cpp
+ * @date   20 January 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Preprocess Random Flip Layer Class for Neural Network
  *
  */
 
index 2fcef80..b038236 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       preprocess_flip_layer.h
- * @date       20 January 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Preprocess Random Flip Layer Class for Neural Network
+ * @file   preprocess_flip_layer.h
+ * @date   20 January 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Preprocess Random Flip Layer Class for Neural Network
  *
  */
 
index 95770fc..df2fbe4 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       preprocess_layer.cpp
- * @date       31 December 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Preprocess Translate Layer Class for Neural Network
+ * @file   preprocess_layer.cpp
+ * @date   31 December 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Preprocess Translate Layer Class for Neural Network
  *
  */
 
index deffb6e..18bf4d3 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       preprocess_layer.h
- * @date       31 December 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Preprocess Translate Layer Class for Neural Network
+ * @file   preprocess_layer.h
+ * @date   31 December 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Preprocess Translate Layer Class for Neural Network
  *
  */
 
index 9498a9e..83031c6 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       rnn.cpp
- * @date       17 March 2021
- * @brief      This is Recurrent Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   rnn.cpp
+ * @date   17 March 2021
+ * @brief  This is Recurrent Layer Class of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 68136bc..e0c9c80 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2021 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       rnn.h
- * @date       17 March 2021
- * @brief      This is Recurrent Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   rnn.h
+ * @date   17 March 2021
+ * @brief  This is Recurrent Layer Class of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 6996e47..d5cd57b 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       tflite_layer.cpp
- * @date       26 October 2020
- * @brief      This is class to encapsulate tflite as a layer of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   tflite_layer.cpp
+ * @date   26 October 2020
+ * @brief  This is class to encapsulate tflite as a layer of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  */
 
 #include <nntrainer_error.h>
index f55f634..ae0e68e 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       tflite_layer.h
- * @date       3 November 2020
- * @brief      This is class to encapsulate tflite as a layer of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   tflite_layer.h
+ * @date   3 November 2020
+ * @brief  This is class to encapsulate tflite as a layer of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index cf2c101..4195417 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       time_dist.cpp
- * @date       01 April 2021
- * @brief      This is Time Distributed Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   time_dist.cpp
+ * @date   01 April 2021
+ * @brief  This is Time Distributed Layer Class of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 045478b..d2e0947 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       time_dist.h
- * @date       01 April 2021
- * @brief      This is Time Distributed Layer Class of Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   time_dist.h
+ * @date   01 April 2021
+ * @brief  This is Time Distributed Layer Class of Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index d7cc420..ce49cfb 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       model_loader.h
- * @date       5 August 2020
- * @brief      This is model loader class for the Neural Network
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   model_loader.h
+ * @date   5 August 2020
+ * @brief  This is model loader class for the Neural Network
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 158a093..eb32cd6 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       adam.cpp
- * @date       6 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the Adam optimizer.
+ * @file   adam.cpp
+ * @date   6 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the Adam optimizer.
  */
 
 #include <cmath>
index b50bcb9..ae862be 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       adam.h
- * @date       6 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the Adam optimizer.
+ * @file   adam.h
+ * @date   6 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the Adam optimizer.
  */
 #ifndef __ADAM_H__
 #define __ADAM_H__
index cb2795d..8bf111d 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       optimizer_devel.cpp
- * @date       08 April 2020
- * @brief      This is Optimizer internal interface class
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   optimizer_devel.cpp
+ * @date   08 April 2020
+ * @brief  This is Optimizer internal interface class
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 4746f75..963f3df 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       optimizer_devel.h
- * @date       08 April 2020
- * @brief      This is Optimizer internal interface class
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   optimizer_devel.h
+ * @date   08 April 2020
+ * @brief  This is Optimizer internal interface class
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index c229a31..a59e0f7 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       optimizer_factory.cpp
- * @date       7 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the optimizer factory.
+ * @file   optimizer_factory.cpp
+ * @date   7 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the optimizer factory.
  */
 #include <algorithm>
 #include <sstream>
index 2d76576..a076788 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       optimizer_factory.h
- * @date       7 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the optimizer factory.
+ * @file   optimizer_factory.h
+ * @date   7 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the optimizer factory.
  */
 
 #ifndef __OPTIMIZER_FACTORY_H__
index dd825ea..535f73d 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       optimizer_impl.cpp
- * @date       18 March 2021
- * @brief      This is base Optimizer implementation class
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   optimizer_impl.cpp
+ * @date   18 March 2021
+ * @brief  This is base Optimizer implementation class
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index e940561..16c48e1 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       optimizer_impl.h
- * @date       18 March 2021
- * @brief      This is base Optimizer implementation class
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   optimizer_impl.h
+ * @date   18 March 2021
+ * @brief  This is base Optimizer implementation class
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 964d5e5..2728c9d 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       sgd.cpp
- * @date       6 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the SGD optimizer.
+ * @file   sgd.cpp
+ * @date   6 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the SGD optimizer.
  */
 
 #include <sgd.h>
index 0f2f3c0..bfe7dc7 100644 (file)
@@ -2,13 +2,13 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       sgd.h
- * @date       6 October 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is the SGD optimizer.
+ * @file   sgd.h
+ * @date   6 October 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is the SGD optimizer.
  */
 #ifndef __SGD_H__
 #define __SGD_H__
index 87de29f..5087dbe 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       blas_interface.cpp
- * @date       28 Aug 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is dummy header for blas support
+ * @file   blas_interface.cpp
+ * @date   28 Aug 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is dummy header for blas support
  *
  */
 
index 85b8676..18cf9f5 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  *
- * @file       blas_interface.h
- * @date       28 Aug 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is dummy header for blas support
+ * @file   blas_interface.h
+ * @date   28 Aug 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is dummy header for blas support
  *
  */
 
index b5c4c5a..69c57d6 100644 (file)
@@ -2,12 +2,12 @@
  *
  * Copyright (C) 2020 Jihoon Lee <jihoon.it.lee@samsung.com>
  *
- * @file       lazy_tensor.cpp
- * @date       05 Jun 2020
- * @brief      A lazy evaluation calculator for tensors
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jihoon Lee <jihoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   lazy_tensor.cpp
+ * @date   05 Jun 2020
+ * @brief  A lazy evaluation calculator for tensors
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jihoon Lee <jihoon.it.lee@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index fbeaf40..6230735 100644 (file)
@@ -1,12 +1,12 @@
 // SPDX-License-Identifier: Apache-2.0
 /* Copyright (C) 2020 Jihoon Lee <jihoon.it.lee@samsung.com>
  *
- * @file       lazy_tensor.h
- * @date       05 Jun 2020
- * @brief      A lazy evaluation calculator for tensors
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jihoon Lee <jihoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   lazy_tensor.h
+ * @date   05 Jun 2020
+ * @brief  A lazy evaluation calculator for tensors
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jihoon Lee <jihoon.it.lee@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 4ef7526..4df49e2 100644 (file)
@@ -3,12 +3,12 @@
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  */
 /**
- * @file       tensor_dim.cpp
- * @date       22 May 2020
- * @brief      This is Tensor Dimension Class
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   tensor_dim.cpp
+ * @date   22 May 2020
+ * @brief  This is Tensor Dimension Class
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 0d9f3d2..7effc4d 100644 (file)
@@ -3,12 +3,12 @@
  * Copyright (C) 2020 Jijoong Moon <jijoong.moon@samsung.com>
  */
 /**
- * @file       tensor_dim.h
- * @date       22 May 2020
- * @brief      This is Tensor Dimension Class
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jijoong Moon <jijoong.moon@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   tensor_dim.h
+ * @date   22 May 2020
+ * @brief  This is Tensor Dimension Class
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jijoong Moon <jijoong.moon@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 
index 4a5ec82..019f40e 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       var_grad.cpp
- * @date       13 November 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Var_Grad Class for Neural Network
+ * @file   var_grad.cpp
+ * @date   13 November 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Var_Grad Class for Neural Network
  *
  */
 
index 67fae98..e754c1b 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       var_grad.h
- * @date       13 November 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Var_Grad Class for Neural Network
+ * @file   var_grad.h
+ * @date   13 November 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Var_Grad Class for Neural Network
  *
  */
 
index 65f40b8..9b1866a 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       weight.cpp
- * @date       22 September 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Weight Class for Neural Network
+ * @file   weight.cpp
+ * @date   22 September 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Weight Class for Neural Network
  *
  */
 
index 1c1d662..66876b0 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Parichay Kapoor <pk.kapoor@samsung.com>
  *
- * @file       weight.h
- * @date       22 September 2020
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Parichay Kapoor <pk.kapoor@samsung.com>
- * @bug                No known bugs except for NYI items
- * @brief      This is Weight Class for Neural Network
+ * @file   weight.h
+ * @date   22 September 2020
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Parichay Kapoor <pk.kapoor@samsung.com>
+ * @bug    No known bugs except for NYI items
+ * @brief  This is Weight Class for Neural Network
  *
  */
 
index e7584e0..4a89390 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * Copyright (C) 2020 Jihoon Lee <jhoon.it.lee@samsung.com>
  *
- * @file        unittest_app_context.h
- * @date        9 November 2020
- * @brief       This file contains app context related functions and classes that
+ * @file   unittest_app_context.h
+ * @date   9 November 2020
+ * @brief  This file contains app context related functions and classes that
  * manages the global configuration of the current environment
- * @see                 https://github.com/nnstreamer/nntrainer
+ * @see    https://github.com/nnstreamer/nntrainer
  * @author Jihoon Lee <jhoon.it.lee@samsung.com>
  * @bug    No known bugs except for NYI items
  *
index 0c88a6c..682ac34 100644 (file)
@@ -1,13 +1,13 @@
 // SPDX-License-Identifier: Apache-2.0
-/* Copyright (C) 2020 Jihoon Lee <jihoon.it.lee@samsung.com>
- *
- * @file       unittest_nntrainer_lazy_tensor.cpp
- * @date       05 Jun 2020
- * @brief      A unittest for nntrainer_lazy_tensor
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jihoon Lee <jihoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
+/**
+ * Copyright (C) 2020 Jihoon Lee <jihoon.it.lee@samsung.com>
  *
+ * @file   unittest_nntrainer_lazy_tensor.cpp
+ * @date   05 Jun 2020
+ * @brief  A unittest for nntrainer_lazy_tensor
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jihoon Lee <jihoon.it.lee@samsung.com>
+ * @bug    No known bugs except for NYI items
  */
 #include <gtest/gtest.h>
 
index cdc1b4f..a6ef1a8 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Copyright (C) 2020 Jihoon Lee <jihoon.it.lee@samsung.com>
  *
- * @file       unittest_nntrainer_models.cpp
- * @date       19 Oct 2020
- * @brief      Model multi iteration, itegrated test
- * @see                https://github.com/nnstreamer/nntrainer
- * @author     Jihoon Lee <jihoon.it.lee@samsung.com>
- * @bug                No known bugs except for NYI items
+ * @file   unittest_nntrainer_models.cpp
+ * @date   19 Oct 2020
+ * @brief  Model multi iteration, itegrated test
+ * @see    https://github.com/nnstreamer/nntrainer
+ * @author Jihoon Lee <jihoon.it.lee@samsung.com>
+ * @bug    No known bugs except for NYI items
  *
  */
 #include <algorithm>