| 121 | }; |
| 122 | |
| 123 | struct bark_model { |
| 124 | // The token encoders |
| 125 | struct gpt_model semantic_model; |
| 126 | struct gpt_model coarse_model; |
| 127 | struct gpt_model fine_model; |
| 128 | |
| 129 | // The vocabulary for the semantic encoder |
| 130 | struct bark_vocab vocab; |
| 131 | }; |
| 132 | |
| 133 | struct bark_context { |
| 134 | struct bark_model text_model; |