update paper reference
Browse files
app.py
CHANGED
@@ -22,12 +22,12 @@ checkpoint_path = os.path.join(base_path, 'checkpoints/lpo/cv2_test_fold6_1402/m
|
|
22 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
23 |
|
24 |
st.set_page_config(
|
25 |
-
page_title='
|
26 |
layout='centered',
|
27 |
menu_items={
|
28 |
'About':
|
29 |
'''
|
30 |
-
#
|
31 |
|
32 |
HyperNetworks have been established as an effective technique to achieve fast adaptation of parameters for
|
33 |
neural networks. Recently, HyperNetwork predictions conditioned on descriptors of tasks have improved
|
@@ -46,11 +46,11 @@ st.set_page_config(
|
|
46 |
|
47 |
)
|
48 |
|
49 |
-
st.title('
|
50 |
st.markdown('')
|
51 |
st.markdown(
|
52 |
"""
|
53 |
-
🧬 Github: [ml-jku/hyper-dti](https://https://github.com/ml-jku/hyper-dti) 📝 NeurIPS 2022 AI4Science workshop
|
54 |
"""
|
55 |
)
|
56 |
|
@@ -74,7 +74,7 @@ def about_page():
|
|
74 |
"""
|
75 |
)
|
76 |
|
77 |
-
st.image('figures/hyper-dti.png', caption='Overview of HyperPCM architecture.', use_column_width='always')
|
78 |
|
79 |
|
80 |
def retrieval():
|
|
|
22 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
23 |
|
24 |
st.set_page_config(
|
25 |
+
page_title='HyperPCM',
|
26 |
layout='centered',
|
27 |
menu_items={
|
28 |
'About':
|
29 |
'''
|
30 |
+
# HyperPCM
|
31 |
|
32 |
HyperNetworks have been established as an effective technique to achieve fast adaptation of parameters for
|
33 |
neural networks. Recently, HyperNetwork predictions conditioned on descriptors of tasks have improved
|
|
|
46 |
|
47 |
)
|
48 |
|
49 |
+
st.title('HyperPCM: Robust Task-Conditioned Modeling of Drug-Target Interactions\n')
|
50 |
st.markdown('')
|
51 |
st.markdown(
|
52 |
"""
|
53 |
+
🧬 Github: [ml-jku/hyper-dti](https://https://github.com/ml-jku/hyper-dti) 📝 Read the paper in: [JCIM](https://pubs.acs.org/doi/10.1021/acs.jcim.3c01417); or the NeurIPS 2022 AI4Science workshop version at [OpenReview](https://openreview.net/forum?id=dIX34JWnIAL) \n
|
54 |
"""
|
55 |
)
|
56 |
|
|
|
74 |
"""
|
75 |
)
|
76 |
|
77 |
+
st.image('figures/hyper-dti.png', caption='Overview of the HyperPCM architecture.', use_column_width='always')
|
78 |
|
79 |
|
80 |
def retrieval():
|