mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	* Delete out-dated HuffmanCodec comment
This commit is contained in:
		
							parent
							
								
									879ef9fa3e
								
							
						
					
					
						commit
						cd1d047cb8
					
				| 
						 | 
					@ -9,18 +9,6 @@ from .bits cimport BitArray
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
cdef class HuffmanCodec:
 | 
					cdef class HuffmanCodec:
 | 
				
			||||||
    """Create a Huffman code table, and use it to pack and unpack sequences into
 | 
					 | 
				
			||||||
    byte strings. Emphasis is on efficiency, so API is quite strict:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Messages will be encoded/decoded as indices that refer to the probability sequence.
 | 
					 | 
				
			||||||
    For instance, the sequence [5, 10, 8] indicates the 5th most frequent item,
 | 
					 | 
				
			||||||
    the 10th most frequent item, the 8th most frequent item.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Arguments:
 | 
					 | 
				
			||||||
        weights (float[:]): A descending-sorted sequence of probabilities/weights.
 | 
					 | 
				
			||||||
          Must include a weight for an EOL symbol.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    """
 | 
					 | 
				
			||||||
    def __init__(self, freqs):
 | 
					    def __init__(self, freqs):
 | 
				
			||||||
        cdef float count
 | 
					        cdef float count
 | 
				
			||||||
        cdef Code code
 | 
					        cdef Code code
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user