Python

AI Learning Python

AI & Python #23: How to Tokenize Text in Python

Photo by Laurentiu Iordache on Unsplash Tokenization is a common task we have when working with text data. It consists of splitting an entire text into small units, also known as tokens. Most Natural Language Processing (NLP) projects have tokenization as the first step because it’s the foundation for developing good models and helps us better […]

AI & Python #23: How to Tokenize Text in Python Read Post »

AI Learning Python

Behind AI #4: What is NLP And Why is Important in AI

Via Pixabay Natural language processing (NLP) is a subfield of AI that uses machine learning to enable computers to understand and communicate with human language. NLP is used in various AI applications like chabots. Today, we’ll learn some common NLP techniques. We’ll focus on the concepts. That said, I added some lines of Python code

Behind AI #4: What is NLP And Why is Important in AI Read Post »

AI Learning Python

AI & Python #22: Yes, Python Has a Built-In Database. Here’s How to Use It.

Via Shutterstock Believe it or not, the moment you installed Python on your computer, you also installed other wonderful tools. One of them is SQLite. SQLite is an embedded, file-based relational database management system (RDBMS) that can be used in our Python applications without having to install any additional software. Instead, we only need to

AI & Python #22: Yes, Python Has a Built-In Database. Here’s How to Use It. Read Post »

AI Learning Python

AI & Python #18: AI Enthusiasts Should Move from Excel to Python. Here’s How

We’re continuing with out Behind AI series. I’ve just added a tab to the Artificial Corner site where you can follow all the editions of this series. Click here to see it. As someone who has been working with Excel for many years, I know that the idea of learning things you can already do

AI & Python #18: AI Enthusiasts Should Move from Excel to Python. Here’s How Read Post »

AI Learning Python

AI & Python #17: How to Convert a Python Script to an Executable File (.exe)

Although running a Python script using the terminal or your favorite text editor is straightforward, there are some situations in which you will prefer to hide all the code written in the script (.py) inside an executable file (.exe). Maybe you need to send the script to someone who doesn’t code at all or you

AI & Python #17: How to Convert a Python Script to an Executable File (.exe) Read Post »

Scroll to Top