Instructions to use autotools/ai_video_studio with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use autotools/ai_video_studio with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: llama cli -hf autotools/ai_video_studio:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: llama cli -hf autotools/ai_video_studio:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf autotools/ai_video_studio:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf autotools/ai_video_studio:Q4_K_M
Use Docker
docker model run hf.co/autotools/ai_video_studio:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use autotools/ai_video_studio with Ollama:
ollama run hf.co/autotools/ai_video_studio:Q4_K_M
- Unsloth Studio
How to use autotools/ai_video_studio with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for autotools/ai_video_studio to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for autotools/ai_video_studio to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for autotools/ai_video_studio to start chatting
- Atomic Chat new
- Docker Model Runner
How to use autotools/ai_video_studio with Docker Model Runner:
docker model run hf.co/autotools/ai_video_studio:Q4_K_M
- Lemonade
How to use autotools/ai_video_studio with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull autotools/ai_video_studio:Q4_K_M
Run and chat with the model
lemonade run user.ai_video_studio-Q4_K_M
List all available models
lemonade list
File size: 12,552 Bytes
e6aed17 | 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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | #!/usr/bin/env python3
# Copyright 2026 Xiaomi Corp. (authors: Han Zhu)
#
# See ../../LICENSE for clarification regarding multiple authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
UTMOS strong model.
Implementation from https://github.com/tarepan/SpeechMOS
"""
import math
from typing import List, Optional, Tuple
import torch
import torch.nn.functional as F
from torch import Tensor, nn
class UTMOS22Strong(nn.Module):
"""Saeki_2022 paper's `UTMOS strong learner` inference model
(w/o Phoneme encoder)."""
def __init__(self):
"""Init."""
super().__init__() # pyright: ignore [reportUnknownMemberType]
feat_ssl, feat_domain_emb, feat_judge_emb, feat_rnn_h, feat_proj_h = (
768,
128,
128,
512,
2048,
)
feat_cat = feat_ssl + feat_domain_emb + feat_judge_emb
# SSL/DataDomainEmb/JudgeIdEmb/BLSTM/Projection
self.wav2vec2 = Wav2Vec2Model()
self.domain_emb = nn.Parameter(
data=torch.empty(1, feat_domain_emb), requires_grad=False
)
self.judge_emb = nn.Parameter(
data=torch.empty(1, feat_judge_emb), requires_grad=False
)
self.blstm = nn.LSTM(
input_size=feat_cat,
hidden_size=feat_rnn_h,
batch_first=True,
bidirectional=True,
)
self.projection = nn.Sequential(
nn.Linear(feat_rnn_h * 2, feat_proj_h), nn.ReLU(), nn.Linear(feat_proj_h, 1)
)
def forward(self, wave: Tensor, sr: int) -> Tensor: # pylint: disable=invalid-name
"""wave-to-score :: (B, T) -> (B,)"""
# Feature extraction :: (B, T) -> (B, Frame, Feat)
unit_series = self.wav2vec2(wave)
bsz, frm, _ = unit_series.size()
# DataDomain/JudgeId Embedding's Batch/Time expansion ::
# (B=1, Feat) -> (B=bsz, Frame=frm, Feat)
domain_series = self.domain_emb.unsqueeze(1).expand(bsz, frm, -1)
judge_series = self.judge_emb.unsqueeze(1).expand(bsz, frm, -1)
# Feature concatenation :: (B, Frame, Feat=f1) + (B, Frame, Feat=f2) +
# (B, Frame, Feat=f3) -> (B, Frame, Feat=f1+f2+f3)
cat_series = torch.cat([unit_series, domain_series, judge_series], dim=2)
# Frame-scale score estimation :: (B, Frame, Feat) -> (B, Frame, Feat)
# -> (B, Frame, Feat=1) - BLSTM/Projection
feat_series = self.blstm(cat_series)[0]
score_series = self.projection(feat_series)
# Utterance-scale score :: (B, Frame, Feat=1) -> (B, Feat=1)
# -> (B,) - Time averaging
utter_score = score_series.mean(dim=1).squeeze(1) * 2 + 3
return utter_score
class Wav2Vec2Model(nn.Module):
"""Wav2Vev2."""
def __init__(self):
super().__init__() # pyright: ignore [reportUnknownMemberType]
feat_h1, feat_h2 = 512, 768
feature_enc_layers = (
[(feat_h1, 10, 5)] + [(feat_h1, 3, 2)] * 4 + [(feat_h1, 2, 2)] * 2
)
self.feature_extractor = ConvFeatureExtractionModel(
conv_layers=feature_enc_layers
) # pyright: ignore [reportGeneralTypeIssues]
self.layer_norm = nn.LayerNorm(feat_h1)
self.post_extract_proj = nn.Linear(feat_h1, feat_h2)
self.dropout_input = nn.Dropout(0.1)
self.encoder = TransformerEncoder(feat_h2)
# Remnants
self.mask_emb = nn.Parameter(torch.FloatTensor(feat_h2))
def forward(self, source: Tensor):
"""FeatureEncoder + ContextTransformer"""
# Feature encoding
features = self.feature_extractor(source)
features = features.transpose(1, 2)
features = self.layer_norm(features)
features = self.post_extract_proj(features)
# Context transformer
x = self.encoder(features)
return x
class ConvFeatureExtractionModel(nn.Module):
"""Feature Encoder."""
def __init__(self, conv_layers: List[Tuple[int, int, int]]):
super().__init__() # pyright: ignore [reportUnknownMemberType]
def block(
n_in: int, n_out: int, k: int, stride: int, is_group_norm: bool = False
):
if is_group_norm:
return nn.Sequential(
nn.Conv1d(n_in, n_out, k, stride=stride, bias=False),
nn.Dropout(p=0.0),
nn.GroupNorm(dim, dim, affine=True),
nn.GELU(),
)
else:
return nn.Sequential(
nn.Conv1d(n_in, n_out, k, stride=stride, bias=False),
nn.Dropout(p=0.0),
nn.GELU(),
)
in_d = 1
self.conv_layers = nn.ModuleList()
for i, params in enumerate(conv_layers):
(dim, k, stride) = params
self.conv_layers.append(block(in_d, dim, k, stride, is_group_norm=i == 0))
in_d = dim
def forward(self, series: Tensor) -> Tensor:
""":: (B, T) -> (B, Feat, Frame)"""
series = series.unsqueeze(1)
for conv in self.conv_layers:
series = conv(series)
return series
class TransformerEncoder(nn.Module):
"""Transformer."""
def build_encoder_layer(self, feat: int):
"""Layer builder."""
return TransformerSentenceEncoderLayer(
embedding_dim=feat,
ffn_embedding_dim=3072,
num_attention_heads=12,
activation_fn="gelu",
dropout=0.1,
attention_dropout=0.1,
activation_dropout=0.0,
layer_norm_first=False,
)
def __init__(self, feat: int):
super().__init__() # pyright: ignore [reportUnknownMemberType]
self.required_seq_len_multiple = 2
self.pos_conv = nn.Sequential(
*[
nn.utils.weight_norm(
nn.Conv1d(feat, feat, kernel_size=128, padding=128 // 2, groups=16),
name="weight",
dim=2,
),
SamePad(128),
nn.GELU(),
]
)
self.layer_norm = nn.LayerNorm(feat)
self.layers = nn.ModuleList([self.build_encoder_layer(feat) for _ in range(12)])
def forward(self, x: Tensor) -> Tensor:
x_conv = self.pos_conv(x.transpose(1, 2)).transpose(1, 2)
x = x + x_conv
x = self.layer_norm(x)
# pad to the sequence length dimension
x, pad_length = pad_to_multiple(
x, self.required_seq_len_multiple, dim=-2, value=0
)
if pad_length > 0:
padding_mask = x.new_zeros((x.size(0), x.size(1)), dtype=torch.bool)
padding_mask[:, -pad_length:] = True
else:
padding_mask, _ = pad_to_multiple(
None, self.required_seq_len_multiple, dim=-1, value=True
)
# :: (B, T, Feat) -> (T, B, Feat)
x = x.transpose(0, 1)
for layer in self.layers:
x = layer(x, padding_mask)
# :: (T, B, Feat) -> (B, T, Feat)
x = x.transpose(0, 1)
# undo paddding
if pad_length > 0:
x = x[:, :-pad_length]
return x
class SamePad(nn.Module):
"""Tail inverse padding."""
def __init__(self, kernel_size: int):
super().__init__() # pyright: ignore [reportUnknownMemberType]
assert kernel_size % 2 == 0, "`SamePad` now support only even kernel."
def forward(self, x: Tensor) -> Tensor:
return x[:, :, :-1]
def pad_to_multiple(
x: Optional[Tensor], multiple: int, dim: int = -1, value: float = 0
) -> Tuple[Optional[Tensor], int]:
"""Tail padding."""
if x is None:
return None, 0
tsz = x.size(dim)
m = tsz / multiple
remainder = math.ceil(m) * multiple - tsz
if m.is_integer():
return x, 0
pad_offset = (0,) * (-1 - dim) * 2
return F.pad(x, (*pad_offset, 0, remainder), value=value), remainder
class TransformerSentenceEncoderLayer(nn.Module):
"""Transformer Encoder Layer used in BERT/XLM style pre-trained models."""
def __init__(
self,
embedding_dim: int,
ffn_embedding_dim: int,
num_attention_heads: int,
activation_fn: str,
dropout: float,
attention_dropout: float,
activation_dropout: float,
layer_norm_first: bool,
) -> None:
super().__init__() # pyright: ignore [reportUnknownMemberType]
assert layer_norm_first is False, "`layer_norm_first` is fixed to `False`"
assert activation_fn == "gelu", "`activation_fn` is fixed to `gelu`"
feat = embedding_dim
self.self_attn = MultiheadAttention(
feat, num_attention_heads, attention_dropout
)
self.dropout1 = nn.Dropout(dropout)
self.dropout2 = nn.Dropout(activation_dropout)
self.dropout3 = nn.Dropout(dropout)
self.fc1 = nn.Linear(feat, ffn_embedding_dim)
self.fc2 = nn.Linear(ffn_embedding_dim, feat)
self.self_attn_layer_norm = nn.LayerNorm(feat)
self.final_layer_norm = nn.LayerNorm(feat)
def forward(self, x: Tensor, self_attn_padding_mask: Optional[Tensor]):
# Res[Attn-Do]-LN
residual = x
x = self.self_attn(x, x, x, self_attn_padding_mask)
x = self.dropout1(x)
x = residual + x
x = self.self_attn_layer_norm(x)
# Res[SegFC-GELU-Do-SegFC-Do]-LN
residual = x
x = F.gelu(self.fc1(x)) # pyright: ignore [reportUnknownMemberType]
x = self.dropout2(x)
x = self.fc2(x)
x = self.dropout3(x)
x = residual + x
x = self.final_layer_norm(x)
return x
class MultiheadAttention(nn.Module):
"""Multi-headed attention."""
def __init__(self, embed_dim: int, num_heads: int, dropout: float):
super().__init__() # pyright: ignore [reportUnknownMemberType]
self.embed_dim, self.num_heads, self.p_dropout = embed_dim, num_heads, dropout
self.q_proj = nn.Linear(embed_dim, embed_dim, bias=True)
self.k_proj = nn.Linear(embed_dim, embed_dim, bias=True)
self.v_proj = nn.Linear(embed_dim, embed_dim, bias=True)
self.out_proj = nn.Linear(embed_dim, embed_dim, bias=True)
def forward(
self,
query: Tensor,
key: Tensor,
value: Tensor,
key_padding_mask: Optional[Tensor],
) -> Tensor:
"""
Args:
query :: (T, B, Feat)
key_padding_mask :: (B, src_len) - mask to exclude keys that are pads
, where padding elements are indicated by 1s.
"""
return F.multi_head_attention_forward(
query=query,
key=key,
value=value,
embed_dim_to_check=self.embed_dim,
num_heads=self.num_heads,
in_proj_weight=torch.empty([0]),
in_proj_bias=torch.cat(
(self.q_proj.bias, self.k_proj.bias, self.v_proj.bias)
),
bias_k=None,
bias_v=None,
add_zero_attn=False,
dropout_p=self.p_dropout,
out_proj_weight=self.out_proj.weight,
out_proj_bias=self.out_proj.bias,
training=False,
key_padding_mask=key_padding_mask.bool()
if key_padding_mask is not None
else None,
need_weights=False,
use_separate_proj_weight=True,
q_proj_weight=self.q_proj.weight,
k_proj_weight=self.k_proj.weight,
v_proj_weight=self.v_proj.weight,
)[0]
|