Views
No views yet
All open weights in this repository are released by Sony Research under the CC-BY-NC 4.0 license. Generated outputs inherit the non-commercial restriction. You may not use model outputs in commercial products, paid releases, or client work. The upstream project's source code is released separately under MIT / Apache-2.0.
SonyResearch/Woosh).| Folder | Role | File(s) |
|---|---|---|
checkpoints/Woosh-AE/ | Audio encoder / decoder producing high-quality latents | weights.safetensors, config.yaml |
checkpoints/Woosh-CLAP/ | Multimodal text-audio alignment model (audio + text encoders) | weights_audio.safetensors, weights_text.safetensors, config.yaml |
checkpoints/TextConditionerA/ | Text conditioner for the T2A path (pairs with Flow / DFlow) | weights.safetensors, config.yaml |
checkpoints/TextConditionerV/ | Text conditioner for the V2A path (pairs with VFlow / DVFlow) | weights.safetensors, config.yaml |
| Folder | Task | Notes |
|---|---|---|
checkpoints/Woosh-Flow/ | Text → Audio | Full-quality T2A latent diffusion |
checkpoints/Woosh-DFlow/ | Text → Audio | Distilled T2A — fewer steps, faster inference |
checkpoints/Woosh-VFlow-8s/ | Video → Audio | V2A latent diffusion — fixed 8-second output |
checkpoints/Woosh-DVFlow-8s/ | Video → Audio | Distilled V2A — fewer steps, fixed 8-second output |
safetensors. No .pt / .ckpt / .bin in this mirror.checkpoints/
├── Woosh-AE/
│ ├── weights.safetensors
│ └── config.yaml
├── Woosh-CLAP/
│ ├── weights_audio.safetensors
│ ├── weights_text.safetensors
│ └── config.yaml
├── TextConditionerA/
│ ├── weights.safetensors
│ └── config.yaml
├── TextConditionerV/
│ ├── weights.safetensors
│ └── config.yaml
├── Woosh-Flow/
│ ├── weights.safetensors
│ └── config.yaml
├── Woosh-DFlow/
│ ├── weights.safetensors
│ └── config.yaml
├── Woosh-VFlow-8s/
│ ├── weights.safetensors
│ └── config.yaml
└── Woosh-DVFlow-8s/
├── weights.safetensors
└── config.yamlwoosh package. Clone and install the upstream repo, then point it at a local copy of this mirror's checkpoints/ directory.1# Clone upstream
2git clone https://github.com/SonyResearch/Woosh.git
3cd Woosh
4
5# Sony's suggested env setup (uses uv)
6uv sync
7uv pip install -e .
8
9# Pull weights from this mirror
10hf download AEmotionStudio/woosh-models --local-dir ./