update page header
Browse files
app.py
CHANGED
@@ -27,6 +27,14 @@ datapath = os.path.join(basepath, "data")
|
|
27 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
28 |
|
29 |
st.title('HyperDTI: Task-conditioned modeling of drug-target interactions.')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
def about_page():
|
32 |
st.markdown(
|
@@ -44,6 +52,8 @@ def about_page():
|
|
44 |
well-known benchmarks, particularly in zero-shot settings for unseen protein targets.
|
45 |
"""
|
46 |
)
|
|
|
|
|
47 |
|
48 |
page_names_to_func = {
|
49 |
'About': about_page
|
|
|
27 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
28 |
|
29 |
st.title('HyperDTI: Task-conditioned modeling of drug-target interactions.')
|
30 |
+
st.markdown(
|
31 |
+
"""
|
32 |
+
\n
|
33 |
+
🧬 Generate a QSAR model for the protein target of interest, useful for high-throughput screening or drug repurposing.\n
|
34 |
+
💻 Github: [ml-jku/hyper-dti](https://https://github.com/ml-jku/hyper-dti)\n
|
35 |
+
📝 NeurIPS 2022 AI4Science workshop paper: [OpenReview](https://openreview.net/forum?id=dIX34JWnIAL)\n
|
36 |
+
"""
|
37 |
+
)
|
38 |
|
39 |
def about_page():
|
40 |
st.markdown(
|
|
|
52 |
well-known benchmarks, particularly in zero-shot settings for unseen protein targets.
|
53 |
"""
|
54 |
)
|
55 |
+
|
56 |
+
# example proteins ["HXHVWPVQDAKARFSEFLDACITEGPQIVSRRGAEEAVLVPIGEWRRLQAAA"], ["AHKLFIGGLPNYLNDDQVKELLTSFGPLKAFNLVKDSATGLSKGYAFCEYVDINVTDQAIAGLNGMQLGDKKLLVQRASVGAKNA"]
|
57 |
|
58 |
page_names_to_func = {
|
59 |
'About': about_page
|