emmas96 commited on
Commit
846a053
·
1 Parent(s): 87ce5b7

update menu

Browse files
Files changed (1) hide show
  1. app.py +27 -1
app.py CHANGED
@@ -21,7 +21,33 @@ data_path = os.path.join(base_path, 'data')
21
  checkpoint_path = os.path.join(base_path, 'checkpoints/lpo/cv2_test_fold6_1402/model_updated.t7')
22
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
23
 
24
- st.set_page_config(layout="centered")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  st.title('HyperDTI: Robust Task-Conditioned Modeling of Drug-Target Interactions\n')
27
  st.markdown('')
 
21
  checkpoint_path = os.path.join(base_path, 'checkpoints/lpo/cv2_test_fold6_1402/model_updated.t7')
22
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
23
 
24
+ st.set_page_config(
25
+ page_title='HyperDTI',
26
+ layout='centered',
27
+ menu_items={
28
+ 'Paper': 'https://openreview.net/forum?id=dIX34JWnIAL',
29
+ 'GitHub': 'https://https://github.com/ml-jku/hyper-dti',
30
+ 'Contact': 'mailto:[email protected]',
31
+ 'About':
32
+ '''
33
+ # HyperDTI
34
+
35
+ HyperNetworks have been established as an effective technique to achieve fast adaptation of parameters for
36
+ neural networks. Recently, HyperNetwork predictions conditioned on descriptors of tasks have improved
37
+ multi-task generalization in various domains, such as personalized federated learning and neural architecture
38
+ search. Especially powerful results were achieved in few- and zero-shot settings, attributed to the increased
39
+ information sharing by the HyperNetwork. With the rise of new diseases fast discovery of drugs is needed which
40
+ requires models that are able to generalize drug-target interaction predictions in low-data scenarios.
41
+
42
+ In this work, we propose the HyperPCM model, a task-conditioned HyperNetwork approach for the problem of
43
+ predicting drug-target interactions in drug discovery. Our model learns to generate a QSAR model specialized on
44
+ a given protein target. We demonstrate state-of-the-art performance over previous methods on multiple
45
+ well-known benchmarks, particularly in zero-shot settings for unseen protein targets. This app demonstrates the
46
+ model as a retrieval task of the top-k most active drug compounds predicted for a given query target.
47
+ '''
48
+ }
49
+
50
+ )
51
 
52
  st.title('HyperDTI: Robust Task-Conditioned Modeling of Drug-Target Interactions\n')
53
  st.markdown('')