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
When you save a model, it generates a Version.txt file in the .zip, so we can tell which version of ML.NET was used to generate the model.
Version.txt
machinelearning/src/Microsoft.ML.Core/Data/Repository.cs
Lines 307 to 310 in b861b5d
However, the issue is we are using the AssemblyVersion there, which isn't great information as all the models produced are showing:
1.0.0.0
We should write the FileVersion or AssemblyInformationalVersion instead, which will give us the exact build and SHA:
[assembly: AssemblyFileVersion("0.12.27526.3")] [assembly: AssemblyInformationalVersion("0.12.27526.3 @BuiltBy: dlab14-DDVSOWINAGE101 @Branch: master @SrcCode: https://github.com/dotnet/machinelearning/tree/9caafb04d2b4f298f2a9479a9550597afee32c94+9caafb04d2b4f298f2a9479a9550597afee32c94")]
The text was updated successfully, but these errors were encountered:
Ivanidzo4ka
Successfully merging a pull request may close this issue.
When you save a model, it generates a
Version.txt
file in the .zip, so we can tell which version of ML.NET was used to generate the model.machinelearning/src/Microsoft.ML.Core/Data/Repository.cs
Lines 307 to 310 in b861b5d
However, the issue is we are using the AssemblyVersion there, which isn't great information as all the models produced are showing:
We should write the FileVersion or AssemblyInformationalVersion instead, which will give us the exact build and SHA:
The text was updated successfully, but these errors were encountered: