mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-04-04 05:31:01 +02:00
Fix a mistake in the previous commit
This commit is contained in:
parent
78f52063c7
commit
4904af6adc
@ -755,7 +755,7 @@ if(not vars.model in ["InferKit", "Colab", "OAI", "ReadOnly", "TPUMeshTransforme
|
|||||||
if(hasattr(self, "transformer")):
|
if(hasattr(self, "transformer")):
|
||||||
inputs_embeds = self.transformer.wte(input_ids)
|
inputs_embeds = self.transformer.wte(input_ids)
|
||||||
else:
|
else:
|
||||||
inputs_embeds = self.model.embed_tokens(input_ids) * self.embed_scale
|
inputs_embeds = self.model.embed_tokens(input_ids) * self.model.embed_scale
|
||||||
if(vars.sp is not None):
|
if(vars.sp is not None):
|
||||||
vars.sp = vars.sp.to(inputs_embeds.dtype).to(inputs_embeds.device)
|
vars.sp = vars.sp.to(inputs_embeds.dtype).to(inputs_embeds.device)
|
||||||
inputs_embeds = torch.where(
|
inputs_embeds = torch.where(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user