Exemple #1
0
"""
Run test against training data,
Used to test modifications ot learn.py
"""

import learn
learn.test_prediction_alg()
Exemple #2
0
def prediction(num_estimators):
    """
    multiprocessing won't work with lambdas
    """
    return learn.test_prediction_alg(n_estimators=num_estimators)