The Twelve-Factor App

https://12factor.net/ Introduction In the modern era, software is commonly delivered as a service: called web apps, or software-as-a-service. The twelve-factor app is a methodology for building software-as-a-service apps that: The twelve-factor methodology can be applied to apps written in any programming language, Leggi tutto…

ML/AI – Precision and recall

https://en.wikipedia.org/wiki/Precision_and_recall Population:– 12 dogs– 10 catsModel results: 8– 5 dogs (true positive)– 3 cats (false positive)– 7 dogs missed (false positives)– 7 cats excluded (false negatives) Precision: 5/8 (true positives / selected elements)Recall: 5/12 (true positives / relevant elements).