mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-30 23:47:31 +03:00 
			
		
		
		
	Merge branch 'spacy.io' of https://github.com/explosion/spaCy into spacy.io
This commit is contained in:
		
						commit
						3931fa146b
					
				
							
								
								
									
										6
									
								
								.github/contributors/armsp.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.github/contributors/armsp.md
									
									
									
									
										vendored
									
									
								
							|  | @ -98,9 +98,9 @@ mark both statements: | |||
| 
 | ||||
| | Field                          | Entry                | | ||||
| |------------------------------- | -------------------- | | ||||
| | Name                           |  Shantam             | | ||||
| | Name                           |  Shantam Raj         | | ||||
| | Company name (if applicable)   |                      | | ||||
| | Title or role (if applicable)  |                      | | ||||
| | Date                           |   21/5/2018          | | ||||
| | Date                           |   10/4/2021          | | ||||
| | GitHub username                |     armsp            | | ||||
| | Website (optional)             |                      | | ||||
| | Website (optional)             |https://shantamraj.com| | ||||
|  |  | |||
|  | @ -601,12 +601,13 @@ print('Before', ents) | |||
| 
 | ||||
| # Create a span for the new entity | ||||
| fb_ent = Span(doc, 0, 1, label="ORG") | ||||
| orig_ents = list(doc.ents) | ||||
| 
 | ||||
| # Option 1: Modify the provided entity spans, leaving the rest unmodified | ||||
| doc.set_ents([fb_ent], default="unmodified") | ||||
| 
 | ||||
| # Option 2: Assign a complete list of ents to doc.ents | ||||
| doc.ents = list(doc.ents) + [fb_ent] | ||||
| doc.ents = orig_ents + [fb_ent] | ||||
| 
 | ||||
| ents = [(e.text, e.start, e.end, e.label_) for e in doc.ents] | ||||
| print('After', ents) | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user