From: Juyeong Lee <2jy22@naver.com> Date: Tue, 27 Apr 2021 08:04:06 +0000 (+0900) Subject: Fix indent in the SPDX identifier X-Git-Tag: accepted/tizen/unified/20210829.234903~436 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9457a1473a1781848fef08207ebf9801260e45c4;p=platform%2Fcore%2Fml%2Fnntrainer.git Fix indent in the SPDX identifier Change tab indents to spaces in the SPDX identifier. Resolves #1083 Signed-off-by: Juyeong Lee <2jy22@naver.com> --- diff --git a/Applications/Embedding/Tensorflow/embedding.py b/Applications/Embedding/Tensorflow/embedding.py index c64b19d..ab03495 100644 --- a/Applications/Embedding/Tensorflow/embedding.py +++ b/Applications/Embedding/Tensorflow/embedding.py @@ -3,12 +3,12 @@ # # Copyright (C) 2021 Jijoong Moon # -# @file embedding.py -# @date 15 March 2021 -# @brief This is Simple Embedding Layer Training Example -# @see https://github.com/nnstreamer/nntrainer -# @author Jijoong Moon -# @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 +# @bug No known bugs except for NYI items # # diff --git a/Applications/Embedding/jni/main.cpp b/Applications/Embedding/jni/main.cpp index 47d1412..9e2e2c0 100644 --- a/Applications/Embedding/jni/main.cpp +++ b/Applications/Embedding/jni/main.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2021 Jijoong Moon * - * @file main.cpp - * @date 10 March 2021 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @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 diff --git a/Applications/KNN/jni/main.cpp b/Applications/KNN/jni/main.cpp index ad3840a..094f3f5 100644 --- a/Applications/KNN/jni/main.cpp +++ b/Applications/KNN/jni/main.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file main.cpp - * @date 21 August 2020 - * @brief This is KNN example. - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/Applications/KNN/jni/main_sample.cpp b/Applications/KNN/jni/main_sample.cpp index 2231935..dd2459b 100644 --- a/Applications/KNN/jni/main_sample.cpp +++ b/Applications/KNN/jni/main_sample.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file main.cpp for K Nearest Neighbor - * @date 04 December 2019 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @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 diff --git a/Applications/MNIST/PyTorch/main.py b/Applications/MNIST/PyTorch/main.py index e6d8608..3933b53 100644 --- a/Applications/MNIST/PyTorch/main.py +++ b/Applications/MNIST/PyTorch/main.py @@ -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 -# @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 +# @bug No known bugs except for NYI items # This code is based on official PyTorch examples repo - examples/mnist/main.py diff --git a/Applications/MNIST/Tensorflow/Training_Keras.py b/Applications/MNIST/Tensorflow/Training_Keras.py index 718e81a..de4913b 100644 --- a/Applications/MNIST/Tensorflow/Training_Keras.py +++ b/Applications/MNIST/Tensorflow/Training_Keras.py @@ -3,12 +3,12 @@ # # Copyright (C) 2020 Jijoong Moon # -# @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 -# @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 +# @bug No known bugs except for NYI items # # mnist example # inputlayer -> conv2d (5x5) 6 filters -> pooling2d 2x2 (valid) -> conv2d (5x5) 12 filters -> diff --git a/Applications/MNIST/Tensorflow/dataset.py b/Applications/MNIST/Tensorflow/dataset.py index 0e6a047..896b879 100644 --- a/Applications/MNIST/Tensorflow/dataset.py +++ b/Applications/MNIST/Tensorflow/dataset.py @@ -3,12 +3,12 @@ # # Copyright (C) 2020 Jijoong Moon # -# @file dataset.py -# @date 15 July 2020 -# @brief This is for mnist input generation -# @see https://github.com/nnstreamer/nntrainer -# @author Jijoong Moon -# @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 +# @bug No known bugs except for NYI items # # diff --git a/Applications/MNIST/jni/main.cpp b/Applications/MNIST/jni/main.cpp index 917d6db..047bb78 100644 --- a/Applications/MNIST/jni/main.cpp +++ b/Applications/MNIST/jni/main.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file main.cpp - * @date 01 July 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @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 diff --git a/Applications/SimpleShot/task_runner.cpp b/Applications/SimpleShot/task_runner.cpp index 381c23e..f2eaf44 100644 --- a/Applications/SimpleShot/task_runner.cpp +++ b/Applications/SimpleShot/task_runner.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jihoon Lee * - * @file task_runner.cpp - * @date 08 Jan 2021 - * @brief task runner for the simpleshot demonstration - * @see https://github.com/nnstreamer/nntrainer - * @author Jihoon Lee - * @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 + * @bug No known bugs except for NYI items */ #include diff --git a/Applications/SimpleShot/test/simpleshot_centering_test.cpp b/Applications/SimpleShot/test/simpleshot_centering_test.cpp index ebcdc2c..921ece8 100644 --- a/Applications/SimpleShot/test/simpleshot_centering_test.cpp +++ b/Applications/SimpleShot/test/simpleshot_centering_test.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jihoon Lee * - * @file simpleshot_centering_test.cpp - * @date 08 Jan 2021 - * @brief test for simpleshot centering layer - * @see https://github.com/nnstreamer/nntrainer - * @author Jihoon Lee - * @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 + * @bug No known bugs except for NYI items */ #include diff --git a/Applications/SimpleShot/test/simpleshot_centroid_knn.cpp b/Applications/SimpleShot/test/simpleshot_centroid_knn.cpp index 10071f9..4f1bb6f 100644 --- a/Applications/SimpleShot/test/simpleshot_centroid_knn.cpp +++ b/Applications/SimpleShot/test/simpleshot_centroid_knn.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jihoon Lee * - * @file simpleshot_centroid_knn.cpp - * @date 08 Jan 2021 - * @brief test for simpleshot centering layer - * @see https://github.com/nnstreamer/nntrainer - * @author Jihoon Lee - * @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 + * @bug No known bugs except for NYI items */ #include diff --git a/Applications/SimpleShot/test/simpleshot_l2norm_test.cpp b/Applications/SimpleShot/test/simpleshot_l2norm_test.cpp index 894e838..ef6cd03 100644 --- a/Applications/SimpleShot/test/simpleshot_l2norm_test.cpp +++ b/Applications/SimpleShot/test/simpleshot_l2norm_test.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jihoon Lee * - * @file simpleshot_l2norm_test.cpp - * @date 08 Jan 2021 - * @brief test for simpleshot l2norm layer - * @see https://github.com/nnstreamer/nntrainer - * @author Jihoon Lee - * @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 + * @bug No known bugs except for NYI items */ #include diff --git a/Applications/SimpleShot/test/simpleshot_utils_test.cpp b/Applications/SimpleShot/test/simpleshot_utils_test.cpp index d770bab..4ba865b 100644 --- a/Applications/SimpleShot/test/simpleshot_utils_test.cpp +++ b/Applications/SimpleShot/test/simpleshot_utils_test.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jihoon Lee * - * @file simpleshot_utils_test.cpp - * @date 08 Jan 2021 - * @brief test for simpleshot utils - * @see https://github.com/nnstreamer/nntrainer - * @author Jihoon Lee - * @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 + * @bug No known bugs except for NYI items */ #include diff --git a/Applications/VGG/PyTorch/main.py b/Applications/VGG/PyTorch/main.py index 3051393..23f56b3 100644 --- a/Applications/VGG/PyTorch/main.py +++ b/Applications/VGG/PyTorch/main.py @@ -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 -# @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 +# @bug No known bugs except for NYI items # # This is based on official pytorch examples diff --git a/Applications/VGG/Tensorflow/dataset.py b/Applications/VGG/Tensorflow/dataset.py index a61b8cc..2168948 100644 --- a/Applications/VGG/Tensorflow/dataset.py +++ b/Applications/VGG/Tensorflow/dataset.py @@ -3,12 +3,12 @@ # # Copyright (C) 2020 Jijoong Moon # -# @file dataset.py -# @date 15 July 2020 -# @brief This is for mnist input generation -# @see https://github.com/nnstreamer/nntrainer -# @author Jijoong Moon -# @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 +# @bug No known bugs except for NYI items # # diff --git a/Applications/VGG/Tensorflow/vgg_keras.py b/Applications/VGG/Tensorflow/vgg_keras.py index d5357ad..2f19d92 100755 --- a/Applications/VGG/Tensorflow/vgg_keras.py +++ b/Applications/VGG/Tensorflow/vgg_keras.py @@ -3,12 +3,12 @@ # # Copyright (C) 2020 Jijoong Moon # -# @file vgg_keras.py -# @date 08 Oct 2020 -# @brief This is VGG16 Example using Keras -# @see https://github.com/nnstreamer/nntrainer -# @author Jijoong Moon -# @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 +# @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, diff --git a/Applications/VGG/gen_input/convert.py b/Applications/VGG/gen_input/convert.py index 0f36972..310a0ea 100755 --- a/Applications/VGG/gen_input/convert.py +++ b/Applications/VGG/gen_input/convert.py @@ -3,12 +3,12 @@ # # Copyright (C) 2020 Jijoong Moon # -# @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 -# @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 +# @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 diff --git a/Applications/VGG/jni/main.cpp b/Applications/VGG/jni/main.cpp index 70e4695..b803331 100644 --- a/Applications/VGG/jni/main.cpp +++ b/Applications/VGG/jni/main.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file main.cpp - * @date 05 Oct 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is VGG Example with * */ diff --git a/api/capi/include/platform/ml-api-common.h b/api/capi/include/platform/ml-api-common.h index 6cd63ec..889e434 100644 --- a/api/capi/include/platform/ml-api-common.h +++ b/api/capi/include/platform/ml-api-common.h @@ -4,13 +4,13 @@ * Copyright (C) 2020 MyungJoo Ham */ /** - * @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 + * @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 * @author Jijoong Moon - * @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 diff --git a/api/ccapi/include/dataset.h b/api/ccapi/include/dataset.h index 4a60dee..49e56e7 100644 --- a/api/ccapi/include/dataset.h +++ b/api/ccapi/include/dataset.h @@ -3,13 +3,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file dataset.h - * @date 14 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items + * @brief This is dataset interface for c++ API * * @note This is experimental API and not stable. */ diff --git a/api/ccapi/include/layer.h b/api/ccapi/include/layer.h index d0a6ea8..e115a0d 100644 --- a/api/ccapi/include/layer.h +++ b/api/ccapi/include/layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file layer.h - * @date 14 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is layers interface for c++ API * * @note This is experimental API and not stable. */ diff --git a/api/ccapi/include/model.h b/api/ccapi/include/model.h index 716600b..e1a69d9 100644 --- a/api/ccapi/include/model.h +++ b/api/ccapi/include/model.h @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file model.h - * @date 14 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items + * @brief This is model interface for c++ API * * @note This is experimental API and not stable. */ diff --git a/api/ccapi/include/optimizer.h b/api/ccapi/include/optimizer.h index 6377b70..e100539 100644 --- a/api/ccapi/include/optimizer.h +++ b/api/ccapi/include/optimizer.h @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file optimizer.h - * @date 14 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items + * @brief This is optimizers interface for c++ API * * @note This is experimental API and not stable. */ diff --git a/api/ccapi/src/factory.cpp b/api/ccapi/src/factory.cpp index f56aec6..bc65269 100644 --- a/api/ccapi/src/factory.cpp +++ b/api/ccapi/src/factory.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file factory.cpp - * @date 14 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is implementaion for factory builder interface for c++ API */ #include diff --git a/nnstreamer/tensor_filter/tensor_filter_nntrainer.cc b/nnstreamer/tensor_filter/tensor_filter_nntrainer.cc index ab88151..6353d98 100644 --- a/nnstreamer/tensor_filter/tensor_filter_nntrainer.cc +++ b/nnstreamer/tensor_filter/tensor_filter_nntrainer.cc @@ -4,12 +4,12 @@ * Copyright (C) 2020 Jijoong Moon */ /** - * @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 - * @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 + * @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 diff --git a/nnstreamer/tensor_filter/tensor_filter_nntrainer.hh b/nnstreamer/tensor_filter/tensor_filter_nntrainer.hh index 3948a2d..b27b123 100644 --- a/nnstreamer/tensor_filter/tensor_filter_nntrainer.hh +++ b/nnstreamer/tensor_filter/tensor_filter_nntrainer.hh @@ -4,13 +4,13 @@ * Copyright (C) 2020 Jijoong Moon */ /** - * @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 - * @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 + * @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 diff --git a/nntrainer/app_context.cpp b/nntrainer/app_context.cpp index 543f9d7..a3b02b0 100644 --- a/nntrainer/app_context.cpp +++ b/nntrainer/app_context.cpp @@ -2,11 +2,11 @@ /** * Copyright (C) 2020 Jihoon Lee * - * @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 * @bug No known bugs except for NYI items * diff --git a/nntrainer/dataset/databuffer_factory.cpp b/nntrainer/dataset/databuffer_factory.cpp index 2cbfb17..7b3e508 100644 --- a/nntrainer/dataset/databuffer_factory.cpp +++ b/nntrainer/dataset/databuffer_factory.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file databuffer_factory.cpp - * @date 11 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is the databuffer factory. */ #include diff --git a/nntrainer/dataset/databuffer_factory.h b/nntrainer/dataset/databuffer_factory.h index feb2595..93ed81e 100644 --- a/nntrainer/dataset/databuffer_factory.h +++ b/nntrainer/dataset/databuffer_factory.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file databuffer_factory.h - * @date 19 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is the layer factory. */ #ifndef __DATABUFFER_FACTORY_H__ diff --git a/nntrainer/dataset/databuffer_util.h b/nntrainer/dataset/databuffer_util.h index a440ba1..1641c66 100644 --- a/nntrainer/dataset/databuffer_util.h +++ b/nntrainer/dataset/databuffer_util.h @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file databuffer_util.h - * @date 12 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items + * @brief This is Databuffer utility file. * */ diff --git a/nntrainer/delegate.h b/nntrainer/delegate.h index f20d384..0122a73 100644 --- a/nntrainer/delegate.h +++ b/nntrainer/delegate.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @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 - * @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 + * @bug No known bugs except for NYI items * * @note This class is experimental and subject to major modifications. * diff --git a/nntrainer/graph/graph_node.h b/nntrainer/graph/graph_node.h index 8e3d133..7ddc0ff 100644 --- a/nntrainer/graph/graph_node.h +++ b/nntrainer/graph/graph_node.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2021 Parichay Kapoor * - * @file graph_node.h - * @date 1 April 2021 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is the graph node interface for c++ API */ #ifndef __GRAPH_NODE_H__ diff --git a/nntrainer/layers/addition_layer.cpp b/nntrainer/layers/addition_layer.cpp index c12cdd8..e0e8979 100644 --- a/nntrainer/layers/addition_layer.cpp +++ b/nntrainer/layers/addition_layer.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file addition_layer.cpp - * @date 30 July 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Addition Layer Class for Neural Network * */ diff --git a/nntrainer/layers/addition_layer.h b/nntrainer/layers/addition_layer.h index 1cfc028..80a4d7e 100644 --- a/nntrainer/layers/addition_layer.h +++ b/nntrainer/layers/addition_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file addition_layer.h - * @date 30 July 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Addition Layer Class for Neural Network * */ diff --git a/nntrainer/layers/concat_layer.cpp b/nntrainer/layers/concat_layer.cpp index b107ff4..095bff8 100644 --- a/nntrainer/layers/concat_layer.cpp +++ b/nntrainer/layers/concat_layer.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file concat_layer.cpp - * @date 27 Oct 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is Concat Layer Class for Neural Network * */ diff --git a/nntrainer/layers/concat_layer.h b/nntrainer/layers/concat_layer.h index bad6e52..67ec4dc 100644 --- a/nntrainer/layers/concat_layer.h +++ b/nntrainer/layers/concat_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file concat_layer.h - * @date 27 Oct 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is Concat Layer Class for Neural Network * */ diff --git a/nntrainer/layers/conv2d_layer.cpp b/nntrainer/layers/conv2d_layer.cpp index 020a16d..10512a7 100644 --- a/nntrainer/layers/conv2d_layer.cpp +++ b/nntrainer/layers/conv2d_layer.cpp @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file conv2d_layer.h - * @date 02 June 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Jihoon Lee - * @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 + * @author Jihoon Lee + * @bug No known bugs except for NYI items + * @brief This is Convolution Layer Class for Neural Network * */ #include diff --git a/nntrainer/layers/conv2d_layer.h b/nntrainer/layers/conv2d_layer.h index c2e09c6..a67435e 100644 --- a/nntrainer/layers/conv2d_layer.h +++ b/nntrainer/layers/conv2d_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file conv2d_layer.h - * @date 01 June 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is Convolution Layer Class for Neural Network * */ diff --git a/nntrainer/layers/embedding.cpp b/nntrainer/layers/embedding.cpp index d79db4b..573cc8d 100644 --- a/nntrainer/layers/embedding.cpp +++ b/nntrainer/layers/embedding.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/embedding.h b/nntrainer/layers/embedding.h index 5a6e0c7..6bff382 100644 --- a/nntrainer/layers/embedding.h +++ b/nntrainer/layers/embedding.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2021 Jijoong Moon * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/fc_layer.h b/nntrainer/layers/fc_layer.h index 68612cd..c4cd4a8 100644 --- a/nntrainer/layers/fc_layer.h +++ b/nntrainer/layers/fc_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/flatten_layer.cpp b/nntrainer/layers/flatten_layer.cpp index b2fd112..d45f843 100644 --- a/nntrainer/layers/flatten_layer.cpp +++ b/nntrainer/layers/flatten_layer.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file flatten_layer.cpp - * @date 16 June 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is Flatten Layer Class for Neural Network * */ diff --git a/nntrainer/layers/flatten_layer.h b/nntrainer/layers/flatten_layer.h index 120b519..6be38fb 100644 --- a/nntrainer/layers/flatten_layer.h +++ b/nntrainer/layers/flatten_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file flatten_layer.h - * @date 16 June 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is Flatten Layer Class for Neural Network * */ diff --git a/nntrainer/layers/layer_factory.cpp b/nntrainer/layers/layer_factory.cpp index f193822..1edfcd8 100644 --- a/nntrainer/layers/layer_factory.cpp +++ b/nntrainer/layers/layer_factory.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file optimizer_factory.cpp - * @date 11 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is the layer factory. */ #include diff --git a/nntrainer/layers/layer_factory.h b/nntrainer/layers/layer_factory.h index 9d8183e..9751114 100644 --- a/nntrainer/layers/layer_factory.h +++ b/nntrainer/layers/layer_factory.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file layer_factory.h - * @date 7 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is the layer factory. */ #ifndef __LAYER_FACTORY_H__ diff --git a/nntrainer/layers/layer_node.h b/nntrainer/layers/layer_node.h index cc2be3a..2891b5b 100644 --- a/nntrainer/layers/layer_node.h +++ b/nntrainer/layers/layer_node.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2021 Parichay Kapoor * - * @file graph_node.h - * @date 1 April 2021 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is the graph node interface for c++ API */ #ifndef __LAYER_NODE_H__ diff --git a/nntrainer/layers/loss_layer.h b/nntrainer/layers/loss_layer.h index a3de5a6..0f8f475 100644 --- a/nntrainer/layers/loss_layer.h +++ b/nntrainer/layers/loss_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/lstm.cpp b/nntrainer/layers/lstm.cpp index a05410f..f57ab2e 100644 --- a/nntrainer/layers/lstm.cpp +++ b/nntrainer/layers/lstm.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/lstm.h b/nntrainer/layers/lstm.h index 6b3342c..62131e2 100644 --- a/nntrainer/layers/lstm.h +++ b/nntrainer/layers/lstm.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2021 Jijoong Moon * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/nnstreamer_layer.cpp b/nntrainer/layers/nnstreamer_layer.cpp index 04a9114..c7fc59a 100644 --- a/nntrainer/layers/nnstreamer_layer.cpp +++ b/nntrainer/layers/nnstreamer_layer.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @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 - * @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 + * @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 diff --git a/nntrainer/layers/nnstreamer_layer.h b/nntrainer/layers/nnstreamer_layer.h index b29b998..4295030 100644 --- a/nntrainer/layers/nnstreamer_layer.h +++ b/nntrainer/layers/nnstreamer_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/pooling2d_layer.cpp b/nntrainer/layers/pooling2d_layer.cpp index 31c96fc..9328e57 100644 --- a/nntrainer/layers/pooling2d_layer.cpp +++ b/nntrainer/layers/pooling2d_layer.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file pooling2d_layer.cpp - * @date 12 June 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is 2 Dimensional Pooling Layer Class for Neural Network * */ diff --git a/nntrainer/layers/pooling2d_layer.h b/nntrainer/layers/pooling2d_layer.h index 3b464b4..9faad31 100644 --- a/nntrainer/layers/pooling2d_layer.h +++ b/nntrainer/layers/pooling2d_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file pooling2d_layer.h - * @date 12 June 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is 2 Dimensional Pooling Layer Class for Neural Network * */ diff --git a/nntrainer/layers/preprocess_flip_layer.cpp b/nntrainer/layers/preprocess_flip_layer.cpp index 110e3c6..9571067 100644 --- a/nntrainer/layers/preprocess_flip_layer.cpp +++ b/nntrainer/layers/preprocess_flip_layer.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file preprocess_flip_layer.cpp - * @date 20 January 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Preprocess Random Flip Layer Class for Neural Network * */ diff --git a/nntrainer/layers/preprocess_flip_layer.h b/nntrainer/layers/preprocess_flip_layer.h index 2fcef80..b038236 100644 --- a/nntrainer/layers/preprocess_flip_layer.h +++ b/nntrainer/layers/preprocess_flip_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file preprocess_flip_layer.h - * @date 20 January 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Preprocess Random Flip Layer Class for Neural Network * */ diff --git a/nntrainer/layers/preprocess_translate_layer.cpp b/nntrainer/layers/preprocess_translate_layer.cpp index 95770fc..df2fbe4 100644 --- a/nntrainer/layers/preprocess_translate_layer.cpp +++ b/nntrainer/layers/preprocess_translate_layer.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file preprocess_layer.cpp - * @date 31 December 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Preprocess Translate Layer Class for Neural Network * */ diff --git a/nntrainer/layers/preprocess_translate_layer.h b/nntrainer/layers/preprocess_translate_layer.h index deffb6e..18bf4d3 100644 --- a/nntrainer/layers/preprocess_translate_layer.h +++ b/nntrainer/layers/preprocess_translate_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file preprocess_layer.h - * @date 31 December 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Preprocess Translate Layer Class for Neural Network * */ diff --git a/nntrainer/layers/rnn.cpp b/nntrainer/layers/rnn.cpp index 9498a9e..83031c6 100644 --- a/nntrainer/layers/rnn.cpp +++ b/nntrainer/layers/rnn.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/rnn.h b/nntrainer/layers/rnn.h index 68136bc..e0c9c80 100644 --- a/nntrainer/layers/rnn.h +++ b/nntrainer/layers/rnn.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2021 Jijoong Moon * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/tflite_layer.cpp b/nntrainer/layers/tflite_layer.cpp index 6996e47..d5cd57b 100644 --- a/nntrainer/layers/tflite_layer.cpp +++ b/nntrainer/layers/tflite_layer.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @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 - * @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 + * @bug No known bugs except for NYI items */ #include diff --git a/nntrainer/layers/tflite_layer.h b/nntrainer/layers/tflite_layer.h index f55f634..ae0e68e 100644 --- a/nntrainer/layers/tflite_layer.h +++ b/nntrainer/layers/tflite_layer.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/time_dist.cpp b/nntrainer/layers/time_dist.cpp index cf2c101..4195417 100644 --- a/nntrainer/layers/time_dist.cpp +++ b/nntrainer/layers/time_dist.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/layers/time_dist.h b/nntrainer/layers/time_dist.h index 045478b..d2e0947 100644 --- a/nntrainer/layers/time_dist.h +++ b/nntrainer/layers/time_dist.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/models/model_loader.h b/nntrainer/models/model_loader.h index d7cc420..ce49cfb 100644 --- a/nntrainer/models/model_loader.h +++ b/nntrainer/models/model_loader.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @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 - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/optimizers/adam.cpp b/nntrainer/optimizers/adam.cpp index 158a093..eb32cd6 100644 --- a/nntrainer/optimizers/adam.cpp +++ b/nntrainer/optimizers/adam.cpp @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file adam.cpp - * @date 6 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items + * @brief This is the Adam optimizer. */ #include diff --git a/nntrainer/optimizers/adam.h b/nntrainer/optimizers/adam.h index b50bcb9..ae862be 100644 --- a/nntrainer/optimizers/adam.h +++ b/nntrainer/optimizers/adam.h @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file adam.h - * @date 6 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items + * @brief This is the Adam optimizer. */ #ifndef __ADAM_H__ #define __ADAM_H__ diff --git a/nntrainer/optimizers/optimizer_devel.cpp b/nntrainer/optimizers/optimizer_devel.cpp index cb2795d..8bf111d 100644 --- a/nntrainer/optimizers/optimizer_devel.cpp +++ b/nntrainer/optimizers/optimizer_devel.cpp @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file optimizer_devel.cpp - * @date 08 April 2020 - * @brief This is Optimizer internal interface class - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/optimizers/optimizer_devel.h b/nntrainer/optimizers/optimizer_devel.h index 4746f75..963f3df 100644 --- a/nntrainer/optimizers/optimizer_devel.h +++ b/nntrainer/optimizers/optimizer_devel.h @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file optimizer_devel.h - * @date 08 April 2020 - * @brief This is Optimizer internal interface class - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/optimizers/optimizer_factory.cpp b/nntrainer/optimizers/optimizer_factory.cpp index c229a31..a59e0f7 100644 --- a/nntrainer/optimizers/optimizer_factory.cpp +++ b/nntrainer/optimizers/optimizer_factory.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file optimizer_factory.cpp - * @date 7 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is the optimizer factory. */ #include #include diff --git a/nntrainer/optimizers/optimizer_factory.h b/nntrainer/optimizers/optimizer_factory.h index 2d76576..a076788 100644 --- a/nntrainer/optimizers/optimizer_factory.h +++ b/nntrainer/optimizers/optimizer_factory.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file optimizer_factory.h - * @date 7 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is the optimizer factory. */ #ifndef __OPTIMIZER_FACTORY_H__ diff --git a/nntrainer/optimizers/optimizer_impl.cpp b/nntrainer/optimizers/optimizer_impl.cpp index dd825ea..535f73d 100644 --- a/nntrainer/optimizers/optimizer_impl.cpp +++ b/nntrainer/optimizers/optimizer_impl.cpp @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file optimizer_impl.cpp - * @date 18 March 2021 - * @brief This is base Optimizer implementation class - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/optimizers/optimizer_impl.h b/nntrainer/optimizers/optimizer_impl.h index e940561..16c48e1 100644 --- a/nntrainer/optimizers/optimizer_impl.h +++ b/nntrainer/optimizers/optimizer_impl.h @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file optimizer_impl.h - * @date 18 March 2021 - * @brief This is base Optimizer implementation class - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/optimizers/sgd.cpp b/nntrainer/optimizers/sgd.cpp index 964d5e5..2728c9d 100644 --- a/nntrainer/optimizers/sgd.cpp +++ b/nntrainer/optimizers/sgd.cpp @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file sgd.cpp - * @date 6 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items + * @brief This is the SGD optimizer. */ #include diff --git a/nntrainer/optimizers/sgd.h b/nntrainer/optimizers/sgd.h index 0f2f3c0..bfe7dc7 100644 --- a/nntrainer/optimizers/sgd.h +++ b/nntrainer/optimizers/sgd.h @@ -2,13 +2,13 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file sgd.h - * @date 6 October 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @author Parichay Kapoor - * @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 + * @author Parichay Kapoor + * @bug No known bugs except for NYI items + * @brief This is the SGD optimizer. */ #ifndef __SGD_H__ #define __SGD_H__ diff --git a/nntrainer/tensor/blas_interface.cpp b/nntrainer/tensor/blas_interface.cpp index 87de29f..5087dbe 100644 --- a/nntrainer/tensor/blas_interface.cpp +++ b/nntrainer/tensor/blas_interface.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file blas_interface.cpp - * @date 28 Aug 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is dummy header for blas support * */ diff --git a/nntrainer/tensor/blas_interface.h b/nntrainer/tensor/blas_interface.h index 85b8676..18cf9f5 100644 --- a/nntrainer/tensor/blas_interface.h +++ b/nntrainer/tensor/blas_interface.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jijoong Moon * - * @file blas_interface.h - * @date 28 Aug 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items + * @brief This is dummy header for blas support * */ diff --git a/nntrainer/tensor/lazy_tensor.cpp b/nntrainer/tensor/lazy_tensor.cpp index b5c4c5a..69c57d6 100644 --- a/nntrainer/tensor/lazy_tensor.cpp +++ b/nntrainer/tensor/lazy_tensor.cpp @@ -2,12 +2,12 @@ * * Copyright (C) 2020 Jihoon Lee * - * @file lazy_tensor.cpp - * @date 05 Jun 2020 - * @brief A lazy evaluation calculator for tensors - * @see https://github.com/nnstreamer/nntrainer - * @author Jihoon Lee - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/tensor/lazy_tensor.h b/nntrainer/tensor/lazy_tensor.h index fbeaf40..6230735 100644 --- a/nntrainer/tensor/lazy_tensor.h +++ b/nntrainer/tensor/lazy_tensor.h @@ -1,12 +1,12 @@ // SPDX-License-Identifier: Apache-2.0 /* Copyright (C) 2020 Jihoon Lee * - * @file lazy_tensor.h - * @date 05 Jun 2020 - * @brief A lazy evaluation calculator for tensors - * @see https://github.com/nnstreamer/nntrainer - * @author Jihoon Lee - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/tensor/tensor_dim.cpp b/nntrainer/tensor/tensor_dim.cpp index 4ef7526..4df49e2 100644 --- a/nntrainer/tensor/tensor_dim.cpp +++ b/nntrainer/tensor/tensor_dim.cpp @@ -3,12 +3,12 @@ * Copyright (C) 2020 Jijoong Moon */ /** - * @file tensor_dim.cpp - * @date 22 May 2020 - * @brief This is Tensor Dimension Class - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/tensor/tensor_dim.h b/nntrainer/tensor/tensor_dim.h index 0d9f3d2..7effc4d 100644 --- a/nntrainer/tensor/tensor_dim.h +++ b/nntrainer/tensor/tensor_dim.h @@ -3,12 +3,12 @@ * Copyright (C) 2020 Jijoong Moon */ /** - * @file tensor_dim.h - * @date 22 May 2020 - * @brief This is Tensor Dimension Class - * @see https://github.com/nnstreamer/nntrainer - * @author Jijoong Moon - * @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 + * @bug No known bugs except for NYI items * */ diff --git a/nntrainer/tensor/var_grad.cpp b/nntrainer/tensor/var_grad.cpp index 4a5ec82..019f40e 100644 --- a/nntrainer/tensor/var_grad.cpp +++ b/nntrainer/tensor/var_grad.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file var_grad.cpp - * @date 13 November 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Var_Grad Class for Neural Network * */ diff --git a/nntrainer/tensor/var_grad.h b/nntrainer/tensor/var_grad.h index 67fae98..e754c1b 100644 --- a/nntrainer/tensor/var_grad.h +++ b/nntrainer/tensor/var_grad.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file var_grad.h - * @date 13 November 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Var_Grad Class for Neural Network * */ diff --git a/nntrainer/tensor/weight.cpp b/nntrainer/tensor/weight.cpp index 65f40b8..9b1866a 100644 --- a/nntrainer/tensor/weight.cpp +++ b/nntrainer/tensor/weight.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file weight.cpp - * @date 22 September 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Weight Class for Neural Network * */ diff --git a/nntrainer/tensor/weight.h b/nntrainer/tensor/weight.h index 1c1d662..66876b0 100644 --- a/nntrainer/tensor/weight.h +++ b/nntrainer/tensor/weight.h @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Parichay Kapoor * - * @file weight.h - * @date 22 September 2020 - * @see https://github.com/nnstreamer/nntrainer - * @author Parichay Kapoor - * @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 + * @bug No known bugs except for NYI items + * @brief This is Weight Class for Neural Network * */ diff --git a/test/unittest/unittest_nntrainer_appcontext.cpp b/test/unittest/unittest_nntrainer_appcontext.cpp index e7584e0..4a89390 100644 --- a/test/unittest/unittest_nntrainer_appcontext.cpp +++ b/test/unittest/unittest_nntrainer_appcontext.cpp @@ -2,11 +2,11 @@ /** * Copyright (C) 2020 Jihoon Lee * - * @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 * @bug No known bugs except for NYI items * diff --git a/test/unittest/unittest_nntrainer_lazy_tensor.cpp b/test/unittest/unittest_nntrainer_lazy_tensor.cpp index 0c88a6c..682ac34 100644 --- a/test/unittest/unittest_nntrainer_lazy_tensor.cpp +++ b/test/unittest/unittest_nntrainer_lazy_tensor.cpp @@ -1,13 +1,13 @@ // SPDX-License-Identifier: Apache-2.0 -/* Copyright (C) 2020 Jihoon Lee - * - * @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 - * @bug No known bugs except for NYI items +/** + * Copyright (C) 2020 Jihoon Lee * + * @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 + * @bug No known bugs except for NYI items */ #include diff --git a/test/unittest/unittest_nntrainer_models.cpp b/test/unittest/unittest_nntrainer_models.cpp index cdc1b4f..a6ef1a8 100644 --- a/test/unittest/unittest_nntrainer_models.cpp +++ b/test/unittest/unittest_nntrainer_models.cpp @@ -2,12 +2,12 @@ /** * Copyright (C) 2020 Jihoon Lee * - * @file unittest_nntrainer_models.cpp - * @date 19 Oct 2020 - * @brief Model multi iteration, itegrated test - * @see https://github.com/nnstreamer/nntrainer - * @author Jihoon Lee - * @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 + * @bug No known bugs except for NYI items * */ #include