simonduerr commited on
Commit
7467112
1 Parent(s): c4f6e95

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -99,6 +99,20 @@ with gr.Blocks() as demo:
99
  - Create a HuggingFace account and request to join the [MLSB organization](https://huggingface.co/MLSB)
100
  - Create a new space in the MLSB organization and add your model using the inference templates: https://huggingface.co/new-space?owner=MLSB
101
  - Fill the submission form.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
 
103
  After a brief technical review by our organizers we will grant you a free GPU until MLSB so that anyone can play with the model and we will run the evaluation.
104
 
 
99
  - Create a HuggingFace account and request to join the [MLSB organization](https://huggingface.co/MLSB)
100
  - Create a new space in the MLSB organization and add your model using the inference templates: https://huggingface.co/new-space?owner=MLSB
101
  - Fill the submission form.
102
+
103
+ ## Prerequisites:
104
+ To qualify for submission, each team must:
105
+ - Provide an MLSB submission ID (find it on CMT) or a link to a preprint/paper describing their methodology. This publication does not have to specifically report training or evaluation on the P(L)INDER dataset. Previously published methods, such as DiffDock, only need to link their existing paper. Note that entry into this competition does not equate to an MLSB workshop paper submission.
106
+ - Create a copy of the provided [inference templates](https://huggingface.co/MLSB/).
107
+ - Go to the top right corner of the page of the respective inference template and click on the drop-down menu (vertical ellipsis) right next to the “Community”, then select “Duplicate this space”.
108
+ - Change files in the newly create space to reflect the peculiarities of your model
109
+ - Edit `requirements.txt` to capture all python dependencies.
110
+ - Modify the Dockerfile as appropriate (including selecting the right base image)
111
+ - Include a `inference_app.py` file. This contains a `predict` function that should be modified to reflect the specifics of inference using their model.
112
+ - Include a `train.py` file to ensure that training and model selection use only the PINDER/PLINDER datasets and to clearly show any additional hyperparameters used.
113
+ - Provide a LICENSE file that allows for reuse, derivative works, and distribution of the provided software and weights (e.g., MIT or Apache2 license).
114
+ - Submit to the leaderboard via the [form below](https://huggingface.co/spaces/MLSB/leaderboard2024).
115
+ - On submission page, add reference to the newly created space in the format username/space (e.g mlsb/alphafold3). You can create the space on your personal Huggingface account and transfer it to MLSB for the submission to get a GPU assigned.
116
 
117
  After a brief technical review by our organizers we will grant you a free GPU until MLSB so that anyone can play with the model and we will run the evaluation.
118