curiousmind.hashnode.devCommon Mistakes and Fixes for Installing Python EnvironmentsI am learning about Agentic AI, Today I finished my implementation of crewAI. CrewAI is framework for developing the agent which without human intervention are executing the task. When you are coming back to development after long time python environ...Feb 6, 2025·2 min read
curiousmind.hashnode.devExploring the Future of AI Virtual Reps with Bland.aiI heard about Bland.ai in a AI Chat: ChatGPT & AI News podcast by Jaeden Schafer. In the past, I worked on automating sales calls to collect leads for selling internet services to customers. So, I was curious to see how AI can now help us automate wo...Sep 2, 2024·3 min read
curiousmind.hashnode.devHow Training and Fine-Tuning AI Models DifferThe Distinction Between Training and Fine-Tuning Models There can sometimes be confusion surrounding the terms "training a model" and "fine-tuning a model". While they may seem interchangeable, they represent distinct stages within the machine learni...May 26, 2024·2 min read
curiousmind.hashnode.devHow to Fix ImportError: Trainer with PyTorch Needs AccelerateWhile working with Transformers in a Google Colab environment, I always encounter an ImportError related to the accelerate library. ImportError: Using the Trainer with PyTorch requires accelerate>=0.21.0: Please run pip install transformers[torch] or...May 26, 2024·1 min read
curiousmind.hashnode.devHow to work with hugging face datasetsTo effectively fine-tune a model on the GLUE SST2 dataset from Hugging Face, I'll start with an exploratory analysis to gain insights into the data's characteristics. Let's load the dataset Get detailed information about the dataset. How many rows ...May 24, 2024·1 min read