Skip to content
View greatsharma's full-sized avatar

Block or report greatsharma

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
greatsharma/README.md

Hi There 👋

Machine Learning Engineer specializing in computer vision and generative AI. Strong background in developing generative and agentic AI applications, real-time video intelligence and streaming systems, autonomous vehicle solutions, and microservice architectures.

📝Resume


Blogs

And many more ...


Github Stats

Gaurav's github stats


Featured Repos



Pinned Loading

  1. SVD-Image-Compression SVD-Image-Compression Public

    A jupyter notebook showing how images are compressed using Singular Value Decomposition in Python

    Jupyter Notebook 3 2

  2. Particle-Filter Particle-Filter Public

    Python

  3. Custom-HaarCascade-FrontalFace Custom-HaarCascade-FrontalFace Public

    A custom made haar cascade for the frontal face using OpenCV.

    Jupyter Notebook 4

  4. Binary-Search-Tree Binary-Search-Tree Public

    A C++ implementation of Binary Seach Tree.

    C++ 1

  5. Space Optimal Fuzzy Matching: ... Space Optimal Fuzzy Matching: This gist do a fuzzy matching of documents on the basis of levenshtein distance and returns a similarity score. This do the same as my previous gist https://gist.github.com/greatsharma/eeb22285a837a9b29431179451d0ba7f with a time complexity of O(mn) but the space complexity is now reduced to O(m) i.e., linear time, where m and n are documents length which we match.
    1
    import gc
    2
    import numpy as np
    3
    from pprint import pprint
    4
    
                  
    5
    
                  
  6. Adjacency Graph in C++ Adjacency Graph in C++
    1
    #include <iostream>
    2
    #include <conio.h>
    3
    #include <queue>
    4
    #include <stack>
    5