mirror of
https://github.com/saymrwulf/transformers.git
synced 2026-05-14 20:58:08 +00:00
OPT-fix (#17229)
* try fixes * Revert "try fixes" This reverts commit a8ad75ef69d4fc03a402ef61bd034b018aa8555e. * add correct shape * add correct path
This commit is contained in:
parent
85fc455972
commit
dfc76018c1
1 changed files with 2 additions and 2 deletions
|
|
@ -281,7 +281,7 @@ class OPTModelIntegrationTests(unittest.TestCase):
|
|||
attention_mask = input_ids.ne(model.config.pad_token_id)
|
||||
with torch.no_grad():
|
||||
output = model(input_ids=input_ids, attention_mask=attention_mask).last_hidden_state
|
||||
expected_shape = torch.Size((1, 11, 1024))
|
||||
expected_shape = torch.Size((1, 11, 512))
|
||||
self.assertEqual(output.shape, expected_shape)
|
||||
expected_slice = torch.tensor(
|
||||
[[0.7144, 0.8143, -1.2813], [0.7144, 0.8143, -1.2813], [-0.0467, 2.5911, -2.1845]], device=torch_device
|
||||
|
|
@ -306,7 +306,7 @@ class OPTEmbeddingsTest(unittest.TestCase):
|
|||
def test_logits(self):
|
||||
model = OPTForCausalLM.from_pretrained(self.path_model)
|
||||
model = model.eval()
|
||||
tokenizer = GPT2Tokenizer.from_pretrained("patrickvonplaten/opt_gpt2_tokenizer")
|
||||
tokenizer = GPT2Tokenizer.from_pretrained(self.path_model)
|
||||
tokenizer.add_special_tokens({"pad_token": "<pad>"})
|
||||
|
||||
prompts = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue