Closed WeichenXu123 closed 6 years ago
Add additional method test for some ML algos.
In this PR, I add associationRules in FPGrowth and findSynonyms. After the design is accepted, I will add other methods later.
associationRules
FPGrowth
findSynonyms
Add an interface in BenchmarkableAlgorithm:
BenchmarkableAlgorithm
def testAdditionalMethods(ctx: MLBenchContext, model: Transformer): Map[String, () => _]
I have run the test manually. Everything is clean.
LGTM The tests worked when run locally. Thanks @WeichenXu123 ! Merging with master
Add additional method test for some ML algos.
In this PR, I add
associationRules
inFPGrowth
andfindSynonyms
. After the design is accepted, I will add other methods later.Add an interface in
BenchmarkableAlgorithm
: