mirror of
				https://github.com/KoboldAI/KoboldAI-Client.git
				synced 2025-06-05 21:59:24 +02:00 
			
		
		
		
	Prevent tokenizer from taking extra time the first time it's used
This commit is contained in:
		| @@ -4512,6 +4512,14 @@ def randomGameRequest(topic, memory=""): | ||||
| loadmodelsettings() | ||||
| loadsettings() | ||||
|  | ||||
| # Prevent tokenizer from taking extra time the first time it's used | ||||
| def __preempt_tokenizer(): | ||||
|     if("tokenizer" not in globals()): | ||||
|         return | ||||
|     tokenizer.decode([25678, 559]) | ||||
|     tokenizer.encode("eunoia") | ||||
| threading.Thread(target=__preempt_tokenizer).start() | ||||
|  | ||||
| # Precompile TPU backend if required | ||||
| if(vars.model in ("TPUMeshTransformerGPTJ",)): | ||||
|     soft_tokens = tpumtjgetsofttokens() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Gnome Ann
					Gnome Ann