AI SeedbankHelp preserve open and free AI for humanity's future

← All models

nvidia_audio-flamingo-3-hf

nvidia · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: other language:

  • en arxiv: 2507.08128 tags:
  • audio
  • reasoning
  • audio understanding
  • ASR datasets:
  • nvidia/AudioSkills
  • nvidia/AF-Chat
  • nvidia/AF-Think
  • nvidia/LongAudio pipeline_tag: audio-text-to-text library_name: transformers

Model Overview

Audio Flamingo 3: Advancing Audio Intelligence with Fully Open Large Audio-Language Models

Description:

Audio Flamingo 3 (AF3) is a fully open, state-of-the-art Large Audio-Language Model (LALM) that advances reasoning and understanding across speech, sounds, and music. AF3 builds on previous work with innovations in:

  • Unified audio representation learning (speech, sound, music)
  • Flexible, on-demand chain-of-thought reasoning
  • Long-context audio comprehension (up to 10 minutes)
  • Multi-turn, multi-audio conversational dialogue (AF3-Chat)
  • Voice-to-voice interaction (AF3-Chat)

Extensive evaluations confirm AF3’s effectiveness, setting new benchmarks on over 20 public audio understanding and reasoning tasks.

This model is for non-commercial research purposes only.

Usage

Audio Flamingo 3 is supported in 🤗 Transformers. To run the model, first install Transformers:

pip install --upgrade pip
pip install --upgrade transformers accelerate

Note: AF3 processes audio in 30-second windows with a 10-minute total cap per sample. Longer inputs are truncated.

Single-turn: audio + text instruction

from transformers import AudioFlamingo3ForConditionalGeneration, AutoProcessor

model_id = "nvidia/audio-flamingo-3-hf"
processor = AutoProcessor.from_pretrained(model_id)
model = AudioFlamingo3ForConditionalGeneration.from_pretrained(model_id, device_map="auto")

conversation = [
    {
        "role": "user",
        "content": [
            {"type": "text", "text": "Transcribe the input speech."},
            {"type": "audio", "path": "https://huggingface.co/datasets/nvidia/AudioSkills/resolve/main/assets/WhDJDIviAOg_120_10.mp3"},
        ],
    }
]

inputs = processor.apply_chat_template(
    conversation,
    tokenize=True,
    add_generation_prompt=True,
    return_dict=True,
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=500)

decoded_outputs = processor.batch_decode(outputs[:, inputs.input_ids.shape[1]:], skip_special_tokens=True)
print(decoded_outputs)

Multi-turn chat

from transformers import AudioFlamingo3ForConditionalGeneration, AutoProcessor

model_id = "nvidia/audio-flamingo-3-hf"
processor = AutoProcessor.from_pretrained(model_id)
model = AudioFlamingo3ForConditionalGeneration.from_pretrained(model_id, device_map="auto")

conversation = [
    {
        "role": "user",
        "content": [
            {
                "type": "text",
                "text": "Instruction: How does the tone of female speech change throughout the audio? Choose the correct option among the options below: (A) Sad to happy (B) Happy to sad (C) Neutral to happy (D) Happy to neutral.",
            },
            {"type": "audio", "path": "https://huggingface.co/datasets/nvidia/AudioSkills/resolve/main/assets/000000786159.31.wav"},
        ],
    },
    {
        "role": "assistant",
        "content": [{"type": "text", "text": "(A) Sad to happy"}],
    },
    {
        "role": "user",
        "content": [
            {"type": "text", "text": "Why do you think so?"},
        ],
    },
]

inputs = processor.apply_chat_template(
    conversation,
    tokenize=True,
    add_generation_prompt=True,
    return_dict=True,
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=500)

decoded_outputs = processor.batch_decode(outputs[:, inputs.input_ids.shape[1]:], skip_special_tokens=True)
print(decoded_outputs)

Batch multiple conversations

from transformers import AudioFlamingo3ForConditionalGeneration, AutoProcessor

model_id = "nvidia/audio-flamingo-3-hf"
processor = AutoProcessor.from_pretrained(model_id)
model = AudioFlamingo3ForConditionalGeneration.from_pretrained(model_id, device_map="auto")

