Dataset Viewer
The dataset could not be loaded because the splits use different data file formats, which is not supported. Read more about the splits configuration. Click for more details.
Couldn't infer the same data file format for all splits. Got {NamedSplit('train'): ('text', {}), NamedSplit('validation'): ('text', {}), NamedSplit('test'): ('json', {})}
Error code:   FileFormatMismatchBetweenSplitsError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

FLiP-data

Preprocessed data for the FLiP project — Factorized Linear Projection for Interpreting Multimodal Multilingual Sentence Embeddings.

FLiP trains a factorized log-linear model to recover lexical content (keywords) from pretrained sentence embeddings via a single linear projection, with no fine-tuning of the encoder.

Contents

SONAR embeddings and transcripts for Mozilla Common Voice v15 English (train / dev / test):

File Description
*_speech_embs.npy SONAR speech embeddings (float32, shape [N, 1024])
*_text_embs.npy SONAR text embeddings (float32, shape [N, 1024])
*_sim_scores.npy Cosine similarity between paired speech and text embeddings
*_transcript.txt Reference transcripts (one utterance per line)
*_entities_gemini2.5_flash_lite.jsonl Named entities extracted with Gemini 2.5 Flash Lite

Splits: train (~650k utterances), dev, test.

Source data

Embeddings were computed from Mozilla Common Voice v15 English using the SONAR encoder. Audio and transcripts from Common Voice are licensed under CC BY 4.0.

Usage

See the FLiP GitHub repo for full installation instructions and training/evaluation scripts.

Quick start after downloading:

import numpy as np

train_speech = np.load("cv_15/en/sonar_embeddings/train_speech_embs.npy")
train_text   = np.load("cv_15/en/sonar_embeddings/train_text_embs.npy")

Citation

@misc{kesiraju2026flip,
  title         = {{FLiP}: Towards understanding and interpreting multimodal multilingual sentence embeddings},
  author        = {Kesiraju, Santosh and Yusuf, Bolaji and Sedl{\'a}{\v{c}}ek, Simon and Plchot, Old{\v{r}}ich and Schwarz, Petr},
  year          = {2026},
  eprint        = {2026.XXXXX},
  archivePrefix = {arXiv},
  primaryClass  = {cs.CL}
}
Downloads last month
-