SYMBOL INDEX (39 symbols across 6 files) FILE: setup.py function read (line 13) | def read(*parts): function find_version (line 18) | def find_version(*file_paths): FILE: wordseg/freqitem.py class FreqItem (line 14) | class FreqItem(object): method __init__ (line 15) | def __init__(self, transactions, sup_theta=.1): method filterCandidates (line 20) | def filterCandidates(self, cand): method freqOneSet (line 29) | def freqOneSet(self): method genNextCand (line 39) | def genNextCand(self, preItems): method genFreqItemSets (line 56) | def genFreqItemSets(self): FILE: wordseg/hashtree.py class HashTreeNode (line 9) | class HashTreeNode(object): method __init__ (line 10) | def __init__(self, name=''): method addBag (line 16) | def addBag(self, bag): method count (line 26) | def count(self, transaction): method get (line 41) | def get(self, theta): method getNodes (line 52) | def getNodes(self, theta): method __str__ (line 60) | def __str__(self): function sameNode (line 63) | def sameNode(node1, node2): function sameNodes (line 66) | def sameNodes(nodes1, nodes2): class HashTree (line 72) | class HashTree(object): method __init__ (line 76) | def __init__(self, bags): method count (line 82) | def count(self, transactions): method get (line 85) | def get(self, theta): method getNodes (line 89) | def getNodes(self, theta): method __str__ (line 93) | def __str__(self): FILE: wordseg/probability.py function entropyOfList (line 10) | def entropyOfList(ls): FILE: wordseg/sequence.py function dedup (line 8) | def dedup(ls): function genSubstr (line 21) | def genSubstr(string, n): function genSubparts (line 32) | def genSubparts(string): function longestSubsequenceLength (line 44) | def longestSubsequenceLength(s1, s2): function longestSubsequence (line 58) | def longestSubsequence(s1, s2): FILE: wordseg/wordseg.py function indexOfSortedSuffix (line 17) | def indexOfSortedSuffix(doc, max_word_len): class WordInfo (line 30) | class WordInfo(object): method __init__ (line 34) | def __init__(self, text): method update (line 42) | def update(self, left, right): method compute (line 52) | def compute(self, length): method computeAggregation (line 61) | def computeAggregation(self, words_dict): class WordSegment (line 72) | class WordSegment(object): method __init__ (line 87) | def __init__(self, doc, max_word_len=5, min_freq=0.00005, min_entropy=... method genWords (line 107) | def genWords(self, doc): method segSentence (line 133) | def segSentence(self, sentence, method=ALL):