Views
No views yet
.safetensors — no
PyTorch, ONNX, or NumPy files are required at inference time.stepfun-ai/Step-Audio-EditX| File | Component | Format | Size |
|---|---|---|---|
model.safetensors | Step1 LM (3.5B params) | int8 | 3.5 GB |
flow-model.safetensors | Flow model (DiT + conformer) | int8 | 181 MB |
vq02.safetensors | VQ02 audio tokenizer | int8 | 162 MB |
vq06.safetensors | VQ06 audio tokenizer | bf16 | 249 MB |
hift.safetensors | HiFT vocoder | bf16 | 40 MB |
campplus.safetensors | CampPlus speaker embedding | bf16 | 13 MB |
flow-conditioner.safetensors | Flow conditioner | bf16 | 2.5 MB |
config.json | Step1 LM config + quantization | JSON | — |
flow-model-config.json | Flow model config | JSON | — |
vq02-config.json, vq06-config.json | Tokenizer configs | JSON | — |
step-audio-tokenizer-assets.safetensors | VQ02 codebook + CMVN | FP32 | ~2 MB |
step-audio-tokenizer-config.json | Tokenizer runtime config | JSON | — |
frontend-config.json | Prompt mel frontend config | JSON | — |
hift-config.json, campplus-config.json, flow-conditioner-config.json | Component configs | JSON | — |
tokenizer.json, tokenizer_config.json | Step1 tokenizer | JSON | — |
1hf download appautomaton/step-audio-editx-8bit-mlx \
2 --local-dir models/stepfun/step_audio_editx/mlx-int81python scripts/generate/step_audio_editx.py \
2 --prompt-audio reference.wav \
3 --prompt-text "Transcript of reference audio." \
4 -o cloned.wav \
5 clone --target-text "New speech in the cloned voice."1python scripts/generate/step_audio_editx.py \
2 --prompt-audio input.wav \
3 --prompt-text "Transcript of input audio." \
4 -o happy.wav \
5 edit --edit-type emotion --edit-info happy| Edit type | Description | --edit-info examples |
|---|---|---|
emotion | Change the emotion of speech | happy, sad, angry, surprised |
style | Change speaking style | whispering, broadcasting, formal |
speed | Change speaking speed | fast, slow |
denoise | Remove noise from audio | not used |
vad | Remove silences from audio | not used |
paralinguistic | Add non-verbal sounds | requires --target-text |
mlx-speechstepfun-ai/Step-Audio-EditXstepfun-ai/Step-Audio-EditX.