- Machine Learning with Swift
- Alexander Sosnovshchenko
- 234字
- 2021-06-24 18:54:59
Evaluating performance of the model with data
The ways to assess the quality of a model's predictions quantitatively are known as metrics. The simplest metric in classification is accuracy, a proportion of correctly classified cases. Accuracy metric can be misleading. Imagine that you have a training set with 1000 samples. 999 of them are of class A, and 1 of class B. Such a kind of dataset is called imbalanced. The baseline (the simplest) solution in this case would be to always predict class A. Accuracy of such a model would then be 0.999, which can be pretty impressive, but only if you don't know about the ratio of classes in the training set. Now imagine that class A corresponds to an outcome of healthy, and class B to cancer, in the medical diagnostic system. It's clear now that 0.999 accuracy is worth nothing, and totally misleading. Another thing to consider is that the cost of different errors can be different. What's worse: to diagnose a healthy person as ill, or an ill person as healthy? This leads to the notion of two types of error (Figure 2.10):
- Type I error, also known as false positive: algorithm predicts cancer, while there is no cancer
- Type II error, also known as, false negative: algorithm predicts no cancer, while there is.

- Arduino入門基礎教程
- Intel FPGA/CPLD設計(基礎篇)
- Istio入門與實戰
- 電腦維護與故障排除傻瓜書(Windows 10適用)
- Android NDK Game Development Cookbook
- Applied Unsupervised Learning with R
- Mastering Delphi Programming:A Complete Reference Guide
- 基于ARM的嵌入式系統和物聯網開發
- 基于Proteus仿真的51單片機應用
- Arduino項目開發:智能生活
- Mastering Machine Learning on AWS
- 單片機項目設計教程
- Mastering Quantum Computing with IBM QX
- Blender 3D By Example
- 微服務實戰