sagawa commited on
Commit
8a0130f
·
verified ·
1 Parent(s): 50ea5b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -26,11 +26,10 @@ warnings.filterwarnings("ignore")
26
 
27
  st.title("ReactionT5 task forward")
28
  st.markdown("""
29
- ##### At this space, you can predict the products of reactions from their inputs.
30
- ##### The code expects input_data as a string or CSV file that contains an "input" column.
31
- ##### The format of the string or contents of the column should be "REACTANT:{reactants}REAGENT:{reagents}".
32
- ##### If there is no reagent, fill the blank with a space. For multiple compounds, concatenate them with ".".
33
- ##### The output contains SMILES of predicted products and the sum of log-likelihood for each prediction, ordered by their log-likelihood (0th is the most probable product).
34
  """)
35
 
36
  st.download_button(
 
26
 
27
  st.title("ReactionT5 task forward")
28
  st.markdown("""
29
+ ##### Predict reaction products from your inputs.
30
+ ##### Upload a CSV that contains a `REACTANT` column. Optionally include `REAGENT`, `SOLVENT`, and/or `CATALYST`.
31
+ ##### If a field lists multiple compounds, separate them with a dot (`.`). For details, download **demo_reaction_data.csv** and check its contents.
32
+ ##### The output shows product SMILES and the sum of log-likelihoods for each prediction, sorted by log-likelihood (index 0 is the most probable).
 
33
  """)
34
 
35
  st.download_button(