问题 I'm using ML.NET in an ASP.NET Core application, and I am using the following code in Startup : var builder = services.AddPredictionEnginePool<Foo, Bar>(); if (File.Exists("model.zip")) { builder.FromFile(String.Empty, "model.zip", true); } If model.zip doesn't exist, I create it later in the middleware. How do I add it to the PredictionEnginePool that is injected? There are no options to load a model via PredictionEnginePool , and instantiating or injecting a PredictionEnginePoolBuilder isn