- Machine Learning Algorithms
- Giuseppe Bonaccorso
- 68字
- 2021-07-02 18:53:26
One-vs-one
The alternative to one-vs-all is training a model for each pair of classes. The complexity is no longer linear (it's O(n2) indeed) and the right class is determined by a majority vote. In general, this choice is more expensive and should be adopted only when a full dataset comparison is not preferable.
If you want to learn more about multiclass strategies implemented by scikit-learn, visit
http://scikit-learn.org/stable/modules/multiclass.html.
http://scikit-learn.org/stable/modules/multiclass.html.
推薦閱讀
- 現代C++編程:從入門到實踐
- Mastering NetBeans
- Raspberry Pi for Python Programmers Cookbook(Second Edition)
- Visual Basic編程:從基礎到實踐(第2版)
- MySQL 8 DBA基礎教程
- 秒懂設計模式
- Python Network Programming Cookbook(Second Edition)
- SAP BusinessObjects Dashboards 4.1 Cookbook
- Learning C++ by Creating Games with UE4
- Docker:容器與容器云(第2版)
- Python數據預處理技術與實踐
- Managing Windows Servers with Chef
- micro:bit軟件指南
- Mastering Responsive Web Design
- ACE技術內幕:深入解析ACE架構設計與實現原理