dipankarmedhi.hashnode.devUnderstanding the Machine Learning Project Life cycleMachine Learning Project Life cycle Machine Learning (ML) projects follow a specific life cycle, similar to the DevOps cycle, that guides the development and deployment of ML models. The ML project life cycle consists of several stages that ensure a ...Feb 1, 2023·8 min read
dipankarmedhi.hashnode.devLogging in PythonHey👋, Let us go through the necessary steps required to prepare the logging module. Start by creating a logging_util.py file. import logging def get_logger(name, level): logger = logging.getLogger(name) logger.setLevel(logging.DEBUG) c...Feb 1, 2023·2 min read
dipankarmedhi.hashnode.devRecognize dates from documents using Sliding Window Algorithm & Python OCR.Hey there 👋, Today, let’s solve a text processing problem that asks us to find any “date” present in a text extracted from an image. We are using “easyocr”, a python OCR library to find the text from the images. Let’s move on with the code. Extracti...Jan 7, 2023·3 min read
dipankarmedhi.hashnode.devHow I built a real-time Machine Learning system with Kafka, Elasticsearch, Kibana, and DockerWe will design and build a real-time sentiment analysis and hate detection system. This is a project that I made in the “Turn Language into Action, Natural Language Hackathon by Expert.ai”. I have always been interested in real-time systems and have ...Dec 4, 2022·4 min read
dipankarmedhi.hashnode.devStreaming tweets using Twitter V2 API | TweepyWith v2 Twitter API, things have changed when it comes to streaming tweets. Today we're going to see how to use StreamingClient to stream tweets and store them into an SQLite3 database. About Twitter V2 API For streaming tweets, you are most likely t...Aug 17, 2022·5 min read