encoder.safetensors) and the decoder (decoder.safetensors).1import MLX
2import MLXNN
3
4let encoderUrl = URL(fileURLWithPath: "path/to/whisper-tiny-mlx-safetensors/encoder.safetensors")
5let arrays = try MLX.loadArrays(url: encoderUrl)
6let encoderParams = ModuleParameters.unflattened(arrays)
7// Create the model and load the parameters