Kushtrim/Qwen3-Embedding-4B-Shqip
Sentence Similarity
•
4B
•
Updated
Dataset of (topic → text) pairs derived from the Bujku archive, intended for embedding finetuning / retrieval training.
Each example is a pair:
anchor: a topic string (short text)positive: the associated full_text (longer text)For each source JSON page/article, every topic in topics[] becomes one row where positive is the page/article text.
The dataset contains the following columns:
anchor (string): topic string.positive (string): article/page text associated with the topic.positive_token_length (int): token length of positive.MultipleNegativesRankingLoss with in-batch negatives)positive_token_length is useful to:
max_seq_lengthSome training scripts may drop this column after filtering to keep only anchor/positive during training.
Hosted as:
Kushtrim/bujku_topics_pairsimport os
from datasets import load_dataset
ds = load_dataset("Kushtrim/bujku_topics_pairs", split="train", token=os.environ.get("HF_TOKEN"))
print(ds.column_names, ds.num_rows)
positive.