19 min read Invoking Version 2 Logging Endpoints with Python FastAPI 1. Introduction to FastAPI and Endpoint Invocation What is FastAPI? FastAPI is a modern, high-performance web framework for building APIs with Python 3.7+ based on standard Python type hints. It offers several advantages: * High Performance: FastAPI is designed for speed, leveraging asynchronous programming to handle thousands of requests per
Tutorials 8 min read A Beginner's Guide to aiohttp in Python When working with Python to interact with web APIs, especially when handling multiple requests, you’ve probably encountered some delays. Whether it’s downloading files, scraping data, or making requests to APIs, waiting for each task to finish can slow things down considerably. This is where asynchronous programming steps in
Tutorials 11 min read How To Split Dataset in to Batches (Using Python) Introduction As data volumes continue to grow, one common approach in training machine learning models is batch training. This method involves splitting a dataset into smaller subsets or "batches," which are fed into the model one at a time. In this post, we shall explore three different techniques for splitting