-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
torch.distributed kmeans #3876
torch.distributed kmeans #3876
Conversation
This pull request was exported from Phabricator. Differential Revision: D63013820 |
Summary: The previous version required scipy to do the accumulation, which is replaced here with a nifty piece of numpy accumulation. This removes the need for scipy for non-sparse data. Differential Revision: D62884307
This pull request was exported from Phabricator. Differential Revision: D63013820 |
Summary: Pull Request resolved: facebookresearch#3876 Demo script for distributed kmeans. It provides a `DatasetAssign` object and shows how to run it with torch.distributed. Reviewed By: asadoughi, pankajsingh88 Differential Revision: D63013820
13622db
to
e4d594d
Compare
This pull request was exported from Phabricator. Differential Revision: D63013820 |
Summary: Pull Request resolved: facebookresearch#3876 Demo script for distributed kmeans. It provides a `DatasetAssign` object and shows how to run it with torch.distributed. Reviewed By: asadoughi, pankajsingh88 Differential Revision: D63013820
e4d594d
to
0ff90d8
Compare
This pull request was exported from Phabricator. Differential Revision: D63013820 |
Summary: Pull Request resolved: facebookresearch#3876 Demo script for distributed kmeans. It provides a `DatasetAssign` object and shows how to run it with torch.distributed. Reviewed By: asadoughi, pankajsingh88 Differential Revision: D63013820
0ff90d8
to
de832e2
Compare
Summary: The contrib.torch subdirectory is intended to receive modules in python that are useful for similarity search and that apply to CPU or GPU pytorch tensors. The current version includes CPU clustering on torch tensors. To be added: * implementation of PQ Differential Revision: D62759207
This pull request was exported from Phabricator. Differential Revision: D63013820 |
Summary: Pull Request resolved: facebookresearch#3876 Demo script for distributed kmeans. It provides a `DatasetAssign` object and shows how to run it with torch.distributed. Reviewed By: asadoughi, pankajsingh88 Differential Revision: D63013820
de832e2
to
b4c442d
Compare
This pull request was exported from Phabricator. Differential Revision: D63013820 |
Summary: Pull Request resolved: facebookresearch#3876 Demo script for distributed kmeans. It provides a `DatasetAssign` object and shows how to run it with torch.distributed. Reviewed By: asadoughi, pankajsingh88 Differential Revision: D63013820
b4c442d
to
6591d80
Compare
This pull request was exported from Phabricator. Differential Revision: D63013820 |
Summary: Pull Request resolved: facebookresearch#3876 Demo script for distributed kmeans. It provides a `DatasetAssign` object and shows how to run it with torch.distributed. Reviewed By: asadoughi, pankajsingh88 Differential Revision: D63013820
6591d80
to
c96f0f4
Compare
This pull request was exported from Phabricator. Differential Revision: D63013820 |
Summary: Pull Request resolved: facebookresearch#3876 Demo script for distributed kmeans. It provides a `DatasetAssign` object and shows how to run it with torch.distributed. Reviewed By: asadoughi, pankajsingh88 Differential Revision: D63013820
c96f0f4
to
fde0004
Compare
Summary: Pull Request resolved: facebookresearch#3876 Demo script for distributed kmeans. It provides a `DatasetAssign` object and shows how to run it with torch.distributed. Reviewed By: asadoughi, pankajsingh88 Differential Revision: D63013820
This pull request was exported from Phabricator. Differential Revision: D63013820 |
fde0004
to
64d29f3
Compare
This pull request has been merged in 838612c. |
Summary: Pull Request resolved: facebookresearch#3876 Demo script for distributed kmeans. It provides a `DatasetAssign` object and shows how to run it with torch.distributed. Reviewed By: asadoughi, pankajsingh88 Differential Revision: D63013820 fbshipit-source-id: 22c959f3afdc04fd4aa8b9aeed309ea6290b1328
Summary: Demo script for distributed kmeans. It provides a
DatasetAssign
object and shows how to run it with torch.distributed.Reviewed By: asadoughi, pankajsingh88
Differential Revision: D63013820