MCPcopy Create free account
hub / github.com/ddbourgin/numpy-ml / __init__

Method __init__

numpy_ml/preprocessing/nlp.py:400–404  ·  view source on GitHub ↗
(self, key, val)

Source from the content-addressed store, hash-verified

398
399class Node(object):
400 def __init__(self, key, val):
401 self.key = key
402 self.val = val
403 self.left = None
404 self.right = None
405
406 def __gt__(self, other):
407 """Greater than"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected