Maximilian Berkmann
Maximilian Berkmann
I've noticed that the cross-validation example uses `macroAverage`: ```js var macroAverage = new limdu.utils.PrecisionRecall(); limdu.utils.partitions.partitions(dataset, numOfFolds, function(trainSet, testSet) { console.log("Training on "+trainSet.length+" samples, testing on "+testSet.length+" samples"); var classifier =...
After doing some checks on my `limbdu` wrapper, and seeing that the `Accuracy` fields don't return what one would except knowing `TP`, `TN` and `count`'s values (for both `microAverage` and...
After following the example on cross-validation on a project, I've noticed that both `microAverage` and `macroAverage` have some fields left as empty or (whichever was the default value in the...
After running unit tests on a project that uses `limdu`, I noticed that once the classifiers `train` method is called, the dataset is being mutated. What I mean by this...
This is a great tool which (in my opinion) is missing: - text alignment - multi-row/column cell spanning - having more border options
Hi, I saw your post on Quora: https://www.quora.com/How-can-I-find-people-to-contribute-to-my-open-source-Github-project/draft I'm the one who said: " Post in Open Source (and eventually on CompSci/Soft Eng) groups/communities to get people to eventually contribute....
Going through the code to get it to work in TS, I've noticed `phrase < minCharLength` and inferred `phrase` was of type `string` while `minCharLength` is of type `number` and...