Add graphviz output to models

This commit is contained in:
2023-07-16 01:20:47 +02:00
parent 29aca0b35f
commit f530e69dae
16 changed files with 99 additions and 25 deletions

View File

@@ -35,4 +35,8 @@ namespace bayesnet {
model.addEdge(className, feature);
}
}
vector<string> TAN::graph(string title)
{
return model.graph(title);
}
}