Skip to content
View iamvisheshsrivastava's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro

Block or report iamvisheshsrivastava

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

Typing SVG

Profile Views

About MeTech Stack & SkillsGitHub TrophiesFeatured ProjectsGitHub StatsLet's Connect!


Snake animation

🚀 About Me

  • 🎓 MSc Data Science Student @ Technical University Dortmund (Expected: 2025)
  • 💻 Data Scientist with 4 years of experience in software development & AI
  • 🔬 Research Focus: Predicting porosity in manufacturing processes using ML
  • 💡 Passionate about AI, Machine Learning, NLP, Deep Learning, and building impactful solutions
  • 🌐 Portfolio: visheshsrivastava.com

🎉 Fun Fact

“Strive not to be a success, but rather to be of value.” – Albert Einstein

  • I love tinkering with new AI tools & frameworks.
  • I enjoy reading about quantum computing and futuristic technology.
  • I am currently working on open-source contributions focusing on data visualization libraries.


🛠 Tech Stack & Skills

Programming Languages:

  • Python
  • R
  • C#
  • SQL
  • Java

AI/ML Frameworks:

  • TensorFlow
  • PyTorch
  • LangChain
  • Transformers

Tools & Services:

  • Docker
  • Git
  • ElasticSearch
  • OpenAI API

Cloud Platforms:

  • AWS
  • Azure

Data Science Expertise:

  • Predictive Modeling
  • NLP
  • Time Series Analysis
  • Generative AI

🏆 GitHub Trophies

GitHub Trophies



🏅 Achievements & Recognitions

  • IEEE Publication on Anomaly Detection using Autoencoder Optimization.
  • Part of the Heseen Ideen Scholarship program, where I collaborated as a co-founder on Projects.ai, an innovative AI-driven tool designed for project automation.


🖥️ Featured Projects

Project Description Tech Stack Repo
Sustainability Score Evaluator Built a web app for real-time sustainability scoring C#, ASP.NET, Google API Repo Link
Domain-Specific Chatbot GPT-2 & GPT-3 chatbot for event-driven tasks Python, OpenAI APIs Repo Link
Autoencoder Optimization Anomaly detection techniques using TensorFlow (IEEE Published) Python, TensorFlow Repo Link
Online Boat Rental Service Scalable platform for online boat rentals JavaScript, ASP.NET, SQL Repo Link


📂 Mini Code Snippets

Python Snippet: Quick Data Load & Preprocessing
import pandas as pd
import numpy as np

# Load dataset
df = pd.read_csv('data.csv')

# Simple cleaning
df.dropna(inplace=True)
df['date'] = pd.to_datetime(df['date'])

# Feature engineering
df['year'] = df['date'].dt.year
df['log_value'] = np.log1p(df['value'])

# Quick summary
print(df.describe())
SQL Snippet: Creating a Table
CREATE TABLE Sales (
    SaleID INT PRIMARY KEY,
    ProductName VARCHAR(100),
    Quantity INT,
    Price DECIMAL(10, 2),
    SaleDate DATE
);

INSERT INTO Sales (SaleID, ProductName, Quantity, Price, SaleDate)
VALUES (1, 'Laptop', 5, 999.99, '2024-01-15');


📊 GitHub Stats

GitHub Stats
Top Languages
GitHub Contribution Graph
GitHub Streak



🌱 Open Source Contributions

In Progress



📝 Latest Blog Posts

(Coming soon on visheshsrivastava.com)



🌐 Let's Connect!

Portfolio LinkedIn GitHub Email



Thank you for visiting! Feel free to explore my work and connect.
Let’s build something great together! 🚀



Popular repositories Loading

  1. SustainabilityScoreEvaluator SustainabilityScoreEvaluator Public

    Introducing the Web Data Analysis Tool, an ASP.NET MVC application crafted in C# that simplifies web data extraction and analysis. Leveraging the Google API, it fetches data effortlessly and perfor…

    C# 1

  2. TrafficLightCarSimulation TrafficLightCarSimulation Public

    This project simulates different driving styles on a road with traffic lights, considering vehicle acceleration, traffic light spacing, and three driver types. The goal is to analyze travel times a…

    C++ 1

  3. ChatBot ChatBot Public

    Created an English-language chatbot integrated with open source GPT-2.0 and OpenAI GPT 3.5, specifically trained on domain-specific data. This chatbot is event-driven, capable of taking various act…

    Python 1

  4. Quantum-Enhanced-ML-Applications Quantum-Enhanced-ML-Applications Public

    A repository showcasing implementations of hybrid quantum-classical machine learning algorithms for computer vision and other applications, inspired by cutting-edge research in quantum-enhanced mac…

    Jupyter Notebook 1

  5. RentBoat RentBoat Public

    RentBoat is an online webservice that offers a convenient platform for individuals and groups to rent and hire boats on an hourly basis. Whether you're planning a relaxing day on the water, a fishi…

    JavaScript

  6. Autoencoder-Optimization-Anomaly-Detection Autoencoder-Optimization-Anomaly-Detection Public

    This repository contains code for optimizing autoencoders for anomaly detection, with a comparative study against traditional shallow algorithms (ADBENCH). It includes implementations of multiple m…

    Jupyter Notebook