RAG with LangChain: answering questions from blog posts using LLMs!
https://phgelado.medium.com/rag-with-langchain-answering-questions-from-blog-posts-using-llms-1864871ec7c7
https://phgelado.medium.com/rag-with-langchain-answering-questions-from-blog-posts-using-llms-1864871ec7c7
Medium
RAG with LangChain: answering questions from blog posts using LLMs!
RAG (Retrieval Augmented Generation) is a technique that leverages the hidden layer representations of LLM (Large Language Models) to…
ML From Scratch Part 02 — Linear & Polynomial Regression In-Depth
https://medium.com/@rohit-krishna/ml-from-scratch-part-02-linear-polynomial-regression-in-depth-cc1235877a38
https://medium.com/@rohit-krishna/ml-from-scratch-part-02-linear-polynomial-regression-in-depth-cc1235877a38
Medium
ML From Scratch Part 02 —
Linear & Polynomial Regression
In-Depth
Linear & Polynomial Regression
In-Depth
Linear Regression is a simple ML Algorithm, but also it’s a stepping stone into the ocean of Machine Learning & Deep Learning. It’s…
Mastering Python Decorators for Enhanced Code Functionality
https://scriptserpent.carlosrojas.dev/mastering-python-decorators-for-enhanced-code-functionality-64d538491d38
https://scriptserpent.carlosrojas.dev/mastering-python-decorators-for-enhanced-code-functionality-64d538491d38
Medium
Mastering Python Decorators for Enhanced Code Functionality
Python decorators are a powerful and elegant feature for modifying the behavior of functions or methods. They provide a clear, readable way…
Why Google Is Deleting Your Queries And How To Nail A Phone Interview
https://medium.com/pipeline-a-data-engineering-resource/why-google-is-deleting-your-queries-and-how-to-nail-a-phone-interview-962e5f998dd9
https://medium.com/pipeline-a-data-engineering-resource/why-google-is-deleting-your-queries-and-how-to-nail-a-phone-interview-962e5f998dd9
Medium
Why Google Is Deleting Your Queries And How To Nail A Phone Interview
The Best of Pipeline — February 2024.
PYTHON — Pair Programming In Python
https://medium.com/paulacy-pulse/python-pair-programming-in-python-385d6db26b93
https://medium.com/paulacy-pulse/python-pair-programming-in-python-385d6db26b93
Medium
PYTHON — Pair Programming In Python
Pair programming is a technique in which two developers work together at one workstation to accomplish a task. The two developers switch between the roles of the “driver” and the “navigator.” The…
PYTHON — Creating Hidden Websites With Python
https://medium.com/paulacy-pulse/python-creating-hidden-websites-with-python-8798820ae404
https://medium.com/paulacy-pulse/python-creating-hidden-websites-with-python-8798820ae404
Medium
PYTHON — Creating Hidden Websites With Python
In web scraping, there are scenarios where the information you want to extract is not easily accessible as it may be hidden behind password protection or dynamically generated. In this lesson, we…
PYTHON — Understanding Enumerate In Python
https://medium.com/paulacy-pulse/python-understanding-enumerate-in-python-628e48cbc280
https://medium.com/paulacy-pulse/python-understanding-enumerate-in-python-628e48cbc280
Medium
PYTHON — Understanding Enumerate In Python
In Python, the enumerate() function is a built-in function, which means it does not need to be imported to use it. The function takes an object that supports iteration as a parameter. The enumerate()…
PYTHON — Implementing Stack In Python
https://medium.com/paulacy-pulse/python-implementing-stack-in-python-091bedf1ccc5
https://medium.com/paulacy-pulse/python-implementing-stack-in-python-091bedf1ccc5
Medium
PYTHON — Implementing Stack In Python
In this tutorial, you’ll learn how to implement a stack in Python. We’ll cover different implementations including using a list and the collections.deque module. The stack data structure follows a…
PYTHON — Assigning Default Values In Python
https://medium.com/paulacy-pulse/python-assigning-default-values-in-python-2eda264c4585
https://medium.com/paulacy-pulse/python-assigning-default-values-in-python-2eda264c4585
Medium
PYTHON — Assigning Default Values In Python
In Python, you can assign default values to function parameters. This means that if the function is called without providing a value for a particular parameter, it will use the default value assigned…
PYTHON — Preparing Your Package For Publication In Python
https://medium.com/paulacy-pulse/python-preparing-your-package-for-publication-in-python-22873c6701c8
https://medium.com/paulacy-pulse/python-preparing-your-package-for-publication-in-python-22873c6701c8
Medium
PYTHON — Preparing Your Package For Publication In Python
Publishing your Python package to PyPI involves a few important steps, one of which is creating a setup.py file. This file contains essential information about your package, including its name…
PYTHON — Migrating Sqlite With Python
https://medium.com/paulacy-pulse/python-migrating-sqlite-with-python-59b24d689af6
https://medium.com/paulacy-pulse/python-migrating-sqlite-with-python-59b24d689af6
Medium
PYTHON — Migrating Sqlite With Python
When working with a Django project, it’s crucial to understand the folders and files that make up the project. This lesson focuses on migrations and SQL databases, providing insights and a…
PYTHON — Python String Contains Substring Overview
https://medium.com/paulacy-pulse/python-python-string-contains-substring-overview-05885eb66e3f
https://medium.com/paulacy-pulse/python-python-string-contains-substring-overview-05885eb66e3f
Medium
PYTHON — Python String Contains Substring Overview
Checking if a Python string contains a substring is a common task when working with text data. In this tutorial, you’ll learn the most Pythonic way to accomplish this using the membership operator…
PYTHON — Developing An Ios App With Python
https://medium.com/paulacy-pulse/python-developing-an-ios-app-with-python-0a1af98e686d
https://medium.com/paulacy-pulse/python-developing-an-ios-app-with-python-0a1af98e686d
Medium
PYTHON — Developing An Ios App With Python
In this tutorial, I will guide you through the process of packaging your Python Kivy application for iOS. Packaging an application for iOS is more complex than for Android. The most up-to-date…
PYTHON — Other Useful Features In Python
https://medium.com/paulacy-pulse/python-other-useful-features-in-python-5c3282ddd762
https://medium.com/paulacy-pulse/python-other-useful-features-in-python-5c3282ddd762
Medium
PYTHON — Other Useful Features In Python
In this lesson, we will explore some of the other useful features of the Repl.it online IDE. These features include the ability to work with files, install external packages, use auto-format…
PYTHON — Improving Code Quality With Python Linters
https://medium.com/paulacy-pulse/python-improving-code-quality-with-python-linters-f2f5840389b0
https://medium.com/paulacy-pulse/python-improving-code-quality-with-python-linters-f2f5840389b0
Medium
PYTHON — Improving Code Quality With Python Linters
Python linters are essential tools for maintaining code quality and adhering to PEP 8 standards. In this tutorial, you will learn how to use linters, debuggers, and autoformatters to ensure your code…
PYTHON — Python 3.12 Cpython Internals
https://medium.com/paulacy-pulse/python-python-3-12-cpython-internals-99f6d3e19f35
https://medium.com/paulacy-pulse/python-python-3-12-cpython-internals-99f6d3e19f35
Medium
PYTHON — Python 3.12 Cpython Internals
CPython is the default implementation of the Python programming language. In this article, we’ll explore some of the changes happening inside the CPython interpreter in Python 3.12. Python is an…
PYTHON — Understanding Linked Lists In Python
https://medium.com/paulacy-pulse/python-understanding-linked-lists-in-python-cbf50f87eb12
https://medium.com/paulacy-pulse/python-understanding-linked-lists-in-python-cbf50f87eb12
Medium
PYTHON — Understanding Linked Lists In Python
Linked lists are a fundamental data structure in computer science and are widely used in various applications. In this article, we will explore the concept of linked lists, compare them with arrays…
PYTHON — Python Basics Functions And Loops Summary
https://medium.com/paulacy-pulse/python-python-basics-functions-and-loops-summary-486862bd198e
https://medium.com/paulacy-pulse/python-python-basics-functions-and-loops-summary-486862bd198e
Medium
PYTHON — Python Basics Functions And Loops Summary
In this article, we will summarize the key concepts covered in the “Python Basics: Functions and Loops” video course. This course delves into two fundamental concepts in programming: functions and…