Update README.md
Browse files
README.md
CHANGED
|
@@ -16,8 +16,8 @@ mols = [
|
|
| 16 |
]
|
| 17 |
|
| 18 |
|
| 19 |
-
tokenizer = AutoTokenizer.from_pretrained("UdS-LSV/da4mt-mtr-
|
| 20 |
-
model = AutoModel.from_pretrained("UdS-LSV/da4mt-mtr-
|
| 21 |
|
| 22 |
inputs = tokenizer(mols, add_special_tokens=True, truncation=True, max_length=128, padding="max_length", return_tensors="pt")
|
| 23 |
embeddings = model(**inputs).last_hidden_state[:, 0, :]
|
|
|
|
| 16 |
]
|
| 17 |
|
| 18 |
|
| 19 |
+
tokenizer = AutoTokenizer.from_pretrained("UdS-LSV/da4mt-mtr-30")
|
| 20 |
+
model = AutoModel.from_pretrained("UdS-LSV/da4mt-mtr-30")
|
| 21 |
|
| 22 |
inputs = tokenizer(mols, add_special_tokens=True, truncation=True, max_length=128, padding="max_length", return_tensors="pt")
|
| 23 |
embeddings = model(**inputs).last_hidden_state[:, 0, :]
|