mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			564 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			564 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
import pytest
 | 
						|
from ...language import Language
 | 
						|
from ...pipeline import DependencyParser
 | 
						|
 | 
						|
 | 
						|
@pytest.mark.models('en')
 | 
						|
def test_beam_parse_en(EN):
 | 
						|
    doc = EN(u'Australia is a country', disable=['ner'])
 | 
						|
    ents = EN.entity(doc, beam_width=2)
 | 
						|
    print(ents)
 | 
						|
 | 
						|
 | 
						|
def test_beam_parse():
 | 
						|
    nlp = Language()
 | 
						|
    nlp.add_pipe(DependencyParser(nlp.vocab), name='parser')
 | 
						|
    nlp.parser.add_label('nsubj')
 | 
						|
    nlp.begin_training()
 | 
						|
 | 
						|
    doc = nlp.make_doc(u'Australia is a country')
 | 
						|
    nlp.parser(doc, beam_width=2)
 |