conversations = [
    [
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "Transcribe the input speech."},
                {
                    "type": "audio",
                    "path": "https://huggingface.co/datasets/nvidia/AudioSkills/resolve/main/assets/t_837b89f2-26aa-4ee2-bdf6-f73f0dd59b26.wav",
                },
            ],
        }
    ],
    [
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "This track feels really peaceful and introspective. What elements make it feel so calming and meditative?",
                },
                {"type": "audio", "path": "https://huggingface.co/datasets/nvidia/AudioSkills/resolve/main/assets/FPSbCAANfbJLVSwD.mp3"},
            ],
        }
    ],
]

inputs = processor.apply_chat_template(
    conversations,
    tokenize=True,
    add_generation_prompt=True,
    return_dict=True,
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=500)

decoded_outputs = processor.batch_decode(outputs[:, inputs.input_ids.shape[1]:], skip_special_tokens=True)
print(decoded_outputs)

Text-only and audio-only prompts

# text-only
conv = [{"role": "user", "content": [{"type": "text", "text": "What is the capital of France?"}]}]
batch = processor.apply_chat_template(conv, tokenize=True, add_generation_prompt=True, return_dict=True).to(device)
print(processor.batch_decode(model.generate(**batch)[:, batch["input_ids"].shape[1]:], skip_special_tokens=True)[0])

# audio-only
conv = [{"role": "user", "content": [{"type": "audio", "path": "https://.../sample.wav"}]}]
batch = processor.apply_chat_template(conv, tokenize=True, add_generation_prompt=True, return_dict=True).to(device)
print(processor.batch_decode(model.generate(**batch)[:, batch["input_ids"].shape[1]:], skip_special_tokens=True)[0])

AF3 transcription checkpoints prepend answers with fixed assistant phrasing such as The spoken content of the audio is "<text>".. Passing strip_prefix=True removes that canned prefix and the surrounding quotes so you only keep the transcription.

Transcribe a local/remote file (shortcut)

from transformers import AudioFlamingo3ForConditionalGeneration, AutoProcessor

model_id = "nvidia/audio-flamingo-3-hf"
processor = AutoProcessor.from_pretrained(model_id)
model = AudioFlamingo3ForConditionalGeneration.from_pretrained(model_id, device_map="auto")

inputs = processor.apply_transcription_request(audio="https://huggingface.co/datasets/nvidia/AudioSkills/resolve/main/assets/t_837b89f2-26aa-4ee2-bdf6-f73f0dd59b26.wav").to(model.device)

outputs = model.generate(**inputs, max_new_tokens=500)
decoded_outputs = processor.batch_decode(outputs[:, inputs.input_ids.shape[1]:], skip_special_tokens=True, strip_prefix=True)

print(decoded_outputs)

Think-mode reasoning with PEFT adapter (AF-Think)

import os

import torch
from huggingface_hub import snapshot_download
from peft import PeftModel

from transformers import AudioFlamingo3ForConditionalGeneration, AutoProcessor


model_id = "nvidia/audio-flamingo-3-hf"
local_id = snapshot_download(model_id)

processor = AutoProcessor.from_pretrained(local_id)
model = AudioFlamingo3ForConditionalGeneration.from_pretrained(local_id, device_map="auto")

non_lora_path = os.path.join(local_id, "think", "non_lora_trainables.bin")
non_lora_trainables = torch.load(non_lora_path)
model.load_state_dict(non_lora_trainables, strict=False)

model = PeftModel.from_pretrained(model, local_id, subfolder="think")

conversation = [
    {
        "role": "user",
        "content": [
            {
                "type": "text",
                "text": "Generate a detailed caption for the input audio, describing all notable speech, sound, and musical events comprehensively. In the caption, transcribe all spoken content by all speakers in the audio precisely.\nPlease think and reason about the input music before you respond.",
            },
            {
                "type": "audio",
                "path": "https://huggingface.co/datasets/nvidia/AudioSkills/resolve/main/assets/videoplayback_superman.wav",
            },
        ],
    }
]

inputs = processor.apply_chat_template(
    conversation,
    tokenize=True,
    add_generation_prompt=True,
    return_dict=True,
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=1024)

decoded_outputs = processor.batch_decode(outputs[:, inputs.input_ids.shape[1] :], skip_special_tokens=True)
print(decoded_outputs)

Training / Fine-tuning

from transformers import AudioFlamingo3ForConditionalGeneration, AutoProcessor

