mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 16:07:41 +03:00 
			
		
		
		
	Further model deserialization fixes re #1727
This commit is contained in:
		
							parent
							
								
									91e916cb67
								
							
						
					
					
						commit
						f3753c2453
					
				|  | @ -174,7 +174,7 @@ class Pipe(object): | |||
|         """Load the pipe from a bytestring.""" | ||||
|         def load_model(b): | ||||
|             if self.model is True: | ||||
|                 self.cfg['pretrained_dims'] = self.vocab.vectors_length | ||||
|                 self.cfg.setdefault('pretrained_dims', self.vocab.vectors_length) | ||||
|                 self.model = self.Model(**self.cfg) | ||||
|             self.model.from_bytes(b) | ||||
| 
 | ||||
|  | @ -199,7 +199,7 @@ class Pipe(object): | |||
|         """Load the pipe from disk.""" | ||||
|         def load_model(p): | ||||
|             if self.model is True: | ||||
|                 self.cfg['pretrained_dims'] = self.vocab.vectors_length | ||||
|                 self.cfg.setdefault('pretrained_dims', self.vocab.vectors_length) | ||||
|                 self.model = self.Model(**self.cfg) | ||||
|             self.model.from_bytes(p.open('rb').read()) | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user