File size: 2,157 Bytes
2650e60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0660f1a
 
 
2650e60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
license: other
library_name: ggml
tags:
- gguf
- text-to-speech
- tts
- moss-tts
- vulkan
- directml
---

# MOSS-TTS-PNY GGUF

Portable GGUF/ONNX artifacts for the MOSS-TTS-PNY C++ runtime.

This repository is intended for use with the model-free Windows Vulkan + DirectML
bundle produced by the companion C++ project. Put these files in the bundle's
`models/` directory, or run `download-models.bat` from the bundle root.

## Files

| File | Purpose |
| --- | --- |
| `moss-tts-pny-f16.gguf` | Full precision main MOSS TTS GGUF. |
| `moss-tts-pny-global-q8_0.gguf` | Main model with the global transformer quantized to Q8_0. |
| `moss-tts-pny-global-q6_k.gguf` | Main model with the global transformer quantized to Q6_K. |
| `moss-audio-decoder4-f16.gguf` | Full precision decoder4 codes-to-features model. |
| `moss-audio-decoder4-q8_0.gguf` | Q8_0 decoder4 codes-to-features model. |
| `moss-tts-qwen2-tokenizer.gguf` | Qwen2 tokenizer vocabulary GGUF used by the runtime. |
| `istftnet2_decoder.onnx` | ONNX iSTFTNet2 vocoder used by the Windows DirectML path. |
| `istftnet2-vocoder-f16.gguf` | Experimental GGUF vocoder artifact. The packaged demos currently use ONNX. |

## Windows Bundle Usage

From the extracted Windows bundle root:

```bat
download-models.bat
run-vulkan-directml-full.bat
```

`download-models.bat` uses public HTTPS downloads from this repository. It does
not require the Hugging Face CLI, Python, Git LFS, or a Hugging Face account.

The quantized demo uses:

```bat
run-vulkan-directml-quant.bat
```

Expected model layout:

```text
models/
  moss-tts-pny-f16.gguf
  moss-tts-pny-global-q8_0.gguf
  moss-tts-pny-global-q6_k.gguf
  moss-audio-decoder4-f16.gguf
  moss-audio-decoder4-q8_0.gguf
  moss-tts-qwen2-tokenizer.gguf
  istftnet2_decoder.onnx
  istftnet2-vocoder-f16.gguf
```

## Notes

- The model-free Windows zip intentionally excludes these large artifacts.
- The full demo uses `moss-tts-pny-f16.gguf` and `moss-audio-decoder4-f16.gguf`.
- The quant demo uses `moss-tts-pny-global-q6_k.gguf` and
  `moss-audio-decoder4-q8_0.gguf`.
- The ONNX vocoder is the supported vocoder path for the DirectML Windows demo.