Machine Learning in Elixir: Using Clustering - Error on module name (page 100)

Version: B1.0

On page 100 (epub version) the code:

model = Scholar.Clustering.KMeans.fit(train_inputs, ​num_clusters:​ 3)

throws an error: function Scholar.Clustering.KMeans.fit/2 is undefined (module Scholar.Clustering.KMeans is not available)

The code should be:

model = Scholar.Cluster.KMeans.fit(train_inputs, ​num_clusters:​ 3)