CoolFace
Apppublic

lee-t/Rostlab-prot_bert

sourceHugging Faceupdated 4y agoView on Hugging Face
0likes
app.py5 linesDownload Raw Back to root
1import gradio as gr2examples = [['D L I P T S S K L V V [MASK] D T S L Q V K K A F F A L V T']] 3description="ProtBert is based on Bert model which pretrained on a large corpus of protein sequences in a self-supervised fashion. This means it was pretrained on the raw protein sequences only, with no humans labelling them in any way (which is why it can use lots of publicly available data) with an automatic process to generate inputs and labels from those protein sequences."4 5gr.Interface.load("models/Rostlab/prot_bert",  description=description, examples=examples).launch()