We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The file clustering.py has some lines of code:
def __init__(self, geo_locs_, k_): self.geo_locations = geo_locs_ self.k = k_ self.clusters = [] #clusters of nodes self.means = [] #means of clusters self.debug = True #debug flag
self.clusters = [] the clusters is a list. Should the self.clusters is a dict?
The text was updated successfully, but these errors were encountered:
Sure, it's a dict. Actually, It's not important, in function assign_points() line:90,clusters define as a dict.
Sorry, something went wrong.
No branches or pull requests
The file clustering.py has some lines of code:
self.clusters = []
the clusters is a list.
Should the self.clusters is a dict?
The text was updated successfully, but these errors were encountered: