CBSE 2026 results are out, Mukul scored a perfect 100/100 in Computer ScienceSee all toppers →

KwickCards Artificial intelligence

What are the three outputs?

What are the three outputs?

Python: CBSE AI metrics

Let Python do the maths

What are the three outputs?

TP, TN, FP, FN = 40, 45, 5, 10
acc = (TP + TN) / (TP+TN+FP+FN)
prec = TP / (TP + FP)
rec = TP / (TP + FN)
print(round(acc, 2))
print(round(prec, 2))
print(round(rec, 2))

Let Python do the arithmetic while you focus on the meaning.

This program takes the four confusion-matrix values and calculates accuracy, precision and recall.

Output:

0.85

0.89

0.8

Accuracy = (40 + 45) / 100 = 0.85. Precision = 40 / 45, about 0.89. Recall = 40 / 50 = 0.8. Notice that round(0.8, 2) prints 0.8, not 0.80.

Try changing the values and see how each metric responds. This is great practice for your CBSE AI practical file.

More Artificial intelligence cards

Stuck on this in your own syllabus? Ask Kajal Ma'am in a free demo class.
Book a free demo class

Written by Kajal Mehta (Kajal Ma'am), MCA, teaching computer subjects since 2004. All KwickCards · KwickAcademy

Want a plan that actually fits your board dates?

Ask Kajal Ma'am directly, 20+ years teaching computer science. Free demo class first, no payment.

Talk to Kajal Ma'am on WhatsApp

Or see the Class 12 Computer Science course →

Studying outside India?

We coach CBSE, IGCSE & international students across the globe, one-to-one, in your local time zone.

Visit International →