Skip to content
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

ml2 end to end machine learining #591

Open
d5423197 opened this issue Sep 15, 2020 · 1 comment
Open

ml2 end to end machine learining #591

d5423197 opened this issue Sep 15, 2020 · 1 comment

Comments

@d5423197
Copy link

Hello there,

I could not understand this piece of code.

def indices_of_top_k(arr, k):
return np.sort(np.argpartition(np.array(arr), -k)[-k:])

Can't we just use argsort() instead?

Thanks for your help.

@digitech-ai
Copy link

argsort will work fine. argpartition just performs better.
In case of you have 1million feature and if we want to identify first 500 important feature, using argpartition we dont need to sort the entire array. Algortithm will stop sorting, once it identified the last 500 (in case of negative indexing).

Hope it helps.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants