Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
This repository contains the model weights of the BERT model trained using masked language modelling on 60% of the [GuacaMol](https://pubs.acs.org/doi/abs/10.1021/acs.jcim.8b00839) dataset.
|
| 5 |
+
Further information can be found in our publication.
|
| 6 |
+
|
| 7 |
+
```python
|
| 8 |
+
from transformers import AutoModel
|
| 9 |
+
|
| 10 |
+
AutoModel.from_pretrained("UdS-LSV/da4mt-mlm-60")
|
| 11 |
+
```
|
| 12 |
+
|
| 13 |
+

|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
### See also
|
| 17 |
+
- https://huggingface.co/UdS-LSV/da4mt-mlm-30
|
| 18 |
+
- https://huggingface.co/UdS-LSV/da4mt-mtr-30
|
| 19 |
+
- https://huggingface.co/UdS-LSV/da4mt-mtr-60
|