Skip to content
View bhimrazy's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro

Block or report bhimrazy

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
bhimrazy/README.md

πŸ‘‹ Hi there, I'm Bhimraj Yadav!

πŸ’» Software Engineer | 🧠 AI Engineer | 🌍 Opensource Contributor | 🌐 Research Enthusiast in Computer Vision & Generative AI

πŸš€ About Me

  • πŸ‘¨πŸ»β€πŸ’» Software Engineer at Fetchly.
  • πŸ‘¨β€πŸ’Ό Studio Publisher at Lightning AI.
  • πŸ’‘ Passionate about leveraging ML and AI to solve real-world problems.
  • πŸ”­ Currently learning and experimenting with deep learning frameworks.
  • 🌱 Always excited to collaborate on projects involving AI, healthcare, and innovative technologies.

🌐 Connect with Me

LinkedIn Twitter Instagram GitHub Facebook

πŸ“§ Email: bhimrajyadav977@gmail.com

🌐 Website: bhimraj.com.np

πŸ“Š GitHub Stats

Github Stats

πŸ› οΈ Technologies & Tools

Python PyTorch Lightning Django FastAPI TypeScript JavaScript React/Next.js AWS CI/CD Docker Git

Profile Views

πŸ“Ί YouTube Stats

YouTube Channel Subscribers YouTube Channel Views

Pinned Loading

  1. Image-Recognition-App-using-FastAPI-and-PyTorch Image-Recognition-App-using-FastAPI-and-PyTorch Public

    This is an image recognition application based on the FastAPI framework and PyTorch which uses pretrained DenseNet 121 model to detect the image.

    Jupyter Notebook 22 5

  2. kafka-in-docker-and-python-fastapi kafka-in-docker-and-python-fastapi Public

    Kafka With Python

    Jupyter Notebook 24 7

  3. chat-with-phi-3-vision chat-with-phi-3-vision Public

    Chat with Phi 3.5/3 Vision LLMs. Phi-3.5-vision is a lightweight, state-of-the-art open multimodal model built upon datasets which include - synthetic data and filtered publicly available websites …

    Jupyter Notebook 13 6

  4. receipt-ocr receipt-ocr Public

    Efficient OCR engine for receipt image processing using Python, FastAPI, and Tesseract

    Python 18 6

  5. unet unet Public

    PyTorchUNet : A PyTorch Implementation of UNet Architecture for Semantic Segmentation of Images from scratch.

    Python 5

  6. This Python code defines a function ... This Python code defines a function concurrent_task_executor that allows executing tasks concurrently on a list of data objects using ThreadPoolExecutor from the concurrent.futures module. It includes a progress bar using tqdm to track the completion of tasks. The function is useful for processing data in parallel, improving efficiency when dealing with large datasets.
    1
    import concurrent.futures
    2
    from typing import Any, Callable, List
    3
    from tqdm import tqdm
    4
    
                  
    5
    def concurrent_task_executor(task: Callable[[Any], None], data_list: List[Any], max_workers: int = 32, description: str = None) -> None: