惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
S
SegmentFault 最新的问题
量子位
有赞技术团队
有赞技术团队
V
V2EX
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
B
Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Jina AI
Jina AI
C
Check Point Blog
G
Google Developers Blog
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
T
Tailwind CSS Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
U
Unit 42

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Attention Is All You Need, Building a Transformer for Tha...
aj1thkr1sh · 2026-06-15 · via DEV Community

aj1thkr1sh

Attention Is All You Need, Building a Transformer for Thanglish-to-Tamil

Where We Left Off 📜

In my last post I built three architectures for "Thanglish to Tamil" Transliteration on the Google Dakshina Dataset using a Vanilla LSTM, a BiGRU with Attention, and a CNN-LSTM Architecture

The CNN-LSTM won that round, not because it was the most Accurate, but because it matched the others while being 16x smaller

But one Architecture was sitting in the corner the whole time, waiting 😏

(Optimus Prime)

💭 What if I just use the thing that Attention was actually made for?

So this weekend I built The Transformer the Original Encoder-Decoder one from Attention Is All You Need (Vaswani et al., 2017) from scratch using PyTorch

The Architecture 🏗️

Transformer Architecture

It is the Clasical Encoder-Decoder Transformer :

🔧 Configuration :

d_model (Embedding Dim)      : 256
n_heads (Attention Heads)    : 8
n_layers (Encoder / Decoder) : 3
d_ff (Feed Forward Dim)      : 512
dropout                      : 0.1

Same Character Level, same Seq2Seq setup as before

Evaluation 📈

Used Google Colab for Training

Note : Same as previous post, these Accuracy are not too high, I am just tweaking Hyperparameter like Regularization, with limited Compute Resource, just sharing the current progress here

Transformer (Encoder-Decoder)

Current Total Parameters : 3986994

Train Loss : 0.1178 | Val Loss : 0.3287 | Val Acc : 57.73% | Val CER : 15.49%

Test Exact Match Accuracy : 56.29%
Test Character Error Rate : 15.92%

Val Accuracy was still climbing (60.14% on Dev Set) and Early Stopping stopped at epoch 48

Good

  • Best Accuracy of every Model is Built
  • Validation Loss in a Completely Different Improved
  • Demo Outputs good

Bad

  • Overfitting : Training Loss dropped to ~0.07 while Val Loss is around 0.33
  • Still slips on like : puthagam for "புதகம்" instead of "புத்தகம்"
  • Second Heaviest Model seen so far

Fixes

Yes, there are few fixes we can do if we find time later

🏆 The Match : All Four Architectures

Architecture Parameters Test Accuracy Test CER Val Loss
CNN-LSTM 767,666 50.55% 15.81% 0.9868
Vanilla LSTM 1,411,890 51.57% 16.36% 1.4453
Transformer 3,986,994 56.29% 15.92% 0.3287
BiGRU + Attention 12,580,914 50.60% 16.44% 1.3492

So… Who Actually Wins? 🤷

This is where it gets fun, because the answer is two different Winners depending on the Question

.
.
.
.
.
.
.
.
.
.
.
.

If the question is “Best Quality” : Transformer wins 🎉

It jumps to 56.29% accuracy : a +4.72 point lead over the next best (Vanilla LSTM)

It ties the CNN-LSTM on CER (15.92% vs 15.81% — noise)

Its Validation Loss (0.3287) shows it is genuinely Modelling the problem far better, not just Memorizing

If the question is “Best Efficiency” : CNN-LSTM still wins 🥳

The CNN-LSTM reaches CER at 1/5th the Parameters of the Transformer (and 16x smaller than BiGRU + Attention)

For Deployment, Inference Speed, and “does it earn its size” : Convolution still Rules

So my earlier Thesis survives, just with a footnote :

For local, "n-gram-driven Transliteration", Convolution is the efficiency winner But when you can go for the the Parameters, global Attention is the Accuracy winner Right tool

And honestly : both are fixable further, Label Smoothing, Warmup, more Regularization could change this table again. That’s the whole point :

Because we need to Experiment and Find 🔬

Repository : https://github.com/ajithraghavan/VisAI

Please feel free to Clone, Use and Train on your own Dataset for Exploration

Thanks for reading!