Day 16/100 — Exploring More of Pandas 📊 Today was all about learning how data can be grouped, reshaped, and combined in smarter ways. 🔹 AI/ML: Continued learning Pandas and explored some very useful data handling concepts like groupby and aggregation methods, reshaping methods, and merging & concatenation. These topics made it clearer how powerful Pandas is when working with structured data — especially when you need to organize, combine, and summarize information efficiently. Every new method feels like another useful tool added to my data handling toolkit. Slowly but surely, the pieces are starting to fit together. #100DaysOfCode #Python #Pandas #DataScience #AI #MachineLearning #CodingJourney
Learning Pandas Data Handling Concepts
More Relevant Posts
-
It’s been a while… but I’m back and still learning 🚀 Today in my AI/ML journey, I explored NumPy, and I’m starting to see why it’s so important. NumPy is a Python library mainly used for working with numbers and arrays (a way of storing multiple values). It makes calculations faster and easier compared to normal Python lists. Some of its uses I came across: - Performing fast mathematical operations - Working with arrays and large datasets - Supporting data analysis and machine learning tasks A simple example: import numpy as np arr = np.array([1, 2, 3, 4]) print(arr * 2) This will multiply all the numbers in the array at once → [2, 4, 6, 8] That’s what makes NumPy powerful—you can do many calculations at once. Still learning… one step at a time. #AI #MachineLearning #NumPy #LearningInPublic #M4ACE #TechJourney
To view or add a comment, sign in
-
How NumPy Taught Me to Stop Writing for Loops for Simple Tasks 💻 Today, I spent time revisiting NumPy, and one small task shifted how I approach repetition in Python. I had two lists of numbers and wanted to add them together. At first I wrote a for loop and manually added each element, but it felt slow and repetitive, even for a small set of numbers. Then I converted the lists into NumPy arrays and used a single operation to add them. Just one line replaced several lines of loop code, and the result was immediate. That simple moment made me realize something important: when a tool is built for efficiency, repeating work manually isn’t just slower, it keeps you thinking harder than you need to. In machine learning and AI, we spend a lot of time preparing data. NumPy helps remove repetitive overhead so we can focus on patterns and modeling instead of calculation mechanics. Revisiting the basics today didn’t just refresh my skills, it changed how I see repetition in my code. #M4ACElearningchallenge #learningInPublic #MachineLearning #AI #NumPy #DataScience #BeginnersInML
To view or add a comment, sign in
-
-
This image captures data science in its most honest form: not a single skill, but a layered synthesis of thinking, tools, and context. It shows that knowing statistics alone is just theory, and coding alone is just execution—but when combined with models and real-world understanding, they transform into true intelligence that can solve meaningful problems. The quiet truth here is that data science is less about algorithms and more about connecting knowledge to impact. #DataScience #MachineLearning #Analytics #AI #Python
To view or add a comment, sign in
-
-
Python lists felt like something I had to learn because the tutorial said so There’s something brilliant about lists. you throw in a bunch of related things (numbers, names and different features), keep their order, and then easily add, remove, slice, or transform them on the go. It really does feel like a super-flexible notebook you can rearrange however you want. In machine learning and AI, lists are incredibly valuable as a starting point. Before jumping into Pandas DataFrames or NumPy arrays, they teach you the core logic of handling data. Whether I’m mocking up a quick dataset, collecting prediction outputs, or grouping similar data points, lists give me a clean and flexible way to experiment without the code becoming a mess. What I love most is their simplicity. One minute they’re holding basic numbers, the next they’re helping me reshape a small dataset to better understand how an algorithm actually works. Today reminded me that the basics aren’t something you “grow out of.” They’re the building blocks you keep using forever. #M4ACElearningchallenge #learninginpublic #Machinelearning #AI #lists #Python #MentorshipForAcceleration
To view or add a comment, sign in
-
-
Built my first AI-based RAG (Retrieval-Augmented Generation) application 🚀 It’s a simple idea: 📄 Upload a PDF → 💬 Ask questions → 🤖 Get answers grounded in that document While building this, I got hands-on with how RAG actually works behind the scenes: • Extracting text from PDFs (including OCR for scanned files) • Chunking and generating embeddings • Storing vectors in a database for semantic search • Retrieving relevant context and generating answers using an LLM Tech stack: Python, FastAPI, Streamlit, Qdrant, Sentence Transformers, OpenRouter One key learning for me: 👉 The real challenge isn’t just generating answers, but retrieving the right context Still learning and improving, but this was a great first step into building AI systems. 🎥 Sharing a quick demo below 🔗 GitHub: https://lnkd.in/g4nTZu4S Would love your feedback! #AI #RAG #MachineLearning #LLM #Python #BuildInPublic
To view or add a comment, sign in
-
Most people overcomplicate AI… but the foundation is actually simple. You don’t need to learn everything to get started. You just need to focus on the skills that actually matter 👇 👉 Python – the language behind most AI tools 👉 Data understanding – because AI runs on data 👉 Logic & problem-solving – the real game changer That’s it. The mistake most beginners make? Jumping into advanced topics without mastering the basics. And that leads to confusion… and quitting. At Algo Academy, we simplify this journey — so you build strong fundamentals first, then grow step by step into AI. Because strong basics = long-term success. 💬 Which skill are you focusing on right now? 📌 Save this post to come back later 📩 DM “SKILLS” if you want a clear roadmap #LearnAI #Python #DataScience #FutureSkills #Upskilling #algoacademy
To view or add a comment, sign in
-
-
🚀 The real power of Python in AI isn’t just models… it’s speed. Most people write loops. Smart people use vectorization. While working on data tasks, I realized: ❌ Traditional loops slow everything down ❌ Manual processing wastes hours But with tools like NumPy, Pandas & AI frameworks: ✅ Boolean indexing replaces loops ✅ Broadcasting handles large data instantly ✅ Vectorized logic runs across entire datasets And the result? 📊 2 hours of work → less than 20 seconds This is where Python + AI truly shines — not just building models, but accelerating everything around them. Still learning, but exploring this ecosystem has completely changed how I approach data. If you're working with data, start thinking beyond loops. 💬 Comment “Python” if you want practical examples of these tricks. #Python #AI #DataScience #NumPy #Pandas #MachineLearning #Automation #LearningJourney
To view or add a comment, sign in
-
-
Learning RAG #2: Today I learned two important concepts in RAG: Chunking and Embeddings 👉 What is Chunking? Chunking means breaking a large document into smaller pieces (chunks). This helps the system process and search information more efficiently. 👉 Why Chunking is needed? • Large documents are hard for models to process • Smaller chunks improve search accuracy • Helps in better retrieval of relevant information 👉 What are Embeddings? Embeddings convert text into numerical vectors so machines can understand and compare meaning. 👉 Simple idea: Text → Vector → Similarity Search 👉 Why Embeddings are important? • Helps find similar content • Used in vector databases like Qdrant, ChromaDB • Core part of RAG retrieval 💡 Key takeaway: Chunking + Embeddings = Better Retrieval in RAG Looking forward to learning how vector databases use these embeddings next! #AI #RAG #MachineLearning #Embeddings #Python #AgenticAI
To view or add a comment, sign in
-
-
🚀 Day 17 of My Generative & Agentic AI Journey! Today’s focus was on Passing Arguments to Functions and understanding how different data types behave. Here’s what I learned: 🔤 Passing Strings vs Lists: • Strings are immutable → cannot be changed inside a function 👉 Any modification creates a new value • Lists are mutable → can be updated inside a function 👉 Changes reflect outside the function as well 📥 Types of Arguments: • Positional Arguments → Values are passed in order 👉 Example: first value goes to first parameter, second to second • Keyword Arguments → Values are passed using parameter names 👉 Order doesn’t matter here ⚙️ *args and **kwargs: • *args → Used to pass multiple positional arguments 👉 Treated as a tuple inside the function • **kwargs → Used to pass multiple keyword arguments 👉 Treated as a dictionary inside the function 💡 Key takeaway: Understanding how arguments work helps in writing flexible and reusable functions. Getting more comfortable with writing dynamic and scalable Python code 🚀 #Day17 #Python #GenerativeAI #AgenticAI #LearningJourney #BuildInPublic
To view or add a comment, sign in
-
Just shipped a Retrieval-Augmented Generation (RAG) project and honestly? It's been one of the most interesting things I've worked on. The concept is straightforward: → Feed it documents → Use embeddings for semantic search → Retrieve relevant context from a vector database → Generate answers grounded in your actual data But pulling it all together taught me something important: most "smart" AI systems aren't magic. They're smart pipelines. What I used: • Python • Embeddings for semantic search • ChromaDB (vector database) • A full RAG pipeline This feels like a genuine step toward building real AI applications instead of just experimenting with models. If you've built something similar, I'd love to hear how you approached the trickier parts—especially around retrieval and context quality. GitHub : https://lnkd.in/gwmqvvuT #MachineLearning #AI #LLMs #RAG #Python
To view or add a comment, sign in
Explore related topics
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development