fastkmeans 0.4.0__tar.gz → 0.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/PKG-INFO +15 -2
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/README.md +14 -1
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/fastkmeans/__init__.py +1 -1
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/fastkmeans/kmeans.py +2 -0
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/fastkmeans/triton_kernels.py +2 -0
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/fastkmeans.egg-info/PKG-INFO +15 -2
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/pyproject.toml +1 -1
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/LICENSE +0 -0
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/fastkmeans.egg-info/SOURCES.txt +0 -0
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/fastkmeans.egg-info/dependency_links.txt +0 -0
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/fastkmeans.egg-info/requires.txt +0 -0
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/fastkmeans.egg-info/top_level.txt +0 -0
- {fastkmeans-0.4.0 → fastkmeans-0.5.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fastkmeans
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.5.0
|
4
4
|
Summary: Add your description here
|
5
5
|
Author-email: Ben Clavié <bc@answer.ai>, Benjamin Warner <bw@answer.ai>
|
6
6
|
Maintainer-email: Ben Clavié <bc@answer.ai>, Benjamin Warner <bw@answer.ai>
|
@@ -14,8 +14,9 @@ Dynamic: license-file
|
|
14
14
|
|
15
15
|
# fastkmeans
|
16
16
|
|
17
|
-

|
18
18
|
[](https://twitter.com/bclavie)
|
19
|
+
[](https://twitter.com/benjamin_warner)
|
19
20
|
<!-- [](https://pepy.tech/project/fastkmeans) -->
|
20
21
|
|
21
22
|
_A fast and efficient k-means implementation for PyTorch, with support for GPU and CPU._
|
@@ -96,3 +97,15 @@ Then, run the benchmark script:
|
|
96
97
|
```bash
|
97
98
|
CUDA_VISIBLE_DEVICES=0 python speedbench.py --do-faiss --do-fastkmeans --do-fastkmeans-triton --do-evals
|
98
99
|
```
|
100
|
+
|
101
|
+
### Citation
|
102
|
+
|
103
|
+
If you use fastmeans and want to/need to cite it in your work, please feel free to use the citation below:
|
104
|
+
|
105
|
+
```bibtex
|
106
|
+
@misc{fastkmeans2025,
|
107
|
+
author = {Benjamin Clavié and Benjamin Warner},
|
108
|
+
title = {fastkmeans: Accelerated KMeans Clustering in PyTorch and Triton},
|
109
|
+
year = {2025},
|
110
|
+
howpublished = {\url{https://github.com/AnswerDotAI/fastkmeans/}}
|
111
|
+
}
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# fastkmeans
|
2
2
|
|
3
|
-

|
4
4
|
[](https://twitter.com/bclavie)
|
5
|
+
[](https://twitter.com/benjamin_warner)
|
5
6
|
<!-- [](https://pepy.tech/project/fastkmeans) -->
|
6
7
|
|
7
8
|
_A fast and efficient k-means implementation for PyTorch, with support for GPU and CPU._
|
@@ -82,3 +83,15 @@ Then, run the benchmark script:
|
|
82
83
|
```bash
|
83
84
|
CUDA_VISIBLE_DEVICES=0 python speedbench.py --do-faiss --do-fastkmeans --do-fastkmeans-triton --do-evals
|
84
85
|
```
|
86
|
+
|
87
|
+
### Citation
|
88
|
+
|
89
|
+
If you use fastmeans and want to/need to cite it in your work, please feel free to use the citation below:
|
90
|
+
|
91
|
+
```bibtex
|
92
|
+
@misc{fastkmeans2025,
|
93
|
+
author = {Benjamin Clavié and Benjamin Warner},
|
94
|
+
title = {fastkmeans: Accelerated KMeans Clustering in PyTorch and Triton},
|
95
|
+
year = {2025},
|
96
|
+
howpublished = {\url{https://github.com/AnswerDotAI/fastkmeans/}}
|
97
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fastkmeans
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.5.0
|
4
4
|
Summary: Add your description here
|
5
5
|
Author-email: Ben Clavié <bc@answer.ai>, Benjamin Warner <bw@answer.ai>
|
6
6
|
Maintainer-email: Ben Clavié <bc@answer.ai>, Benjamin Warner <bw@answer.ai>
|
@@ -14,8 +14,9 @@ Dynamic: license-file
|
|
14
14
|
|
15
15
|
# fastkmeans
|
16
16
|
|
17
|
-

|
18
18
|
[](https://twitter.com/bclavie)
|
19
|
+
[](https://twitter.com/benjamin_warner)
|
19
20
|
<!-- [](https://pepy.tech/project/fastkmeans) -->
|
20
21
|
|
21
22
|
_A fast and efficient k-means implementation for PyTorch, with support for GPU and CPU._
|
@@ -96,3 +97,15 @@ Then, run the benchmark script:
|
|
96
97
|
```bash
|
97
98
|
CUDA_VISIBLE_DEVICES=0 python speedbench.py --do-faiss --do-fastkmeans --do-fastkmeans-triton --do-evals
|
98
99
|
```
|
100
|
+
|
101
|
+
### Citation
|
102
|
+
|
103
|
+
If you use fastmeans and want to/need to cite it in your work, please feel free to use the citation below:
|
104
|
+
|
105
|
+
```bibtex
|
106
|
+
@misc{fastkmeans2025,
|
107
|
+
author = {Benjamin Clavié and Benjamin Warner},
|
108
|
+
title = {fastkmeans: Accelerated KMeans Clustering in PyTorch and Triton},
|
109
|
+
year = {2025},
|
110
|
+
howpublished = {\url{https://github.com/AnswerDotAI/fastkmeans/}}
|
111
|
+
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|