mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +03:00 
			
		
		
		
	* Replace functions registries with catalogue * Update __init__.py * Fix test * Revert unrelated flag [ci skip]
		
			
				
	
	
		
			20 lines
		
	
	
		
			501 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			501 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf8
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| import pytest
 | |
| from spacy import registry
 | |
| from thinc.v2v import Affine
 | |
| from catalogue import RegistryError
 | |
| 
 | |
| 
 | |
| @registry.architectures.register("my_test_function")
 | |
| def create_model(nr_in, nr_out):
 | |
|     return Affine(nr_in, nr_out)
 | |
| 
 | |
| 
 | |
| def test_get_architecture():
 | |
|     arch = registry.architectures.get("my_test_function")
 | |
|     assert arch is create_model
 | |
|     with pytest.raises(RegistryError):
 | |
|         registry.architectures.get("not_an_existing_key")
 |