model_id = "nvidia/audio-flamingo-3-hf"
processor = AutoProcessor.from_pretrained(model_id)
model = AudioFlamingo3ForConditionalGeneration.from_pretrained(model_id, device_map="auto")
model.train()

conversation = [
    [
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "Transcribe the input speech."},
                {"type": "audio", "path": "https://huggingface.co/datasets/nvidia/AudioSkills/resolve/main/assets/WhDJDIviAOg_120_10.mp3"},
            ],
        },
        {
            "role": "assistant",
            "content": [{"type": "text", "text": "The transcription of the audio is 'summer follows spring the days grow longer and the nights are warm'."}],
        }
    ],
    [
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "This track feels really peaceful and introspective. What elements make it feel so calming and meditative?",
                },
                {"type": "audio", "path": "https://huggingface.co/datasets/nvidia/AudioSkills/resolve/main/assets/FPSbCAANfbJLVSwD.mp3"},
            ],
        },
        {
            "role": "assistant",
            "content": [{"type": "text", "text": "The transcription of the audio is 'some transcription of the audio'."}],
        }

    ]
]

inputs = processor.apply_chat_template(
    conversation,
    tokenize=True,
    add_generation_prompt=True,
    return_dict=True,
    output_labels=True,
).to(model.device)

loss = model(**inputs).loss
loss.backward()

Generation options

You can tune decoding similar to other text-generation models:

generate_kwargs = {
    "max_new_tokens": 256,
    "do_sample": True,
    "temperature": 0.7,
    "top_p": 0.9,
}
out = model.generate(**batch, **generate_kwargs)

Additional Speed & Memory Improvements

vLLM Inference (5-7x faster)

AF3 can now run with vLLM for significantly faster inference, on average 5-7x speedup vs standard Transformers generation.

Install:

VLLM_USE_PRECOMPILED=1 uv pip install -U --pre \
  --override <(printf 'transformers>=5.0.0rc1\n') \
  "vllm[audio] @ git+https://github.com/vllm-project/vllm.git"

Inference:

import os
from pathlib import Path

from vllm import LLM, SamplingParams

os.environ["VLLM_ALLOW_LONG_MAX_MODEL_LEN"] = "1"

# audio_url = Path("./audio_file.mp3").expanduser().resolve().as_uri()   # local file -> file://...
audio_url = "https://huggingface.co/datasets/nvidia/AudioSkills/resolve/main/assets/WhDJDIviAOg_120_10.mp3"  # web URL -> https://...

prompt = "Transcribe the input speech."

llm = LLM(
    model="nvidia/audio-flamingo-3-hf",
    allowed_local_media_path=str(Path.cwd()),
    max_model_len=20000,
)
sp = SamplingParams(max_tokens=4096, temperature=0.0, repetition_penalty=1.2)

print(
    llm.chat(
        [
            {
                "role": "user",
                "content": [
                    {"type": "text", "text": prompt},
                    {"type": "audio_url", "audio_url": {"url": audio_url}},
                ],
            }
        ],
        sp,
    )[0]
    .outputs[0]
    .text
)

Flash Attention 2

If your GPU supports it and you are not using torch.compile, install Flash-Attention and enable it at load time:

pip install flash-attn --no-build-isolation
model = AudioFlamingo3ForConditionalGeneration.from_pretrained(
    model_id, torch_dtype=torch_dtype, low_cpu_mem_usage=True, attn_implementation="flash_attention_2"
).to(device)

Torch compile

AF3’s forward pass is compatible with torch.compile for significant speed-ups:

import torch
torch.set_float32_matmul_precision("high")

model.generation_config.cache_implementation = "static"
model.generation_config.max_new_tokens = 256
model.forward = torch.compile(model.forward, mode="reduce-overhead", fullgraph=True)

torch.compile is not compatible with Flash Attention 2 at the same time.

PyTorch SDPA

If Flash-Attention isn’t available, AF3 will use PyTorch scaled-dot product attention (SDPA) by default on supported PyTorch versions. You can set it explicitly:

model = AudioFlamingo3ForConditionalGeneration.from_pretrained(
    model_id, torch_dtype=torch_dtype, low_cpu_mem_usage=True, attn_implementation="sdpa"
).to(device)

Results:

Model Architecture:

