Domain-adapted version of
AkshitaS/bhasha-embed-v0
for Hindi film song lyrics.
Sentence embeddings for Hindi film song lyrics across all three script forms.
Designed for thematic classification and generational/temporal analysis of Hindi music.
1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("meet5568/bhash_finetune")
4
5lyrics = [
6 "तेरे बिना जिंदगी से कोई शिकवा नहीं",
7 "tere bina zindagi se koi shikwa nahi",
8 "without you life has no complaint",
9]
10embeddings = model.encode(lyrics)
11print(embeddings.shape) # (3, 768)