We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the documentation, both Onnx and Json paths are optional. Make at least Onnx path mandatory for conversion.
Onnx
Json
https://github.com/dotnet/machinelearning/blob/master/src/Microsoft.ML/Models/OnnxConverter.cs
OnnxConverter converter = new OnnxConverter() { InputsToDrop = new[] { "Label" }, OutputsToDrop = new[] { "Label", "Features" }, Onnx = onnxPath, Json = onnxAsJsonPath, Domain = "Onnx" }; converter.Convert(model);
The text was updated successfully, but these errors were encountered:
codemzs
Successfully merging a pull request may close this issue.
According to the documentation, both
Onnx
andJson
paths are optional. Make at leastOnnx
path mandatory for conversion.https://github.com/dotnet/machinelearning/blob/master/src/Microsoft.ML/Models/OnnxConverter.cs
The text was updated successfully, but these errors were encountered: