Skip to content
Snippets Groups Projects
Verified Commit caa9d661 authored by Yannick DAYER's avatar Yannick DAYER
Browse files

doc: fix data description comments in plot scripts

parent 528c803f
No related branches found
No related tags found
No related merge requests found
Pipeline #87920 failed
......@@ -14,7 +14,7 @@ versicolor = data[iris_data.target == 1]
virginica = data[iris_data.target == 2]
# Two clusters with
# 3 clusters with a feature dimensionality of 2
mle_machine = bob.learn.em.GMMMachine(3)
# Creating some fake means for the example
mle_machine.means = np.array([[5, 3], [4, 2], [7, 3.0]])
......
......@@ -18,7 +18,7 @@ setosa = data[iris_data.target == 0]
versicolor = data[iris_data.target == 1]
virginica = data[iris_data.target == 2]
# Two clusters with a feature dimensionality of 3
# 3 clusters with a feature dimensionality of 2
machine = GMMMachine(
3,
convergence_threshold=1e-5,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment