Feature Extraction
sentence-transformers
Safetensors
Hindi
English
bert
hindi
hinglish
code-mixed
song-lyrics
tsdae
text-embeddings-inference
Instructions to use meet5568/bhash_finetune with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use meet5568/bhash_finetune with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("meet5568/bhash_finetune") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
BhashaEmbed Hindi Songs — TSDAE Domain Adapted
Domain-adapted version of AkshitaS/bhasha-embed-v0
for Hindi film song lyrics.
Training
- Method: TSDAE (Transformer-based Sequential Denoising Auto-Encoder), unsupervised
- Quantization: 8-bit (
load_in_8bit=True) + LoRA adapters (r=16, alpha=32) - Corpus: 8,464 Hindi film songs, 28,713 verse-level chunks
- Scripts: Devanagari, Romanized Hindi (Hinglish), English — single unified model
- Script balancing: weighted sampling to 44/44/12 (Devanagari/Hinglish/English)
- Epochs: 3
- Batch size: 4
- Learning rate: 0.0001
- Max sequence length: 400 subword tokens
Intended Use
Sentence embeddings for Hindi film song lyrics across all three script forms. Designed for thematic classification and generational/temporal analysis of Hindi music.
Limitations
- Trained with LoRA on a quantized backbone — domain adaptation is weaker than full fine-tuning (approximately 70–85% of full-FT gains)
- No supervised thematic fine-tuning applied (Phase A only)
- Not evaluated on tasks outside Hindi song lyrics
Usage
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("meet5568/bhash_finetune")
lyrics = [
"तेरे बिना जिंदगी से कोई शिकवा नहीं",
"tere bina zindagi se koi shikwa nahi",
"without you life has no complaint",
]
embeddings = model.encode(lyrics)
print(embeddings.shape) # (3, 768)
- Downloads last month
- -
Model tree for meet5568/bhash_finetune
Base model
AkshitaS/bhasha-embed-v0