2023-04-27 18:09:53 +02:00
|
|
|
|
2023-01-23 21:58:34 +01:00
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def configure(env):
|
2023-04-27 19:38:50 +02:00
|
|
|
pass
|
2023-01-23 21:58:34 +01:00
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2023-01-26 16:02:45 +01:00
|
|
|
"MLPPVector",
|
|
|
|
"MLPPMatrix",
|
2023-04-16 15:08:11 +02:00
|
|
|
"MLPPTensor3",
|
2023-01-25 01:25:49 +01:00
|
|
|
|
2023-02-12 19:15:49 +01:00
|
|
|
"MLPPUtilities",
|
|
|
|
"MLPPReg",
|
|
|
|
"MLPPActivation",
|
|
|
|
"MLPPCost",
|
|
|
|
"MLPPTransforms",
|
|
|
|
"MLPPStat",
|
|
|
|
"MLPPNumericalAnalysis",
|
|
|
|
"MLPPHypothesisTesting",
|
|
|
|
"MLPPGaussMarkovChecker",
|
|
|
|
"MLPPConvolutions",
|
|
|
|
"MLPPLinAlg",
|
|
|
|
|
|
|
|
"MLPPHiddenLayer",
|
|
|
|
"MLPPOutputLayer",
|
|
|
|
"MLPPMultiOutputLayer",
|
|
|
|
|
|
|
|
"MLPPKNN",
|
|
|
|
"MLPPKMeans",
|
|
|
|
|
|
|
|
"MLPPMLP",
|
|
|
|
"MLPPWGAN",
|
|
|
|
"MLPPPCA",
|
|
|
|
"MLPPUniLinReg",
|
|
|
|
"MLPPOutlierFinder",
|
|
|
|
"MLPPProbitReg",
|
|
|
|
"MLPPSVC",
|
|
|
|
"MLPPSoftmaxReg",
|
|
|
|
"MLPPAutoEncoder",
|
|
|
|
"MLPPTanhReg",
|
|
|
|
"MLPPSoftmaxNet",
|
|
|
|
"MLPPMultinomialNB",
|
|
|
|
"MLPPMANN",
|
|
|
|
"MLPPLogReg",
|
|
|
|
"MLPPLinReg",
|
|
|
|
"MLPPGaussianNB",
|
|
|
|
"MLPPGAN",
|
|
|
|
"MLPPExpReg",
|
|
|
|
"MLPPDualSVC",
|
|
|
|
"MLPPCLogLogReg",
|
|
|
|
"MLPPBernoulliNB",
|
|
|
|
"MLPPANN",
|
|
|
|
|
|
|
|
"MLPPDataESimple",
|
|
|
|
"MLPPDataSimple",
|
|
|
|
"MLPPDataComplex",
|
|
|
|
"MLPPData",
|
|
|
|
|
2023-01-25 02:22:04 +01:00
|
|
|
"MLPPTests",
|
2023-04-26 16:33:20 +02:00
|
|
|
"MLPPMatrixTests",
|
2023-04-27 18:55:26 +02:00
|
|
|
|
|
|
|
"MLPPTestsOld",
|
2023-01-23 21:58:34 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|
|
|
|
|
|
|
|
def get_license_file():
|
|
|
|
return "COPYRIGHT.txt"
|