clamepending commited on
Commit
b1aa005
1 Parent(s): 3685849

fixed title

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -100,5 +100,5 @@ textinput = gr.components.Textbox(lines=1, label="Enter a SMILES", placeholder="
100
  textoutput = gr.components.Textbox()
101
  examples = ["C1=CC=C(C=C1)C", "C1CC1C(=O)NC2=CC=CC(=C2)N", "CC(=O)OC1=CC=C"]
102
 
103
- intf = gr.Interface(fn=inference, inputs=textinput, outputs=textoutput, examples=examples, title="CGPT (Chemical Generative Pretrained Transformer). Trained on entire pubmed dataset.", description="This model is a decoder-only transformer trained on the entire pubmed dataset. It can be used to complete the SMILES string from a given input SMILES string. d_model is 128, sequence length is 80, 8 attention heads per block with 6 blocks for a total of 16,473,203 parameters")
104
  intf.launch(inline=False)
 
100
  textoutput = gr.components.Textbox()
101
  examples = ["C1=CC=C(C=C1)C", "C1CC1C(=O)NC2=CC=CC(=C2)N", "CC(=O)OC1=CC=C"]
102
 
103
+ intf = gr.Interface(fn=inference, inputs=textinput, outputs=textoutput, examples=examples, title="CGPT (Chemical Generative Pretrained Transformer)", description="This model is a decoder-only transformer trained on the entire pubmed dataset. It can be used to complete the SMILES string from a given input SMILES string. d_model is 128, sequence length is 80, 8 attention heads per block with 6 blocks for a total of 16,473,203 parameters")
104
  intf.launch(inline=False)