We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23bb144 commit 5f2c98dCopy full SHA for 5f2c98d
CHANGELOG.md
@@ -1,5 +1,8 @@
1
# Release history
2
3
+## Version 1.3.4 (1/10/23)
4
+* (capfromtcs) Revert change to max_iter when specifying initialcenters.
5
+
6
## Version 1.3.3 (1/10/23)
7
* (capfromtcs) Changed intialization of kmeans from initialcenters, save more intermediate results.
8
* (utils.py) Factored out some transition array calculations.
capcalc/scripts/capfromtcs
@@ -737,7 +737,7 @@ if clustertype == "kmeans":
737
theinit = "k-means++"
738
else:
739
theinit = theclustercenters
740
- max_iter = 0
+ max_iter = 1
741
742
print("training model")
743
if minibatch:
0 commit comments