Dear all,<div><br></div><div>I've a problem with classifier's conditional attributes (it is possibly due to a bad command understanding, by myself, I admit!):</div><div><br></div><div>clf = LinearCSVMC(C=1, probability=1, enable_ca=['probabilities'])</div>
<div>cvte = CrossValidation(clf, NFoldPartitioner(cvtype = 1), enable_ca=['stats', 'repetition_results'])</div><div>train_err = cvte(evds)</div><div><br></div><div>When I try to see inside the conditional attributes of my trained classifier clf with the command below</div>
<div>probabilities = clf.ca.probabilities</div><div><br></div><div>I have this exception</div><div>UnknownStateError: Unknown yet value of probabilities</div><div><br></div><div>Instead using a classifier defined as:</div>
<div>clf = LinearCSVMC(C=1, probability=1, enable_ca=['probabilities', 'training_stats'])</div><div><br></div><div>I could store my probabilities.</div><div><br></div><div>Am I doing all the things well?</div>
<div><br></div><div>Thank you</div><div>Roberto</div><div><br></div>