Digitalisierte Elektroverteilung zur permanenten Verbraucherüberwachung
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Evaluator.h 382B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include <memory>
  3. #include "MLAnalyzer.h"
  4. #include "MLLinReg.h"
  5. #include "MLAlert.h"
  6. #include <vector>
  7. #include <memory>
  8. class Evaluator
  9. {
  10. private:
  11. //Enqueued Algorithms to perform data analysis
  12. std::vector<std::unique_ptr<MLAnalyzer>> MLAlgorithms;
  13. public:
  14. Evaluator();
  15. //Gets called if new data is available
  16. std::vector<MLAlert> evaluate();
  17. };