You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with due attention to http://www.quantware.ups-tlse.fr/ecoleluchon2015/slides/luo.pdf
compute the p-values p0 and p1 for both completions (with the tentative labels 0 and 1 for the new image, respectively);
• if p0 is smaller [intuitively, 0 is a stranger label than 1],
predict 1 with confidence 1 − p0 and credibility p1;
• if p1 is smaller [intuitively, 1 is a stranger label than 0],
predict 0 with confidence 1 − p1 and credibility p0.
must be changed to:
confidence = 1 - p.min(axis=1)
The text was updated successfully, but these errors were encountered:
in
nonconformist/nonconformist/cp.py
Line 169 in cdef0d1
with due attention to http://www.quantware.ups-tlse.fr/ecoleluchon2015/slides/luo.pdf
compute the p-values p0 and p1 for both completions (with the tentative labels 0 and 1 for the new image, respectively);
• if p0 is smaller [intuitively, 0 is a stranger label than 1],
predict 1 with confidence 1 − p0 and credibility p1;
• if p1 is smaller [intuitively, 1 is a stranger label than 0],
predict 0 with confidence 1 − p1 and credibility p0.
must be changed to:
confidence = 1 - p.min(axis=1)
The text was updated successfully, but these errors were encountered: