Skip to content

hasMichaels/mooseyfate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

. ├── Decisioner.py ├── README.md ├── TestingEnvironment.py ├── mooseyfate.egg-info │   ├── PKG-INFO │   ├── SOURCES.txt │   ├── dependency_links.txt │   └── top_level.txt ├── runDecisioner.sh ├── setup.py ├── src │   ├── Decisioner.py │   ├── Decisioner.pyc │   ├── Decisioner.py~ │   ├── init.py │   ├── init.pyc │   ├── hypothesis │   │   ├── BraveHypothesis.py │   │   ├── BraveHypothesis.pyc │   │   ├── ChunkyKNNHypothesis.py │   │   ├── ChunkyKNNHypothesis.pyc │   │   ├── ChunkyWimpyHypothesis.py │   │   ├── DrPerceptron.py │   │   ├── DrPerceptron.pyc │   │   ├── Hypothesis.py │   │   ├── Hypothesis.pyc │   │   ├── HypothesisCollection.py │   │   ├── KMeansHypothesis.py │   │   ├── KMeansHypothesis.pyc │   │   ├── KNearestNeighbors.py │   │   ├── KNearestNeighbors.pyc │   │   ├── NoLearnPerceptron.py │   │   ├── NoLearnPerceptron.pyc │   │   ├── OptimusPerceptron.py │   │   ├── OptimusPerceptron.pyc │   │   ├── OptimusPerceptron.py~ │   │   ├── RandoHypothesis.py │   │   ├── RandoHypothesis.pyc │   │   ├── SimpleProbabilityHypothesis.py │   │   ├── SimpleProbabilityHypothesis.pyc │   │   ├── WimpyHypothesis.py │   │   ├── WimpyHypothesis.pyc │   │   ├── init.py │   │   └── init.pyc │   └── lib │   ├── HelperFunctions.py │   ├── HelperFunctions.pyc │   ├── TestingEnvironment.py │   ├── TestingEnvironment.pyc │   ├── init.py │   └── init.pyc └── test ├── DecisionerIntegrationTest.py ├── DecisionerIntegrationTest.pyc ├── DecisionerIntegrationTest.py~ ├── DecisionerTest.py ├── DecisionerTest.pyc ├── init.py ├── init.pyc ├── hypothesis │   ├── BraveHypothesisTest.py │   ├── BraveHypothesisTest.pyc │   ├── ChunkyKNNHypothesisTest.py │   ├── ChunkyKNNHypothesisTest.pyc │   ├── DrPerceptronHypothesisTest.py │   ├── DrPerceptronHypothesisTest.pyc │   ├── KMeansHypothesisTest.py │   ├── KMeansHypothesisTest.pyc │   ├── KNearestNeighborsTest.py │   ├── KNearestNeighborsTest.pyc │   ├── MockHypothesis.py │   ├── MockHypothesis.pyc │   ├── OptimusPerceptronHypothesisTest.py │   ├── OptimusPerceptronHypothesisTest.pyc │   ├── RandoHypothesisTest.py │   ├── RandoHypothesisTest.pyc │   ├── SimpleProbabilityHypothesisTest.py │   ├── SimpleProbabilityHypothesisTest.pyc │   ├── WimpyHypothesisTest.py │   ├── WimpyHypothesisTest.pyc │   ├── init.py │   └── init.pyc └── lib ├── HelperFunctionsTest.py ├── HelperFunctionsTest.pyc ├── init.py └── init.pyc

7 directories, 80 files

About

Hypothesis testing framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.9%
  • Shell 0.1%