Instructions to use multimolecule/aparent2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MultiMolecule
How to use multimolecule/aparent2 with MultiMolecule:
pip install multimolecule
from multimolecule import AutoModel, AutoTokenizer tokenizer = AutoTokenizer.from_pretrained("multimolecule/aparent2") model = AutoModel.from_pretrained("multimolecule/aparent2") - Notebooks
- Google Colab
- Kaggle
File size: 561 Bytes
c0bbebc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | {
"added_tokens_decoder": {
"4": {
"content": "N",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
}
},
"backend": "custom",
"bos_token": null,
"clean_up_tokenization_spaces": true,
"cls_token": null,
"codon": false,
"eos_token": null,
"extra_special_tokens": [],
"mask_token": null,
"model_max_length": 205,
"nmers": 1,
"pad_token": "N",
"replace_U_with_T": true,
"sep_token": null,
"tokenizer_class": "DnaTokenizer",
"unk_token": "N"
}
|