
Data Analytics and Engineering professional with 2 years of experience in designing and implementing end-to-end data solutions and scalable ETL pipelines. Expertise in developing BI reporting systems that facilitate data-driven decision-making. Demonstrated success in automating operations to enhance efficiency and achieve measurable results. Proven track record of leading teams to complete projects on time and within budget.
1. SCALABLE CUSTOMER MARS OPERATING SYSTEM(SCMOS):
Client : MARS Incorporated
2. Building a CNN Model with SVHN Dataset:
In this project I tried to create a basic CNN (Convolutional Neural Network) model for SVHN (Street View House Numbers) dataset and tried to achieve maximum accuracy with this basic CNN model. I chose SVHN as it is a real world data set of house numbers from google street view images. SVHN consists of 6,00,000 images. There are 2 types of data in SVHN, one is full numbers which are original image with character level bounding box and other is cropped image which are single character with distractors. And I used cropped images as it is easier to train ML model, increase accuracy and avoid irrelevant information. CNN is network architecture for deep learning algorithm and specially used for image recognition as well as it is highly suitable for computer vision task. Along with all this CNN can automatically learn to extract features from images. We used Relu activation function in hidden layers to achieve non-linearity and softmax at last to predict class of input image. And after 50 epochs I got accuracy of 90.7% for our model.