emmas96 commited on
Commit
c30a2a6
·
verified ·
1 Parent(s): f3a9290

add citation

Browse files
Files changed (1) hide show
  1. app.py +30 -0
app.py CHANGED
@@ -41,6 +41,19 @@ st.set_page_config(
41
  a given protein target. We demonstrate state-of-the-art performance over previous methods on multiple
42
  well-known benchmarks, particularly in zero-shot settings for unseen protein targets. This app demonstrates the
43
  model as a retrieval task of the top-k most active drug compounds predicted for a given query target.
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  '''
45
  }
46
 
@@ -75,6 +88,23 @@ def about_page():
75
  )
76
 
77
  st.image('figures/hyper-dti.png', caption='Overview of the HyperPCM architecture.', use_column_width='always')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
 
80
  def retrieval():
 
41
  a given protein target. We demonstrate state-of-the-art performance over previous methods on multiple
42
  well-known benchmarks, particularly in zero-shot settings for unseen protein targets. This app demonstrates the
43
  model as a retrieval task of the top-k most active drug compounds predicted for a given query target.
44
+
45
+ ## Citation
46
+
47
+ Please cite our work using the following reference.
48
+ """bibtex
49
+ @article{svensson2024hyperpcm,
50
+ title={{HyperPCM: Robust Task-Conditioned Modeling of Drug--Target Interactions}},
51
+ author={Svensson, Emma and Hoedt, Pieter-Jan and Hochreiter, Sepp and Klambauer, G{\"u}nter},
52
+ journal={Journal of Chemical Information and Modeling},
53
+ publisher={ACS Publications},
54
+ year={2024}
55
+ }
56
+ """
57
  '''
58
  }
59
 
 
88
  )
89
 
90
  st.image('figures/hyper-dti.png', caption='Overview of the HyperPCM architecture.', use_column_width='always')
91
+
92
+ st.markdown(
93
+ """
94
+ ### Citation
95
+
96
+ Please cite our work using the following reference.
97
+ '''bibtex
98
+ @article{svensson2024hyperpcm,
99
+ title={{HyperPCM: Robust Task-Conditioned Modeling of Drug--Target Interactions}},
100
+ author={Svensson, Emma and Hoedt, Pieter-Jan and Hochreiter, Sepp and Klambauer, G{\"u}nter},
101
+ journal={Journal of Chemical Information and Modeling},
102
+ publisher={ACS Publications},
103
+ year={2024}
104
+ }
105
+ '''
106
+ """
107
+ )
108
 
109
 
110
  def retrieval():