Audio Flamingo 3 uses AF-Whisper unified audio encoder, MLP-based audio adaptor, Decoder-only LLM backbone (Qwen2.5-7B), and Streaming TTS module (AF3-Chat). Audio Flamingo 3 can take up to 10 minutes of audio inputs.

License / Terms of Use

The model is released under the NVIDIA OneWay Noncommercial License. Portions of the dataset generation are also subject to the Qwen Research License and OpenAI’s Terms of Use.

Deployment Geography

Global.

Use Case

Intended for researchers and developers to explore:

  • Audio question answering and reasoning
  • Long-context audio comprehension
  • Interactive sound/music design assistants
  • Multi-turn (voice) chat

Release Date

References:

  • Audio Flamingo 3: Advancing Audio Intelligence with Fully Open Large Audio-Language Models
  • Project Page
  • Demo Website
  • Hugging Face

Model Architecture:

Architecture Type: Transformer
Network Architecture: Audio Flamingo 3

AF3 uses:

  • AF-Whisper unified audio encoder
  • MLP-based audio adaptor
  • Decoder-only LLM backbone (Qwen2.5-7B)
  • Streaming TTS module (AF3-Chat)

**This model was developed based on NVILA and Qwen-2.5-7B

Input:

  • Input Type: Audio, Text
  • Input Format: WAV/MP3/FLAC, UTF-8 text
  • Input Parameters: Audio is Two-Dimensional (2D) and Text is One-Dimensional (1D)
  • Other Properties Related to Input:
  • Max Audio Length: 10 Minutes
  • Max Text Length: 16000 tokens

Output:

  • Output Type: Text (and optional speech)
  • Text Format: UTF-8 string
  • Output Parameters: One-Dimensional (1D)
  • Other Properties Related to Output:
  • Max Text Length: 1024 tokens
  • Speech Format: streaming TTS (text-to-speech) waveform

Our AI models are designed and/or optimized to run on NVIDIA GPU-accelerated systems (A100/H100). By leveraging NVIDIA’s hardware (e.g. GPU cores) and software frameworks (e.g., CUDA libraries), the model achieves faster training and inference times compared to CPU-only solutions.

Software Integration:

Runtime Engine: PyTorch / HuggingFace Transformers

Supported Hardware:

  • NVIDIA Ampere (A100)
  • NVIDIA Hopper (H100)

Supported OS:

  • Linux

Model Version:

  • v3.0

Training and Testing Datasets:

Training Dataset:

AF3 is trained entirely on open-source audio data, organized into four novel, large-scale collections. For each dataset, we mention whether the dataset annotations are collected by Human or they are Automated i.e. generated using AI models.

The data collection method noted below applies for all datasets used for training and testing: Data Collection Method: Human Labeling Collection Method: Please see below:

General Sound:

  • WavCaps (Automated)
  • MACS (Human)
  • SoundDescs (Human)
  • Clotho-v2 (Human)
  • WavText5K (Human)
  • Clotho-AQA (Human)
  • Open-AQA (Automated)
  • CompA-R (Automated)
  • Salmonn AQA (Automated)
  • Audio Entailment(Automated)
  • CompA (Automated)
  • AudioSet (Human)
  • YouTube-8M (Human)
  • FSD50k (Human)
  • CochlScene (Human)
  • NonSpeech7K (Human)
  • Chime-Home (Human)
  • Sonyc-UST (Human)

Music:

  • LP-MusicCaps (Automated)
  • MusicQA (Automated)
  • MusicAVQA (Human)
  • MusicBench (Automated)
  • Mu-LLAMA (Automated)
  • NSynth (Human)
  • FMA (Human)
  • MusDB-HQ (Human)
  • Music4All (Human)
  • Million Song Dataset (Human)

Speech:

  • MSP-Podcast (Human)
  • JL-Corpus (Human)
  • MELD (Human)
  • Tess (Human)
  • OMGEmotion (Human)
  • Emov-DB (Human)
  • LibriSpeech (Human)
  • SPGISpeech (Human)
  • TEDLIUM (Human)
  • GigaSpeech (Human)
  • Common Voice 15 (Human)
  • VoxPopuli (Human)
  • VoxCeleb2 (Human)
  • Switchboard (Human)
  • AMI (Human)

Voice:

Mixed:


