Update README.md
Browse files
README.md
CHANGED
@@ -41,7 +41,7 @@ model = AutoModel.from_pretrained('qilowoq/AbLang_light', trust_remote_code=True
|
|
41 |
|
42 |
sequence_Example = ' '.join("GSELTQDPAVSVALGQTVRITCQGDSLRNYYASWYQQKPRQAPVLVFYGKNNRPSGIPDRFSGSSSGNTASLTISGAQAEDEADYYCNSRDSSSNHLVFGGGTKLTVLSQ")
|
43 |
encoded_input = tokenizer(sequence_Example, return_tensors='pt')
|
44 |
-
model_output = model(encoded_input)
|
45 |
```
|
46 |
|
47 |
Sequence embeddings can be produced as follows:
|
|
|
41 |
|
42 |
sequence_Example = ' '.join("GSELTQDPAVSVALGQTVRITCQGDSLRNYYASWYQQKPRQAPVLVFYGKNNRPSGIPDRFSGSSSGNTASLTISGAQAEDEADYYCNSRDSSSNHLVFGGGTKLTVLSQ")
|
43 |
encoded_input = tokenizer(sequence_Example, return_tensors='pt')
|
44 |
+
model_output = model(**encoded_input)
|
45 |
```
|
46 |
|
47 |
Sequence embeddings can be produced as follows:
|