The MultiMolecule team has confirmed that the provided model and checkpoints are producing the same intermediate representations as the original implementation.
The team releasing 3UTRBERT did not write this model card for this model so this model card has been written by the MultiMolecule team.
Model Details
3UTRBERT is a
bert
-style model pre-trained on a large corpus of 3’ untranslated regions (3’UTRs) in a self-supervised fashion. This means that the model was trained on the raw nucleotides of RNA sequences only, with an automatic process to generate inputs and labels from those texts. Please refer to the
Training Details
section for more information on the training process.
The model file depends on the
multimolecule
library. You can install it using pip:
pip install multimolecule
Direct Use
Note
: Default transformers pipeline does not support K-mer tokenization.
You can use this model directly with a pipeline for masked language modeling:
>>> import multimolecule # you must import multimolecule to register models>>> from transformers import pipeline
>>> unmasker = pipeline('fill-mask', model='multimolecule/utrbert-3mer')
>>> unmasker("uagc<mask><mask><mask>ucagacugauguuga")[1]
[{'score': 0.510771632194519,
'token': 49,
'token_str': 'CUU',
'sequence': '<cls> UAG AGC <mask> CUU <mask> UCA CAG AGA GAC ACU CUG UGA GAU AUG UGU GUU UUG UGA <eos>'},
{'score': 0.3299057185649872,
'token': 39,
'token_str': 'CCU',
'sequence': '<cls> UAG AGC <mask> CCU <mask> UCA CAG AGA GAC ACU CUG UGA GAU AUG UGU GUU UUG UGA <eos>'},
{'score': 0.09743840992450714,
'token': 34,
'token_str': 'CAU',
'sequence': '<cls> UAG AGC <mask> CAU <mask> UCA CAG AGA GAC ACU CUG UGA GAU AUG UGU GUU UUG UGA <eos>'},
{'score': 0.010745460167527199,
'token': 64,
'token_str': 'GCU',
'sequence': '<cls> UAG AGC <mask> GCU <mask> UCA CAG AGA GAC ACU CUG UGA GAU AUG UGU GUU UUG UGA <eos>'},
{'score': 0.010299043729901314,
'token': 24,
'token_str': 'AUU',
'sequence': '<cls> UAG AGC <mask> AUU <mask> UCA CAG AGA GAC ACU CUG UGA GAU AUG UGU GUU UUG UGA <eos>'}]
Downstream Use
Extract Features
Here is how to use this model to get the features of a given sequence in PyTorch:
from multimolecule import RnaTokenizer, UtrBertModel
tokenizer = RnaTokenizer.from_pretrained('multimolecule/utrbert-3mer')
model = UtrBertModel.from_pretrained('multimolecule/utrbert-3mer')
text = "UAGCUUAUCAGACUGAUGUUGA"input = tokenizer(text, return_tensors='pt')
output = model(**input)
Sequence Classification / Regression
Note
: This model is not fine-tuned for any specific task. You will need to fine-tune the model on a downstream task to use it for sequence classification or regression.
Here is how to use this model as backbone to fine-tune for a sequence-level task in PyTorch:
import torch
from multimolecule import RnaTokenizer, UtrBertForSequencePrediction
tokenizer = RnaTokenizer.from_pretrained('multimolecule/utrbert-3mer')
model = UtrBertForSequencePrediction.from_pretrained('multimolecule/utrbert-3mer')
text = "UAGCUUAUCAGACUGAUGUUGA"input = tokenizer(text, return_tensors='pt')
label = torch.tensor([1])
output = model(**input, labels=label)
Nucleotide Classification / Regression
Note
: This model is not fine-tuned for any specific task. You will need to fine-tune the model on a downstream task to use it for nucleotide classification or regression.
Here is how to use this model as backbone to fine-tune for a nucleotide-level task in PyTorch:
import torch
from multimolecule import RnaTokenizer, UtrBertForNucleotidePrediction
tokenizer = RnaTokenizer.from_pretrained('multimolecule/utrbert-3mer')
model = UtrBertForNucleotidePrediction.from_pretrained('multimolecule/utrbert-3mer')
text = "UAGCUUAUCAGACUGAUGUUGA"input = tokenizer(text, return_tensors='pt')
label = torch.randint(2, (len(text), ))
output = model(**input, labels=label)
Contact Classification / Regression
Note
: This model is not fine-tuned for any specific task. You will need to fine-tune the model on a downstream task to use it for contact classification or regression.
Here is how to use this model as backbone to fine-tune for a contact-level task in PyTorch:
import torch
from multimolecule import RnaTokenizer, UtrBertForContactPrediction
tokenizer = RnaTokenizer.from_pretrained('multimolecule/utrbert')
model = UtrBertForContactPrediction.from_pretrained('multimolecule/utrbert')
text = "UAGCUUAUCAGACUGAUGUUGA"input = tokenizer(text, return_tensors='pt')
label = torch.randint(2, (len(text), len(text)))
output = model(**input, labels=label)
Training Details
3UTRBERT used Masked Language Modeling (MLM) as the pre-training objective: taking a sequence, the model randomly masks 15% of the tokens in the input then runs the entire masked sentence through the model and has to predict the masked tokens. This is comparable to the Cloze task in language modeling.
Training Data
The 3UTRBERT model was pre-trained on human mRNA transcript sequences from
GENCODE
. GENCODE aims to identify all gene features in the human genome using a combination of computational analysis, manual annotation, and experimental validation. The GENCODE release 40 used by this work contains 61,544 genes, and 246,624 transcripts.
3UTRBERT collected the human mRNA transcript sequences from GENCODE, including 108,573 unique mRNA transcripts. Only the longest transcript of each gene was used in the pre-training process. 3UTRBERT only used the 3’ untranslated regions (3’UTRs) of the mRNA transcripts for pre-training to avoid codon constrains in the CDS region, and to reduce increased complexity of the entire mRNA transcripts. The average length of the 3’UTRs was 1,227 nucleotides, while the median length was 631 nucleotides. Each 3’UTR sequence was cut to non-overlapping patches of 510 nucleotides. The remaining sequences were padded to the same length.
Note [
RnaTokenizer
][multimolecule.RnaTokenizer] will convert "T"s to "U"s for you, you may disable this behaviour by passing
replace_T_with_U=False
.
Training Procedure
Preprocessing
3UTRBERT used masked language modeling (MLM) as the pre-training objective. The masking procedure is similar to the one used in BERT:
15% of the tokens are masked.
In 80% of the cases, the masked tokens are replaced by
<mask>
.
In 10% of the cases, the masked tokens are replaced by a random token (different) from the one they replace.
In the 10% remaining cases, the masked tokens are left as is.
Since 3UTRBERT used k-mer tokenizer, it masks the entire k-mer instead of individual nucleotides to avoid information leakage.
For example, if the k-mer is 3, the sequence
"UAGCGUAU"
will be tokenized as
["UAG", "AGC", "GCG", "CGU", "GUA", "UAU"]
. If the nucleotide
"C"
is masked, the adjacent tokens will also be masked, resulting
["UAG", "<mask>", "<mask>", "<mask>", "GUA", "UAU"]
.
PreTraining
The model was trained on 4 NVIDIA Quadro RTX 6000 GPUs with 24GiB memories.
Batch size: 128
Learning rate: 3e-4
Weight decay: 0.01
Optimizer: AdamW(β1=0.9, β2=0.98, e=1e-6)
Steps: 200,000
Learning rate scheduler: Linear
Learning rate warm-up: 10,000 steps
Citation
BibTeX
:
@article {yang2023deciphering,
author = {Yang, Yuning and Li, Gen and Pang, Kuan and Cao, Wuxinhao and Li, Xiangtao and Zhang, Zhaolei},
title = {Deciphering 3{\textquoteright} UTR mediated gene regulation using interpretable deep representation learning},
elocation-id = {2023.09.08.556883},
year = {2023},
doi = {10.1101/2023.09.08.556883},
publisher = {Cold Spring Harbor Laboratory},
abstract = {The 3{\textquoteright}untranslated regions (3{\textquoteright}UTRs) of messenger RNAs contain many important cis-regulatory elements that are under functional and evolutionary constraints. We hypothesize that these constraints are similar to grammars and syntaxes in human languages and can be modeled by advanced natural language models such as Transformers, which has been very effective in modeling protein sequence and structures. Here we describe 3UTRBERT, which implements an attention-based language model, i.e., Bidirectional Encoder Representations from Transformers (BERT). 3UTRBERT was pre-trained on aggregated 3{\textquoteright}UTR sequences of human mRNAs in a task-agnostic manner; the pre-trained model was then fine-tuned for specific downstream tasks such as predicting RBP binding sites, m6A RNA modification sites, and predicting RNA sub-cellular localizations. Benchmark results showed that 3UTRBERT generally outperformed other contemporary methods in each of these tasks. We also showed that the self-attention mechanism within 3UTRBERT allows direct visualization of the semantic relationship between sequence elements.Competing Interest StatementThe authors have declared no competing interest.},
URL = {https://www.biorxiv.org/content/early/2023/09/12/2023.09.08.556883},
eprint = {https://www.biorxiv.org/content/early/2023/09/12/2023.09.08.556883.full.pdf},
journal = {bioRxiv}
}
Contact
Please use GitHub issues of
MultiMolecule
for any questions or comments on the model card.
Please contact the authors of the
3UTRBERT paper
for questions or comments on the paper/model.
utrbert-5mer huggingface.co is an AI model on huggingface.co that provides utrbert-5mer's model effect (), which can be used instantly with this multimolecule utrbert-5mer model. huggingface.co supports a free trial of the utrbert-5mer model, and also provides paid use of the utrbert-5mer. Support call utrbert-5mer model through api, including Node.js, Python, http.
utrbert-5mer huggingface.co is an online trial and call api platform, which integrates utrbert-5mer's modeling effects, including api services, and provides a free online trial of utrbert-5mer, you can try utrbert-5mer online for free by clicking the link below.
multimolecule utrbert-5mer online free url in huggingface.co:
utrbert-5mer is an open source model from GitHub that offers a free installation service, and any user can find utrbert-5mer on GitHub to install. At the same time, huggingface.co provides the effect of utrbert-5mer install, users can directly use utrbert-5mer installed effect in huggingface.co for debugging and trial. It also supports api for free installation.