NEWVectors or files. Pick a path.Start →
    Models/Embeddings/tsinghua-ee/WAVE-7B
    HFAudio Embeddingsapache-2.0

    WAVE-7B

    by tsinghua-ee

    Unified audio-visual embeddings for text, audio, silent video, and synchronized clips

    Identifiers
    Model ID
    tsinghua-ee/WAVE-7B
    Feature URI
    mixpeek://audio_extractor@v1/tsinghua_wave_7b_v1

    Deploy WAVE-7B

    Single-tenant

    Mixpeek has no managed extractor for this model. On a single-tenant deployment you upload the weights and a custom plugin serves them next to the rest of your pipeline.

    Overview

    WAVE 7B is a Qwen2.5-Omni based embedding model for unified audio-visual retrieval. It creates a shared representation space for text, audio, silent video, and synchronized audio-video inputs, with prompt-aware embeddings for instruction-specific retrieval.

    On Mixpeek, WAVE is a strong candidate when agents need to search multimodal observations where sound and motion both matter. A support agent can retrieve the clip where a machine squeals before stopping; a media agent can find a scene by its crowd sound and camera motion; an inspection agent can search for audiovisual anomalies without relying on transcripts alone.

    Architecture

    7B-class multimodal embedding model built on Qwen2.5-Omni with hierarchical feature fusion and a dual audio encoder for speech and environmental sound. It is trained with multimodal, multitask contrastive objectives across text, audio, video, and audio-video pairs.

    Mixpeek SDK Integration

    // No extractor parameter takes a Hugging Face model id (checked against
    // GET /v1/discovery/extractors, which returns 13), so WAVE-7B runs
    // on your side and the output is upserted through POST
    // /v1/namespaces/{namespace_id}/documents/upsert. On Enterprise the other
    // path is to upload the weights instead: POST /v1/namespaces/{id}/models
    // accepts the huggingface format and a custom plugin loads them.
    const res = await fetch(
      "https://api.mixpeek.com/v1/namespaces/ns_your_namespace/documents/upsert",
      {
        method: "POST",
        headers: {
          Authorization: "Bearer API_KEY",
          "Content-Type": "application/json",
        },
        body: JSON.stringify({
          collection_id: "col_your_collection",
          documents: [
            {
              document_id: "asset-00412",
              // The vector name has to match a vector index on the collection.
              vectors: { "audio-embedding": yourVector },
              payload: { source_key: "archive/2026/asset-00412" },
            },
          ],
        }),
      },
    );
    
    // Managed alternative, if this exact model is not the requirement:
    // audio_fingerprint_extractor@v1 runs laion/clap-htsat-tiny
    // (512-d) over a bucket, with no inference of your own.

    Capabilities

    • Any-to-any retrieval across text, audio, video, and audio-video clips
    • Prompt-aware embeddings for task-specific search
    • Strong audio and audiovisual retrieval performance
    • Apache 2.0 license

    Use Cases on Mixpeek

    Search surveillance, robotics, or inspection footage by audiovisual events
    Find media clips from natural-language descriptions of sound and motion
    Build agent perception memory across microphones and cameras
    Retrieve audio-only evidence and video-only evidence with one model family

    Benchmarks

    DatasetMetricScoreSource
    MMEB-v2-videoOverall59.9WAVE model card
    AudioCapsAudio retrieval44.2WAVE model card
    VGGSoundAudio-video retrieval25.0WAVE model card

    Performance

    Input SizeText, audio, silent video, or synchronized audio-video
    Embedding DimModel dependent
    GPU LatencyInput dependent
    GPU ThroughputBatch by clip for best throughput
    GPU Memory~15 GB plus serving overhead

    Specification

    FrameworkHF
    Organizationtsinghua-ee
    FeatureAudio Embeddings
    Output512-dim vector
    Modalitiesvideo, audio
    RetrieverAudio Similarity
    Parameters7B
    Licenseapache-2.0
    Downloads/mo288
    Likes6

    Research Paper

    WAVE: Learning Unified and Versatile Audio-Visual Embeddings with Multimodal LLM

    arxiv.org

    Build a pipeline with WAVE-7B

    Add this model to a processing pipeline alongside other extractors. Combine with retrieval stages for end-to-end search.

    Run it on your own data, free