I learned about Machine Learning (ML), an important field of AI that allows programs to learn from data, whether with supervised learning (when the data input has a known output), unsupervised learning (when unlabeled data is used to find patterns), or reinforcement learning (occurring through trial and error). In ML, true positive and false positive rates during the testing allow us to observe how the predictions made by the model do or do not match the true classifications of the data. A Receiver Operating Characteristic Curve plots true positive rate against false positive rate and reflects how well the model decides how to classify data. The Area Under the ROC Curve (AUROC) is a positive real number less than or equal to 1.0 that represents greater performance of the model when the number is closer to 1.0.

classAI-25-07-17