Update README.md
Browse files
README.md
CHANGED
@@ -44,7 +44,7 @@ encoded_input = tokenizer(sequence_Example, return_tensors='pt')
|
|
44 |
model_output = model(encoded_input)
|
45 |
```
|
46 |
|
47 |
-
|
48 |
|
49 |
```python
|
50 |
seq_embs = model_output.last_hidden_state[:, 0, :]
|
|
|
44 |
model_output = model(encoded_input)
|
45 |
```
|
46 |
|
47 |
+
Sequence embeddings can be produced as follows:
|
48 |
|
49 |
```python
|
50 |
seq_embs = model_output.last_hidden_state[:, 0, :]
|