Update README.md
Browse files
README.md
CHANGED
@@ -51,7 +51,7 @@ sentence = f"{tokenizer.sep_token}{instruction_code}{tokenizer.sep_token}{code_
|
|
51 |
tokenized_sensence = tokenizer(sentence, return_tensors="pt",truncation=True, max_length=2048)
|
52 |
|
53 |
#Embedding the tokenized sentence
|
54 |
-
embedded_sentence = model(**
|
55 |
```
|
56 |
|
57 |
You will get as an output three elements:
|
|
|
51 |
tokenized_sensence = tokenizer(sentence, return_tensors="pt",truncation=True, max_length=2048)
|
52 |
|
53 |
#Embedding the tokenized sentence
|
54 |
+
embedded_sentence = model(**tokenized_sensence)
|
55 |
```
|
56 |
|
57 |
You will get as an output three elements:
|