Data Science Articles

Sorted By: Most Recent
Giorgos Myrianthous Giorgos Myrianthous
Updated on March 25, 2025

How to Copy a File in Python

Python’s shutil module offers four different ways to copy a file — shutil.copy(), shutil.copyfile(), shutil.copy2() and shutil.copyfileobj(). Here’s how to use each method and which one to pick to copy a file in Python.

Image: Shutterstock / Built In
Nicky Watson Nicky Watson
Updated on March 25, 2025

How DOGE Puts Personal Data Privacy at Risk

The Department of Government Efficiency’s (DOGE) access to troves of personal data carries significant data privacy risks and could have far-reaching consequences. Learn more. 

Image: Shutterstock / Built In
Paul Barba Paul Barba
Updated on March 25, 2025

6 Ways to Combat Bias in Machine Learning

Data often reflects the biases that pervade the larger world. To make machine learning processes more equitable, we need to employ a variety of methods to eliminate bias.

6 Ways to Combat Bias in Machine Learning
Jeff Catlin Jeff Catlin
Updated on March 25, 2025

When Will AI Revolutionize Your Industry?

Domain-specific AI isn’t here quite yet, but deep language learning models like BERT and GPT-3 suggest it’s just a matter of time before your niche sees its own transformative AI innovations.

When Will AI Revolutionize Your Industry?
Susan Maina Susan Maina
Updated on March 24, 2025

Can You Put a For Loop in an If Statement? 

You can put a for loop inside an if statement (and vice versa) in Python using nested control flow. For loops complete an iterative action for a defined number of elements, while if statements test a condition and then complete an action.

Image: Shutterstock / Built In
Wai Foong Ng Wai Foong Ng
Updated on March 24, 2025

Guide to ExcelJS: An Excel Workbook Manager

ExcelJS is a JavaScript package for managing Excel spreadsheets and workbooks. It can be used to read, manipulate and write spreadsheet data to XLSX and JSON.

Image: Shutterstock / Built In
Larry Yang Larry Yang
Updated on March 24, 2025

How DeepSeek Is Accelerating the Growth of AI Infrastructure

DeepSeek opened a path for the AI industry to enhance efficiency, scalability and accessibility of AI models. Here’s what that means for AI infrastructure.

Image: Shutterstock / Built In
Mrinal Tyagi Mrinal Tyagi
Updated on March 24, 2025

Image Segmentation Explained

Image segmentation separates an image into groups of pixels based on variables like proximity to one another, color and brightness for faster processing. Here’s a deep dive into different image segmentation techniques and how each works.

Image: Mrinal Tyagi / Built In
Vikram Gupta Vikram Gupta
Updated on March 24, 2025

How to Undo the Last Commit Using Git Reset Command

The git reset command modifies Git commit history and lets you return to a specific commit with three options: --soft keeps changes staged, --mixed unstages changes and --hard unstages changes and removes them from the working directory.

Image: Shutterstock / Built In
Tara Boyle Tara Boyle
Updated on March 24, 2025

Glob Module in Python: Explained

Glob is a Python module that’s used to search for file path names that match a specific pattern. Here’s how to use it.

Image: Shutterstock / Built In

Related Topics