.. _program_listing_file_lib_TrainingStopper.hpp: Program Listing for File TrainingStopper.hpp ============================================ |exhale_lsh| :ref:`Return to documentation for file ` (``lib/TrainingStopper.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once using namespace std; // look at log likelihoods and see if they vary within a given delta. class TrainingStopper { private: size_t n_samples = 0; double delta_magnitude = 0.0; public: TrainingStopper(); ~TrainingStopper(){} bool stop_training(std::vector log_likelihoods, int sample_idx); };