Testing Dataset:

Audio Flamingo 3 is evaluated on the test split of the following datasets.

Data Collection Method: Human (for all datasets noted below) Labeling Method: See below

  • ClothoAQA (Human)
  • MusicAVQA (Human)
  • Clotho-v2 (Human)
  • CochlScene (Human)
  • NonSpeech7K (Human)
  • NSynth (Human)
  • AudioCaps (Human)
  • US8K (Human)
  • GTZAN (Human)
  • MMAU (Human)
  • MMAR (Human)
  • Audio Entailment(Automated)
  • CompA-R-test (Automated)
  • MuchoMusic (Automated)
  • Open-AQA(Automated)
  • MusicInstruct (Automated)
  • MusicQA (Automated)
  • CMM Hallucination (Human)
  • IEMOCAP (Human)
  • VoiceBench (Human)
  • OpenAudioBench (Human)
  • SEED (Human)
  • LibriSpeech (Human)
  • SPGISpeech (Human)
  • TEDLIUM (Human)
  • GigaSpeech (Human)
  • Common Voice 15 (Human)
  • VoxPopuli (Human)
  • LongAudioBench (ours) (Automated)
  • AF-Chat-test (ours) (Human)

Inference:

Engine: HuggingFace Transformers
Test Hardware: NVIDIA A100 80 GB


Ethical Considerations:

NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse. Please report security vulnerabilities or NVIDIA AI Concerns here.


Acknowledgements

Built with Qwen, NVILA and the open audio-ML community.

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:61e27337e0b2aaee52bbc94a4829e0937a4365fe&dn=nvidia_audio-flamingo-3-hf

Open magnet in torrent client · infohash 61e27337e0b2aaee52bbc94a4829e0937a4365fe

Files & hashes

