mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 16:07:41 +03:00 
			
		
		
		
	* Use isort with Black profile * isort all the things * Fix import cycles as a result of import sorting * Add DOCBIN_ALL_ATTRS type definition * Add isort to requirements * Remove isort from build dependencies check * Typo
		
			
				
	
	
		
			23 lines
		
	
	
		
			614 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			614 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from dataclasses import dataclass
 | |
| from typing import List
 | |
| 
 | |
| from .align import get_alignments
 | |
| from .alignment_array import AlignmentArray
 | |
| 
 | |
| 
 | |
| @dataclass
 | |
| class Alignment:
 | |
|     x2y: AlignmentArray
 | |
|     y2x: AlignmentArray
 | |
| 
 | |
|     @classmethod
 | |
|     def from_indices(cls, x2y: List[List[int]], y2x: List[List[int]]) -> "Alignment":
 | |
|         x2y = AlignmentArray(x2y)
 | |
|         y2x = AlignmentArray(y2x)
 | |
|         return Alignment(x2y=x2y, y2x=y2x)
 | |
| 
 | |
|     @classmethod
 | |
|     def from_strings(cls, A: List[str], B: List[str]) -> "Alignment":
 | |
|         x2y, y2x = get_alignments(A, B)
 | |
|         return Alignment.from_indices(x2y=x2y, y2x=y2x)
 |