Error Loading CoreML Model (Yolact)

I am trying to use this repository https://github.com/Ma-Dan/Yolact-CoreML to test how fast the YOLACT Model would run on a new iPad, but I am getting this error:

Thread 1: EXC_BAD_ACCESS (code=1, address=0x0)

On this line:

#0 0x00000001a2d19830 in Espresso::ANECompilerEngine::transpose_kernel::is_valid_for_engine(std::__1::shared_ptr<Espresso::kernels_validation_status_t>, Espresso::base_kernel::validate_for_engine_args_t const&) const ()

I modified line 37 on the Yolact.swift file that was throwing this error from:

let model = yolact()

to

  let model: yolact = {
        do {
            let config = MLModelConfiguration()
            return try yolact(configuration: config)
        } catch{
            print(error)
            fatalError("Couldn&#039;t create model")
        }
    }()

Removing the only code warning that I got.

I don't know what else I can do.