├── README.md ├── pylrpredictor ├── __init__.py ├── curvefunctions.py ├── curvemodels.py ├── ensemblecurvemodel.py ├── mcmcmodelplotter.py ├── modelfactory.py ├── terminationcriterion.py └── tests │ ├── __init__.py │ ├── test_curvemodels.py │ └── test_terminationcriterion.py └── setup.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/README.md -------------------------------------------------------------------------------- /pylrpredictor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylrpredictor/curvefunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/pylrpredictor/curvefunctions.py -------------------------------------------------------------------------------- /pylrpredictor/curvemodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/pylrpredictor/curvemodels.py -------------------------------------------------------------------------------- /pylrpredictor/ensemblecurvemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/pylrpredictor/ensemblecurvemodel.py -------------------------------------------------------------------------------- /pylrpredictor/mcmcmodelplotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/pylrpredictor/mcmcmodelplotter.py -------------------------------------------------------------------------------- /pylrpredictor/modelfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/pylrpredictor/modelfactory.py -------------------------------------------------------------------------------- /pylrpredictor/terminationcriterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/pylrpredictor/terminationcriterion.py -------------------------------------------------------------------------------- /pylrpredictor/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylrpredictor/tests/test_curvemodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/pylrpredictor/tests/test_curvemodels.py -------------------------------------------------------------------------------- /pylrpredictor/tests/test_terminationcriterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/pylrpredictor/tests/test_terminationcriterion.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdomhan/pylearningcurvepredictor/HEAD/setup.py --------------------------------------------------------------------------------