wg25r
commited on
Commit
·
1e1f643
1
Parent(s):
a40070e
added link
Browse files
app.py
CHANGED
@@ -7,6 +7,17 @@ from rdkit.Chem import Draw
|
|
7 |
import time
|
8 |
|
9 |
st.title("3D2SMILES")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
col1, col2 = st.columns(2)
|
11 |
gen_strategy = col1.selectbox("Select a generative strategy", ("Beam Search", "Sampling", "Greedy Search"))
|
12 |
model = col2.selectbox("Select a model", ("V1", "V2"))
|
|
|
7 |
import time
|
8 |
|
9 |
st.title("3D2SMILES")
|
10 |
+
st.markdown("""
|
11 |
+
This app generates SMILES strings from images of molecules ball-and-stick models.
|
12 |
+
|
13 |
+
[Version 1 Paper](https://chemrxiv.org/engage/chemrxiv/article-details/673a9d62f9980725cf89abe1) |
|
14 |
+
[Version 2 Paper]() |
|
15 |
+
[Synthetic Dataset](https://huggingface.co/datasets/weathon/3d2smiles_synthetic) |
|
16 |
+
[Real Dataset](https://huggingface.co/datasets/weathon/3d2smiles_real) |
|
17 |
+
[Author Github](https://github.com/weathon) |
|
18 |
+
[Feedback](mailto:[email protected]) |
|
19 |
+
[Deploy](https://huggingface.co/spaces/weathon/3d2smiles)
|
20 |
+
""")
|
21 |
col1, col2 = st.columns(2)
|
22 |
gen_strategy = col1.selectbox("Select a generative strategy", ("Beam Search", "Sampling", "Greedy Search"))
|
23 |
model = col2.selectbox("Select a model", ("V1", "V2"))
|