コード例 #1
0
ファイル: romo.py プロジェクト: frsong/pyrl
def terminate(perf):
    p_decision, p_correct = tasktools.correct_2AFC(perf)

    return p_decision >= 0.99 and p_correct >= 0.97
コード例 #2
0
ファイル: rdm_fixed_dt.py プロジェクト: sumwor/pylearning
def terminate(perf):
    p_decision, p_correct = tasktools.correct_2AFC(perf)

    return p_decision >= 0.99 and p_correct >= 0.8