emmas96 commited on
Commit
afba6b8
Β·
1 Parent(s): fc729c7

update about page

Browse files
Files changed (1) hide show
  1. app.py +7 -4
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)\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(
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
+ ![Model overview](figures/hyper-dti.png)
56
  """
57
  )
58