- 7 Frameworks To Build A REST API In Go
- Building a RESTful API with Golang: Gorilla mux example
- How I structure production grade REST API’s in Golang: Chi example
- Building RESTful web API service using Golang, chi, and MySQL: Another Chi example
My online tech scrapbook where I keep my notes in case I need to look them up later
Thursday, November 29, 2018
Articles About Building REST API Servers in Golang
Monday, November 26, 2018
Vue Date Pickers
Blog article listing date pickers for Vue: https://madewithvuejs.com/blog/best-vue-js-datepickers
Wednesday, August 8, 2018
When to Hire a CTO
Excellent Article: https://www.techinasia.com/right-time-to-hire-cto
Friday, August 3, 2018
Monday, July 30, 2018
Saturday, May 12, 2018
Wednesday, February 21, 2018
SKLearn Metrics Precision, Recall, F-Score and Support
Precision:
Support: Number of occurrence in each category
Reference: http://scikit-learn.org/stable/modules/generated/sklearn.metrics.precision_recall_fscore_support.html
- If it's 1 it means all positives are correct
- It may be that many other positives for this class are wrongly labelled as negative (and categorised in other classes), but that's not measured in this metric
- The lower it is, it means more entries from other categories are being mis-classified here
- If it's 1 it means it managed to find all the positive samples
- It may be that it wrongly classified other samples for other categories here, but that's not measured in this metric
- The lower it is, it means more entries from this category are being mis-classified into other categories
Support: Number of occurrence in each category
Reference: http://scikit-learn.org/stable/modules/generated/sklearn.metrics.precision_recall_fscore_support.html
Subscribe to:
Posts (Atom)