Skip to content
Snippets Groups Projects
Commit 4b0b0485 authored by Baptiste Bauvin's avatar Baptiste Bauvin
Browse files

Added interpret for knn

parent 7fb05794
No related branches found
No related tags found
No related merge requests found
......@@ -96,3 +96,6 @@ def getConfig(config):
except:
return "\n\t\t- K nearest Neighbors with n_neighbors : " + str(config["0"]) + ", weights : " + config[
"1"] + ", algorithm : " + config["2"] + ", p : " + str(config["3"])
def getInterpret(classifier, directory):
return ""
\ No newline at end of file
......@@ -86,3 +86,7 @@ def getConfig(config):
except:
return "\n\t\t- Random Forest with num_esimators : " + str(config["0"]) + ", max_depth : " + str(
config["1"]) + ", criterion : " + config["2"]
def getInterpret(classifier, directory):
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment