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
I am currently profiling ML.NET to find performance bottlenecks and places where .NET framework could do a better perf job.
I started with two the most time-consuming benchmarks from our public benchmark suite.
After some profiling, it turned out that parsing big text files in WordEmbeddingsTransform is a performance bottleneck.
WordEmbeddingsTransform
In the histogram below the red box 2 is parsing.
I optimized the code and then parallelized it.
Before:
After:
The PR is #1599
/cc @shauheen
The text was updated successfully, but these errors were encountered:
feddc72
adamsitnik
No branches or pull requests
I am currently profiling ML.NET to find performance bottlenecks and places where .NET framework could do a better perf job.
I started with two the most time-consuming benchmarks from our public benchmark suite.
After some profiling, it turned out that parsing big text files in
WordEmbeddingsTransform
is a performance bottleneck.In the histogram below the red box 2 is parsing.
I optimized the code and then parallelized it.
Before:
After:
The PR is #1599
/cc @shauheen
The text was updated successfully, but these errors were encountered: