Scott McKay

Results 98 comments of Scott McKay

Should be addressed by #12651 which will be included in the next ORT release.

> std::vector& bytes_data_holder) { The std::vector is a member of InferenceSession and is providing the storage. --- In reply to: [1205866045](https://github.com/microsoft/onnxruntime/pull/12465#issuecomment-1205866045) [](http://example.com/codeflow?ancestors=1205866045,1205866045) --- Refers to: onnxruntime/core/session/inference_session.cc:993 in e30ebad. [](commit_id =...

> Could we ask customers to use the AddExternalInitializers API instead? Not sure that helps. Looks like the API takes an OrtValue that we convert to a TensorProto (and I...

@mikeparker104 any ideas for this one? It appears that some CoreML pieces are removed or not included. Not sure if there's an mtouch setting we can tweak. https://docs.microsoft.com/en-us/xamarin/ios/deploy-test/linker?tabs=macos FWIW we...

@hssoab326 do you get errors if building locally with - the dotnet CLI - Visual Studio 2022 Preview Are you using the new single project structure (one csproj builds everything)...

Can you please try adding a reference to Microsoft.ML.OnnxRuntime in your MAUI App csproj.

If that doesn't work, could you possibly try building the example app locally? We've tested that and were able to use 'dotnet build' and 'dotnet publish' successfully with both SdkOnly...

Can you please provide the output from `dotnet --info` as well as the full command line/s and output from your attempt to build the sample app so we can make...

We were able to reproduce the issue in a CI. The sample app builds without a problem (so local builds and testing are fine). It's the 'publish' phase that seems...

Short term could you try adding this workaround to your csproj to manually insert CoreML into the frameworks the app links against? Adjust the 'Condition' if needed. ```csproj ```