mirror of
https://github.com/kohya-ss/sd-scripts.git
synced 2026-04-09 14:45:19 +00:00
fix sample gen failed in sdxl training
This commit is contained in:
@@ -3896,6 +3896,7 @@ def pool_workaround(
|
|||||||
|
|
||||||
# Use argmax to find the last index of the EOS token for each element in the batch
|
# Use argmax to find the last index of the EOS token for each element in the batch
|
||||||
eos_token_index = torch.argmax(eos_token_mask, dim=1) # this will be 0 if there is no EOS token, it's fine
|
eos_token_index = torch.argmax(eos_token_mask, dim=1) # this will be 0 if there is no EOS token, it's fine
|
||||||
|
eos_token_index = eos_token_index.to(device=last_hidden_state.device)
|
||||||
|
|
||||||
# get hidden states for EOS token
|
# get hidden states for EOS token
|
||||||
pooled_output = last_hidden_state[torch.arange(last_hidden_state.shape[0], device=last_hidden_state.device), eos_token_index]
|
pooled_output = last_hidden_state[torch.arange(last_hidden_state.shape[0], device=last_hidden_state.device), eos_token_index]
|
||||||
|
|||||||
Reference in New Issue
Block a user