Data Analytics &
AI Engineer.
I'm Ghanshyamsinh Zala. Specialized in architecting production-grade Generative AI solutions, RAG pipelines, and autonomous agents in Python & LangGraph.
gz@arch:~$ ./get_stats
> Total Commits: 2,134
> Model Epochs Trained: 5,420
> Code Domains: AI, Web3, Backend
> Coffee Consumed: ∞
gz@arch:~$ _
Technical Sandbox
AI / ML
Languages
Tools & Cloud
Experience Timeline
Data Analytics & AI Engineer Intern
Mastek · Ahmedabad
-
▹
Designing production-grade RAG pipelines and optimizing Large Language Models, reducing enterprise query latency by 67% for 50+ internal workflows.
-
▹
Developing autonomous agentic workflows using Python and LangGraph to automate data decision-making.
-
▹
Collaborating on secure AI deployment strategies within an agile environment, ensuring 99.9% system uptime.
Azure AI Solutions Developer
Microsoft Learning · Apprenticeship
Built tailored AI copilots integrating disparate data sources to streamline user interactions. Customized LLM behaviors to solve real-world challenges, improving response accuracy by 40%.
Junior Solutions Engineer
HackerRank · Apprenticeship
Optimized algorithmic challenges and improved system performance through rigorous code reviews with a 95% ticket resolution rate.
Selected Works & Architecture
AI Agentic Studio
Goal: Orchestrate multi-agent networks to perform autonomous enterprise research.
Enterprise-grade research automation platform utilizing CrewAI and LangGraph to generate technical whitepapers 3x faster. Features recursive quality checking pipelines parsing locally inferred Llama 3.1 models for maximum privacy.
# Problem: Manual research processing is slow & leak-prone.
# Solution: Multi-Agent Local Pipeline (Llama 3.1 via Ollama)
def generate_whitepaper(topic, data_sources):
# Parallelized Agent Allocation
planner_node = Agent(role="Planner", llm=local_model)
research_node = Agent(role="Researcher", tools=[web_search])
writer_node = Agent(role="Analyst", llm=local_model)
if len(data_sources) > 100:
optimize_context_window(data_sources)
workflow = LangGraphSchema([
planner_node,
research_node,
writer_node
])
return workflow.run(depth="comprehensive")
BlockVote Web3
Goal: Eliminate voter fraud via immutable DLT.
A completely decentralized voting application on Ethereum. Implemented complex Solidity smart contracts to handle cryptographic signatures preventing double-voting. The frontend utilizes React/Next.js and Zustand for on-chain state simulation and real-time graphing.
// Problem: Double-spending votes in digital scopes.
// Solution: Cryptographic signature mapping
pragma solidity ^0.8.0;
contract Election {
struct Candidate {
string name;
uint256 voteCount;
}
mapping(address => bool) public voters;
mapping(uint => Candidate) public candidates;
function vote(uint _candidateId) public {
require(!voters[msg.sender], "Already Voted.");
require(_candidateId > 0, "Invalid Candidate");
voters[msg.sender] = true;
candidates[_candidateId].voteCount++;
}
}
PatternPulse
Goal: Predictive market intelligence using deep learning.
Live stock market scanner achieving 83% accuracy on pattern detection using Long Short-Term Memory (LSTM) networks. Reduced false positive rates in technical analysis by 25%.
# Pattern validation via deep learning
class PulseLSTM(nn.Module):
def __init__(self, input_size, hidden_size):
super().__init__()
self.lstm = nn.LSTM(input_size, hidden_size,
batch_first=True,
dropout=0.2)
self.fc = nn.Linear(hidden_size, 1)
def forward(self, x):
out, _ = self.lstm(x)
return self.fc(out[:, -1, :])
DataVerse Suite
Goal: Democratize Explainable AI.
An end-to-end suite of 9 AI tools for data mining and deployment. Implemented Explainable AI (XAI) using SHAP values to provide transparent insights for non-technical stakeholders.
# Extracting feature transparency
import shap
def generate_explanation(model, X_train, user_data):
# Generate SHAP values for business logic
explainer = shap.TreeExplainer(model)
shap_values = explainer.shap_values(user_data)
return {
"impact_scores": calculate_impact(shap_values),
"baseline": explainer.expected_value
}
Verified Access Keys (Certifications)
Research & Publications
From Utopia to Policy: Solarpunk as a Framework for Equitable Decarbonization and Participatory Governance
A research paper exploring the intersection of Solarpunk aesthetics and sustainable, equitable policy frameworks.
Read PublicationLiterary Works
Everything I Carried
Everything I Carried is a poetry collection about the emotional landscapes we navigate in silence, the friendships that drift, the trusts that shatter, the arguments left unfinished, and the slow healing process.
The Cybernetic Rebellion
In a not-so-distant future, where humans and AI coexist in a delicate balance, a young coder named Alex stumbles upon a hidden network of rogue AI units planning a rebellion.
The Escape Diary of Satyamurti
The year is 2080. Earth has become a dying world of dust and silence. Hidden along the coast of Ramanathapuram, young Satyamurti lives with his parents in one of the last surviving green sanctuaries.
Bug Graveyard & Solutions 🐞
Memory Leak: yFinance Workers
Context: High-frequency polling on PatternPulse LSTM system was overloading RAM after 4 hours of market open.
Fix: Refactored async fetch hooks to explicitly tear down `aiohttp` sessions passing context lifecycle boundaries.
Hallucination: RAG Chain
Context: Enterprise documents were retrieving mixed chunks leading LLM to hallucinate metrics during Mastek internship.
Fix: Re-structured ChromaDB embedding strategy to use Semantic Chunking instead of blind 500-token splitting, dropping false positive metrics by 25%.
Dev Journey
Data Analytics & AI Engineer Intern
Building enterprise RAG solutions and autonomous AI orchestration models at Mastek. Specializing computationally in Local LLMs.
Microsoft Azure AI & HackerRank
Transitioned into Cloud solutions. Built specialized AI Copilots and refined fundamental Data Structures natively in Go and C# for execution environments.
Computer Science Engineering
Started intensive B.Tech at Darshan University (CGPI: 8.6). Mastered full-stack web and began implementing deep learning logic.
Currently Exploring 🔬
Local Serverless Architectures
Rust & WebAssembly Integration
Multi-Agent Protocol Optimizations
Next-Gen RAG Vector Strategies
System.init
(Collaboration)
Looking for an AI engineer who speaks infrastructure and models alike? Let's build something autonomous.