The Spaghetti Code Behind the AI Boom
How much of the AI technology is built on glued together Python code?
About
Articles associated with this term:
How much of the AI technology is built on glued together Python code?
Large language models are getting more accessible every day with reduced resource requirements and easy to use wrapper libraries. Langchain is one of …
Sometimes it is beneficial to have different requirements file in a project depending on the runtime environment. This post shows how to easily …
This elegant Python library called unitreport allows you to use matplotlib inside unit tests to generate self-contained HTML reports. It creates a …
Let your application tell you what is going on at critical steps with effective usage of logging. In this post, I talk over a simple setup for using …
Pylint is a popular linting tool for the Python programming language, and often it needs to be configured. Pylint looks at several different locations …
You might notice that the in-built Python hash function does not work with dictionaries. That’s for good reason because it can be inconsistent …
There many methods for handling configuration files within a project and it can be difficult to find a solution that works well. In this post, I talk …
Sometimes you might want to run unittests from another Python script and gather its results instead of running python3 -m unittest
manually. Running …
Configuration files can get messy when dealing with a large number of external parameters. The built-in solutions like argparse
might not be scalable …