mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +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
		
			
				
	
	
		
			31 lines
		
	
	
		
			600 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			600 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import pytest
 | 
						|
 | 
						|
import spacy
 | 
						|
from spacy.training import loggers
 | 
						|
 | 
						|
 | 
						|
@pytest.fixture()
 | 
						|
def nlp():
 | 
						|
    nlp = spacy.blank("en")
 | 
						|
    nlp.add_pipe("ner")
 | 
						|
    return nlp
 | 
						|
 | 
						|
 | 
						|
@pytest.fixture()
 | 
						|
def info():
 | 
						|
    return {
 | 
						|
        "losses": {"ner": 100},
 | 
						|
        "other_scores": {"ENTS_F": 0.85, "ENTS_P": 0.90, "ENTS_R": 0.80},
 | 
						|
        "epoch": 100,
 | 
						|
        "step": 125,
 | 
						|
        "score": 85,
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
def test_console_logger(nlp, info):
 | 
						|
    console_logger = loggers.console_logger(
 | 
						|
        progress_bar=True, console_output=True, output_file=None
 | 
						|
    )
 | 
						|
    log_step, finalize = console_logger(nlp)
 | 
						|
    log_step(info)
 |