Last active
February 10, 2019 15:38
-
-
Save abhishek-Kumar009/b48cb30902e0bad2ddd880335beb736e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutest, sigma2test = estimateGaussian(Xtest) | |
ptest = multivariateGaussian(Xtest, mutest, sigma2test) | |
pvaltest = multivariateGaussian(Xvaltest, mutest, sigma2test) | |
F1test, epsilontest = selectThreshHold(yvaltest, pvaltest) | |
print('\nBest epsilon and F1 are\n',epsilontest, F1test) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment