Welcome to my personal website where I showcase my work and skills.
Vishnu Sai is a Machine Learning Engineer, Deep Learning Enthusiast,and developer—constantly evolving and passionate about learning new frontiers.
I specialize in creating intelligent systems and data-driven solutions. With a background in Machine Learning, I combine analytical thinking and technical skills to drive business.
When I'm not working, you can find me exploring new technologies, contributing to open-source projects, playing pickle ball or reading books.
Master's in Applied Machine Learning, UMD (2025-2027)
Bachelor's in Computer Science(Data Science), VIT (2019-2023)
College Park, Maryland - United States
English, Hindi, Telugu
Maruti Suzuki India Limited · Bengaluru, India
Maruti Suzuki India Limited · Bengaluru, India
Feel free to reach out to me for any questions or opportunities!
vishnubr@umd.edu
vishnupuma18@gmail.com
College Park, Maryland
(open to relocation)
from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline
import torch
# -----------------------------
# MODEL SETUP
# -----------------------------
print("🚀 Vishnu Projects: Initializing EmotionSense Model...\n")
MODEL_NAME = "j-hartmann/emotion-english-distilroberta-base"
emotion_pipeline = pipeline("text-classification", model=MODEL_NAME, return_all_scores=True)
# -----------------------------
# FUNCTION FOR INFERENCE
# -----------------------------
def analyze_emotion(text: str):
"""
Analyze the emotion of the given text using the Transformer model.
"""
results = emotion_pipeline(text)[0]
# Sort by highest score
results = sorted(results, key=lambda x: x["score"], reverse=True)
top_emotion = results[0]
print(f"🧩 Text: {text}")
print(f"💬 Predicted Emotion: {top_emotion['label']} ({top_emotion['score']:.3f})\n")
# -----------------------------
# DEMO INPUTS
# -----------------------------
if __name__ == "__main__":
print("🔍 Running Emotion Analysis with Transformers...\n")
samples = [
"I just got promoted and I feel amazing!",
"I'm so tired of everything going wrong lately.",
"I miss my friends back home.",
"Wow, this AI project is mind-blowing!"
]
for s in samples:
analyze_emotion(s)
print("✅ Vishnu Projects – EmotionSense completed successfully.")