-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
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
Remove some allocations #262
Conversation
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## development #262 +/- ##
===============================================
+ Coverage 45.38% 45.40% +0.02%
===============================================
Files 85 85
Lines 7231 7232 +1
===============================================
+ Hits 3282 3284 +2
+ Misses 3949 3948 -1
... and 13 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Second commit makes training another 14% faster on my test data. |
thanks a lot, i will look into it as soon as possible. Please run |
FWIW, rustfmt does not complain about my changes; those lines are unrelated to this PR. I'll gladly run rustfmt if you still want me to, however. I currently notice that my accuracy estimation (possibly The difference between training and estimation is only |
good job! Tomorrow I will have some time at the computer to take a closer look to your contribution. clippy is complaining for unnecessary parenthesis. For the sake of making the tests pass please apply the requested minor changes even if present in other files. Thanks again for your time spent using Smartcore. |
I can create a PR fixing clippy in a couple of hours. That is probably related to the new lints added to the stable version released a couple of days ago |
thanks Luis 👍 |
PR opened at: #263 We can merge that first. Then we can rebase these changes. Hopefully, CI will be green after that |
@rubdos could you rebase your changes? It seems that there are not conflicts |
let mut f = self.b.unwrap(); | ||
|
||
let xi: Vec<_> = x.iter().map(|e| e.to_f64().unwrap()).collect(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me. But needs a rebase
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for this.
If you rebase your branch with current development
I will merge.
Done! |
Performance improvements, i.e. #260 / #261
Fixes no specific issue
Checklist
Current behaviour
smartcore svm is a bit slow
New expected behaviour
smartcore svm is a bit less slow! About 4% faster training in my very simple 5 features x 159 samples test.
Change logs
This removes some allocations by reusing vectors and clearing them in iterations.