mirror of
https://github.com/Doctorado-ML/bayesclass.git
synced 2025-08-20 10:05:55 +00:00
Complete CPP model integration
This commit is contained in:
32
setup.py
32
setup.py
@@ -18,7 +18,7 @@ setup(
|
||||
name="bayesclass.cppSelectFeatures",
|
||||
sources=[
|
||||
"bayesclass/cSelectFeatures.pyx",
|
||||
"bayesclass/FeatureSelect.cpp",
|
||||
"bayesclass/cpp/FeatureSelect.cpp",
|
||||
],
|
||||
language="c++",
|
||||
include_dirs=["bayesclass"],
|
||||
@@ -30,9 +30,33 @@ setup(
|
||||
name="bayesclass.BayesNet",
|
||||
sources=[
|
||||
"bayesclass/BayesNetwork.pyx",
|
||||
"bayesclass/Network.cc",
|
||||
"bayesclass/Node.cc",
|
||||
"bayesclass/Metrics.cc",
|
||||
"bayesclass/cpp/Network.cc",
|
||||
"bayesclass/cpp/Node.cc",
|
||||
"bayesclass/cpp/Metrics.cc",
|
||||
"bayesclass/cpp/Mst.cc",
|
||||
"bayesclass/cpp/BaseClassifier.cc",
|
||||
"bayesclass/cpp/Ensemble.cc",
|
||||
"bayesclass/cpp/TAN.cc",
|
||||
"bayesclass/cpp/KDB.cc",
|
||||
"bayesclass/cpp/SPODE.cc",
|
||||
"bayesclass/cpp/AODE.cc",
|
||||
],
|
||||
include_dirs=include_paths(),
|
||||
),
|
||||
CppExtension(
|
||||
name="bayesclass.BayesModels",
|
||||
sources=[
|
||||
"bayesclass/BayesModels.pyx",
|
||||
"bayesclass/cpp/Network.cc",
|
||||
"bayesclass/cpp/Node.cc",
|
||||
"bayesclass/cpp/Metrics.cc",
|
||||
"bayesclass/cpp/Mst.cc",
|
||||
"bayesclass/cpp/BaseClassifier.cc",
|
||||
"bayesclass/cpp/Ensemble.cc",
|
||||
"bayesclass/cpp/TAN.cc",
|
||||
"bayesclass/cpp/KDB.cc",
|
||||
"bayesclass/cpp/SPODE.cc",
|
||||
"bayesclass/cpp/AODE.cc",
|
||||
],
|
||||
include_dirs=include_paths(),
|
||||
),
|
||||
|
Reference in New Issue
Block a user