BayesNet/bayesnet/classifiers/TAN.h

21 lines
625 B
C
Raw Normal View History

2024-04-11 16:02:49 +00:00
// ***************************************************************
// SPDX-FileCopyrightText: Copyright 2024 Ricardo Montañana Gómez
// SPDX-FileType: SOURCE
// SPDX-License-Identifier: MIT
// ***************************************************************
#ifndef TAN_H
#define TAN_H
2023-07-22 21:07:56 +00:00
#include "Classifier.h"
namespace bayesnet {
2023-07-22 21:07:56 +00:00
class TAN : public Classifier {
private:
protected:
2023-08-15 13:04:56 +00:00
void buildModel(const torch::Tensor& weights) override;
public:
TAN();
virtual ~TAN() = default;
2023-11-08 17:45:35 +00:00
std::vector<std::string> graph(const std::string& name = "TAN") const override;
};
}
#endif