Get trellis to run

This commit is contained in:
Awni Hannun
2025-04-26 07:02:20 -07:00
parent e3d275bc49
commit 998404ada4
4 changed files with 33 additions and 4 deletions

View File

@@ -6,7 +6,6 @@ from typing import Any, Literal
import mlx.core as mx
from mlx.nn.layers.base import Module
from mlx.nn.layers.quantized import QuantizedLinear
from mlx.nn.layers.viterbi import quantize as trellis_quantize
class Identity(Module):

View File

@@ -5,7 +5,6 @@ from typing import Callable, Literal, Optional, Union
import mlx.core as mx
from mlx.nn.layers.base import Module
from mlx.nn.layers.viterbi import quantize as trellis_quantize
from mlx.utils import tree_map_with_path