mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
Fix: Mirostat fails on models split across multiple GPUs
This commit is contained in:
parent
23055b21ee
commit
9dcb37e8d4
@ -104,7 +104,7 @@ class MirostatLogitsWarper(LogitsWarper):
|
||||
break
|
||||
|
||||
# Normalize the probabilities of the remaining words
|
||||
prob_topk = torch.softmax(sorted_logits, dim=0)
|
||||
prob_topk = torch.softmax(sorted_logits, dim=0).to('cuda')
|
||||
|
||||
prev_i = torch.multinomial(prob_topk, num_samples=1, replacement=True).to('cuda')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user