Related diagram: #53 (comment)
The idea would be to create something that could be called like this:
# Call to get model with sensible defaults for our use-case
clusterer = get_clusterer("kmeans")
clusterer = get_clusterer("hdscan")
# Call to pass in override
custom_config = {}
clusterer = get_clusterer("hdscan", custom_config)
To Do
Related diagram: #53 (comment)
The idea would be to create something that could be called like this:
To Do