MCPcopy Index your code
hub / github.com/clips/pattern / __init__

Method __init__

pattern/vector/__init__.py:1563–1567  ·  view source on GitHub ↗

A nested list of Cluster and Vector objects, returned from hierarchical() clustering.

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

1561class Cluster(list):
1562
1563 def __init__(self, *args, **kwargs):
1564 """ A nested list of Cluster and Vector objects,
1565 returned from hierarchical() clustering.
1566 """
1567 list.__init__(self, *args, **kwargs)
1568
1569 @property
1570 def depth(self):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected