Add copyright header to source files

This commit is contained in:
2024-04-11 18:02:49 +02:00
parent 503ad687dc
commit 09a1369122
61 changed files with 364 additions and 5 deletions

View File

@@ -1,5 +1,10 @@
#ifndef BASE_H
#define BASE_H
// ***************************************************************
// SPDX-FileCopyrightText: Copyright 2024 Ricardo Montañana Gómez
// SPDX-FileType: SOURCE
// SPDX-License-Identifier: MIT
// ***************************************************************
#pragma once
#include <vector>
#include <torch/torch.h>
#include <nlohmann/json.hpp>
@@ -37,5 +42,4 @@ namespace bayesnet {
virtual void trainModel(const torch::Tensor& weights) = 0;
std::vector<std::string> validHyperparameters;
};
}
#endif
}