BayesNet/main.cc

76 lines
2.5 KiB
C++

#include <iostream>
#include <string>
#include <torch/torch.h>
#include "ArffFiles.h"
#include "Network.h"
#include "CPPFImdlp.h"
using namespace std;
vector<mdlp::labels_t> discretize(vector<mdlp::samples_t>& X, mdlp::labels_t& y)
{
vector<mdlp::labels_t>Xd;
auto fimdlp = mdlp::CPPFImdlp();
for (int i = 0; i < X.size(); i++) {
fimdlp.fit(X[i], y);
mdlp::labels_t& xd = fimdlp.transform(X[i]);
cout << "X[" << i << "]: ";
auto mm = minmax_element(xd.begin(), xd.end());
cout << *mm.first << " " << *mm.second << endl;
Xd.push_back(xd);
}
return Xd;
}
int main()
{
auto handler = ArffFiles();
handler.load("iris.arff");
// Get Dataset X, y
vector<mdlp::samples_t>& X = handler.getX();
mdlp::labels_t& y = handler.getY();
// Get className & Features
auto className = handler.getClassName();
vector<string> features;
for (auto feature : handler.getAttributes()) {
features.push_back(feature.first);
}
// Discretize Dataset
vector<mdlp::labels_t> Xd = discretize(X, y);
// Build Network
auto network = bayesnet::Network();
network.fit(Xd, y, features, className);
cout << "Hello, Bayesian Networks!" << endl;
cout << "Nodes:" << endl;
for (auto [name, item] : network.getNodes()) {
cout << "*" << item->getName() << " -> " << item->getNumStates() << endl;
cout << "-Parents:" << endl;
for (auto parent : item->getParents()) {
cout << " " << parent->getName() << endl;
}
cout << "-Children:" << endl;
for (auto child : item->getChildren()) {
cout << " " << child->getName() << endl;
}
}
cout << "Root: " << network.getRoot()->getName() << endl;
network.setRoot(className);
cout << "Now Root should be class: " << network.getRoot()->getName() << endl;
cout << "CPDs:" << endl;
auto nodes = network.getNodes();
auto classNode = nodes[className];
for (auto it = nodes.begin(); it != nodes.end(); it++) {
cout << "* Name: " << it->first << " " << it->second->getName() << " -> " << it->second->getNumStates() << endl;
cout << "Parents: ";
for (auto parent : it->second->getParents()) {
cout << parent->getName() << " -> " << parent->getNumStates() << ", ";
}
cout << endl;
auto cpd = it->second->getCPT();
cout << cpd << endl;
}
cout << "PyTorch version: " << TORCH_VERSION << endl;
return 0;
}