Implement simple model validation

This commit is contained in:
2024-04-22 20:57:40 +02:00
parent f17debc244
commit c2acad151b
3 changed files with 24 additions and 0 deletions

View File

@@ -36,6 +36,8 @@ class Model {
void loadWeights(const std::string& path);
bool validate();
private:
Layers::Input* inputLayer;
Layers::Output* outputLayer;