PathSizesha1sha256
README.md25.2 KB (25,758 B)d3b3d6df3836fee9ecbc76216c9a39b17faef02a1c03086b016df1ebb5f8da143e8da315875acda0054818c74c70826a31da7737
added_tokens.json762 B (762 B)29f906f7ed315b4894aa7b504e998160b3ad94d7471e864795cf6fb1977076bbd16ed8a4642e0f617b159260f0b1166f5c64dfb6
chat_template.jinja703 B (703 B)06cb9292a0bcfe8e4c15367cfcc8657aaa126bf1e0decdf286563b84cd266c60effd4cfb4256a0d4e128487a382602ddef1ff269
config.json2.0 KB (2,093 B)66fe88b870b18c4f5cb0e237256eb54511d39282547254e919aad4846ddd90340f30a9a935c3c4d033fead9cc1121ecdd3b13ef7
generation_config.json145 B (145 B)6588792a958359d65472f5261e387890e7a0de90d6b329f8e2422195fda3ea6a5257035de7d973e3e6c2a664b86bbed6c03b367d
merges.txt1.6 MB (1,671,853 B)31349551d90c7606f325fe0f11bbb8bd5fa0d7c78831e4f1a044471340f7c0a83d7bd71306a5b867e95fd870f74d0c5308a904d5
model-00001-of-00004.safetensors4.55 GB (4,886,285,784 B)c351d5480727b37593b26e674648213c9698eafedf42e51f121d243a7bbfb253ba2d388046b6b9abb33b7770c789d431c04d21bf
model-00002-of-00004.safetensors4.65 GB (4,991,497,784 B)25563b85486578b9aa24f2cb95b41c3a7ae28dc236f6299c1e3137d431cf61044537c4dda0627d7092a5a44b5ce72eca4dcc56da
model-00003-of-00004.safetensors4.59 GB (4,932,752,872 B)c081e5be0f0580cd3cf4ebc58b0cfaf0a6770fe21e0c90ec3232d5a54c8722b19487fa2a117463fcd662ff6e93bab9970d0fe2f7
model-00004-of-00004.safetensors1.61 GB (1,723,994,720 B)896289e1fe1ea08a73912663909861e65629e6474050632946b7c60cf2855d9d7628589639bd06bc2d5d45a58988fe97c7d98af2
model.safetensors15.40 GB (16,534,531,504 B)9b5f3511fef740861312f363b3eea79b3ab6b61974e31be176c4691982818c10f958f9a183df88da2bad65625fa25d30c6fd5e79
model.safetensors.index.json72.8 KB (74,525 B)c359bb45de916533bbada27f1fa137c3dbfbe6d93f5c8f9d6180a27f734c754b4be5d60dfd3a9e86a912e4b95760f633414e8c9a
processor_config.json494 B (494 B)2565cf3a128d8347e8fa1fe114926283a5077b210fda61e0f2a823aa5a1f0dd0ded8d0ced97ed0861ecaf9072c5b50758de5c23a
special_tokens_map.json743 B (743 B)eb52cb3ee5e3d66214ace745c9b1cf8d51d5d3509d47cba180617d9fe8f6a2424d38bab8c82a995dc6a3f3527a9f23c53d437845
static/NVIDIA_OneWay_Noncommercial_License.docx20.1 KB (20,620 B)01a9df3489ed1c460bf9e0ae817a41f42e0b0f7016953209132ffe98acd132bd6764b2de1b2a64cb970ca76442c5fa678a0d8c98
static/af3_main_diagram-1.png223.7 KB (229,099 B)b598570b104f958181ecb7cd45c634550a149e9c3908e928f7df50f1860d05d4e31343c44d46550c46bfaff4bb2cf93cea48fd14
static/af3_radial-1.png141.5 KB (144,906 B)7acb714dc69a31faf5f1f2b66ce57aa677fa531f5c4f1ede2dd47b45c40996a2827cb34312662f81d92c85d71eec596f9f06631e
static/af3_sota.png260.0 KB (266,220 B)18c2f9cdfd7fd93ec454949e67ce6dc2f7cb57101dce527eb4625a47f2819388a0d9d05978a3d9287b839c85a41058e3b0c1208f
static/logo-no-bg.png453.3 KB (464,155 B)8c1d9837120d76acc7aea8021ecb881c623d67cfb4868114d109a9939114016c32691405f6d8dfdcdccb29dfce63e52f0b6e9540
think/adapter_config.json4.0 KB (4,147 B)82f836b7ecf37b5b7d8d2aca0f4c7146758880091ff9a918d6731db278831af845b7b56e7427d3c4c8e87e5907bf386ad79f5bcb
think/adapter_model.safetensors308.1 MB (323,020,408 B)feb159fe71d144f850a9a6b7cbdcd4dff63ba436d680dd51b647dad0dd0c1b48399274b4936f5a926f0010fd702b1e00a959fff4
think/config.json10.2 KB (10,485 B)224505561a6135d151e5b37c744b27b520bac6af047ca89b39d08f9ce45be2573e3ce14a154140c074f659ca728a580de47f0699
think/non_lora_trainables.bin1.01 GB (1,087,186,621 B)cd627550468b66b96a3c96950be9d22d688a48b3e858f7cc439285d42948737e413fceac35fd0eea0a050195337bc8593c0b2736
tokenizer.json10.9 MB (11,423,182 B)a83b8c968a3e946477e196856f3a8efd75ee546c1f14d54ac619b8d778bec7ddcc5d247a2148ffd16d1ee43a07d2d350bb4bec72
tokenizer_config.json789 B (789 B)ab0be6beb4f915078621101bc525feaa78fa3b4909a07bd13014f7bc894cab10bd750ad9b7a52daf1061df5a3fd63000de9d8772
vocab.json2.6 MB (2,776,833 B)4783fe10ac3adce15ac8f358ef5462739852c569ca10d7e9fb3ed18575dd1e277a2579c16d108e32f27439684afa0e10b1440910

Cite this release

Canonical URL
https://aiseedbank.org/models/nvidia_audio-flamingo-3-hf/
Slug
nvidia_audio-flamingo-3-hf
Infohash
61e27337e0b2aaee52bbc94a4829e0937a4365fe
License
custom/other license
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: nvidia_audio-flamingo-3-hf.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorynvidia/audio-flamingo-3-hf
Revision (pinned)7d4bae64ee29878af6504ae6f6bb3e40492838ad
Fetched at2026-09-02T05:18:39Z
License at fetchother
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T05:24:44Z

custom/other license32.13 GB (34,496,387,205 bytes)transformerssafetensorsaudioflamingo3text2text-generationaudioreasoningaudio understandingASRaudio-text-to-textendpoints_compatible1 language (en)paper: 2507.08128paper: 2505.13032