update about page
Browse files
app.py
CHANGED
@@ -26,19 +26,20 @@ datapath = os.path.join(basepath, "data")
|
|
26 |
|
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)
|
35 |
π NeurIPS 2022 AI4Science workshop paper: [OpenReview](https://openreview.net/forum?id=dIX34JWnIAL)\n
|
36 |
"""
|
37 |
)
|
38 |
|
39 |
def about_page():
|
40 |
st.markdown(
|
41 |
-
"""
|
|
|
|
|
42 |
HyperNetworks have been established as an effective technique to achieve fast adaptation of parameters for
|
43 |
neural networks. Recently, HyperNetwork predictions conditioned on descriptors of tasks have improved
|
44 |
multi-task generalization in various domains, such as personalized federated learning and neural architecture
|
@@ -50,6 +51,8 @@ def about_page():
|
|
50 |
predicting drug-target interactions in drug discovery. Our model learns to generate a QSAR model specialized on
|
51 |
a given protein target. We demonstrate state-of-the-art performance over previous methods on multiple
|
52 |
well-known benchmarks, particularly in zero-shot settings for unseen protein targets.
|
|
|
|
|
53 |
"""
|
54 |
)
|
55 |
|
|
|
26 |
|
27 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
28 |
|
29 |
+
st.title('HyperDTI: Task-conditioned modeling of drug-target interactions.\n')
|
30 |
st.markdown(
|
31 |
"""
|
|
|
32 |
𧬠Generate a QSAR model for the protein target of interest, useful for high-throughput screening or drug repurposing.\n
|
33 |
+
π» Github: [ml-jku/hyper-dti](https://https://github.com/ml-jku/hyper-dti)
|
34 |
π NeurIPS 2022 AI4Science workshop paper: [OpenReview](https://openreview.net/forum?id=dIX34JWnIAL)\n
|
35 |
"""
|
36 |
)
|
37 |
|
38 |
def about_page():
|
39 |
st.markdown(
|
40 |
+
"""
|
41 |
+
## About
|
42 |
+
|
43 |
HyperNetworks have been established as an effective technique to achieve fast adaptation of parameters for
|
44 |
neural networks. Recently, HyperNetwork predictions conditioned on descriptors of tasks have improved
|
45 |
multi-task generalization in various domains, such as personalized federated learning and neural architecture
|
|
|
51 |
predicting drug-target interactions in drug discovery. Our model learns to generate a QSAR model specialized on
|
52 |
a given protein target. We demonstrate state-of-the-art performance over previous methods on multiple
|
53 |
well-known benchmarks, particularly in zero-shot settings for unseen protein targets.
|
54 |
+
|
55 |
+

|
56 |
"""
|
57 |
)
|
58 |
|