Skip to content
View ajith05's full-sized avatar

Block or report ajith05

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
ajith05/README.md

Hi there 👋

I am a graduate student studying for a Master of Computer Science (MCS) degree at North Carolina State University (NCSU), Raleigh, USA.

I worked for 3 years as a data scientist, a machine learning engineer, and a software engineer. My interests are in Artificial Intelligence (AI), Machine Learning (ML), Python, and Backend Engineering.

I worked at Elastiq as a software engineer where I implemented multiple applied AI solutions. Elastiq is an early-stage B2B AI startup focusing on both generative AI and applied AI solutions.

Before joining Elastiq, I was working at Mavenir Systems (India) as a Member of Technical Staff - I (R&D) where I implemented Reinforcement Learning (RL) solutions.

Pronouns: He/Him/His

Check out my personal website and my GitHub Gists

How to reach me:

Pinned Loading

  1. SmartNote-2.0 SmartNote-2.0 Public

    Forked from GenAI4GenZ/SmartNote-2.0

    SmartNote is a release note generation tool aimed at generating release notes personalized to your project domain and audience type.

    Jupyter Notebook

  2. AL-foundation-models AL-foundation-models Public

    Forked from sanketx/AL-foundation-models

    Active Learning in the era of Foundation Models

    Python

  3. vibe-job-bot vibe-job-bot Public

    A discord bot that posts job updates.

  4. This script is to clear all __pycach... This script is to clear all __pycache__ folders within all drives on a windows machine. This does not require any external libraries
    1
    '''
    2
    This is a helper script to delete all __pycache__ folders
    3
    '''
    4
    from ctypes import windll
    5
    from pathlib import Path
  5. Batch script to print the IP of an s... Batch script to print the IP of an ssh host given the name of host is known
    1
    @echo off
    2
    setlocal
    3
    
                  
    4
    if [%~1]==[] (
    5
        echo No input given to the script
  6. Batch script to print ssh hosts defi... Batch script to print ssh hosts defined in both the user-specific and the system-wide ssh config files on windows
    1
    @echo off
    2
    setlocal
    3
    
                  
    4
    set user_config=%USERPROFILE%\.ssh\config
    5
    echo.