Blue green deployment approach is based on creating a replica(call it green fleet) of the current production infrastructure(call it blue fleet) and route all the traffic from blue fleet to green… (more…)
Read more »
Introduction In the previous post we saw how a Go service can call a Python service using gRPC. Using gRPC to connect a Go and Python program together can be a great choice, but there’s a complexity price that goes with it. You need to manage one more ser... (more…)
Read more »
Introduction I prefer to use relational (SQL) databases in general since they provide several features that are very useful when working with data. SQLite is a great choice since the database is a single file, which makes it easier to share data. Even tho... (more…)
Read more »
The rules extraction from the Decision Tree can help with better understanding how samples propagate through the tree during the prediction. It can be needed if we want to implement a Decision Tree without Scikit-learn or different than Python language. D... (more…)
Read more »
python -m lets you run modules as scripts. If your module is just one .py file it'll be executed (which usually means code under if __name_...
Read more »