Author name: Amshuman Gajula

How to Load Dataset in TensorFlow

This example demonstrates the process of loading, normalizing, and batching the MNIST dataset using TensorFlow. The code showcases best practices for preparing data for training and validation in deep learning models. Key Features: MNIST Dataset: Loads the famous MNIST dataset, which contains images of handwritten digits. Data Normalization: Scales the pixel values of the images …

How to Load Dataset in TensorFlow Read More »

Company name matching in Python from two csv datasets

This Python script matches company names between two datasets using fuzzy matching with the thefuzz  library. It ensures that company names are standardized and finds the best match from another dataset. Key Features: Loads two CSV datasets containing company names. Standardize the names by converting them to lowercase and removing extra spaces. It uses fuzzy …

Company name matching in Python from two csv datasets Read More »

Scroll to Top