@@ -41,36 +41,36 @@ class KNP_DECLSPEC InferenceResultForClass
4141public:
4242 /* *
4343 * @brief Get true positives.
44- * @ret Amount of times model, that is supposed to predict dog, predicted dog when it is a dog.
44+ * @return Amount of times model, that is supposed to predict dog, predicted dog when it is a dog.
4545 */
4646 [[nodiscard]] size_t get_true_positives () const { return true_positives_; }
4747
4848 /* *
4949 * @brief Get false negatives.
50- * @ret Amount of times model, that is supposed to predict dog, predicted not a dog when it is a dog.
50+ * @return Amount of times model, that is supposed to predict dog, predicted not a dog when it is a dog.
5151 */
5252 [[nodiscard]] size_t get_false_negatives () const { return false_negatives_; }
5353
5454 /* *
5555 * @brief Get false positives.
56- * @ret Amount of times model, that is supposed to predict dog, predicted dog when it is not a dog.
56+ * @return Amount of times model, that is supposed to predict dog, predicted dog when it is not a dog.
5757 */
5858 [[nodiscard]] size_t get_false_positives () const { return false_positives_; }
5959
6060 /* *
6161 * @brief Get true negatives.
62- * @ret Amount of times model, that is supposed to predict dog, predicted not a dog when it is a not a dog.
62+ * @return Amount of times model, that is supposed to predict dog, predicted not a dog when it is a not a dog.
6363 */
6464 [[nodiscard]] size_t get_true_negatives () const { return true_negatives_; }
6565
6666 /* *
6767 * @brief Shortcut for getting total votes.
68- * @ret Total votes.
68+ * @return Total votes.
6969 */
7070 [[nodiscard]] size_t get_total_votes () const { return true_positives_ + false_negatives_ + false_positives_; }
7171
7272 /* *
73- * @detail A class to process inference results.
73+ * @details A class to process inference results.
7474 */
7575 class KNP_DECLSPEC InferenceResultsProcessor
7676 {
@@ -79,7 +79,7 @@ class KNP_DECLSPEC InferenceResultForClass
7979 * @brief Process inference results. Suited for classification models.
8080 * @param spikes All spikes from inference.
8181 * @param dataset Dataset.
82- * @return processed inference results for each class.
82+ * @returnurn processed inference results for each class.
8383 */
8484 void process_inference_results (
8585 const std::vector<knp::core::messaging::SpikeMessage> &spikes,
@@ -93,7 +93,7 @@ class KNP_DECLSPEC InferenceResultForClass
9393
9494 /* *
9595 * @brief Get inference results.
96- * @ret Inference results.
96+ * @return Inference results.
9797 */
9898 [[nodiscard]] auto const &get_inference_results () const { return inference_results_; }
9999
0 commit comments