Commit
·
15ae508
1
Parent(s):
1322400
Added link to terms
Browse files- about.py +4 -2
- app.py +3 -2
- constants.py +1 -0
about.py
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
|
|
|
|
|
| 1 |
ABOUT_INTRO = f"""
|
| 2 |
## About this challenge
|
| 3 |
|
|
@@ -17,9 +19,9 @@ Here we invite the community to submit and develop better predictors, which will
|
|
| 17 |
For each of the 5 properties in the competition, there is a prize for the model with the highest performance for that property on the private test set.
|
| 18 |
There is also an 'open-source' prize for the best model trained on the GDPa1 dataset (reporting cross-validation results) and assessed on the private test set where authors provide all training code and data.
|
| 19 |
For each of these 6 prizes, participants have the choice between **$10k in data generation credits** with [Ginkgo Datapoints](https://datapoints.ginkgo.bio/) or a **cash prize** with a value of $2000.
|
| 20 |
-
|
|
|
|
| 21 |
"""
|
| 22 |
-
# TODO include link to competition terms on datapoints website
|
| 23 |
|
| 24 |
ABOUT_TEXT = """
|
| 25 |
|
|
|
|
| 1 |
+
from constants import TERMS_URL
|
| 2 |
+
|
| 3 |
ABOUT_INTRO = f"""
|
| 4 |
## About this challenge
|
| 5 |
|
|
|
|
| 19 |
For each of the 5 properties in the competition, there is a prize for the model with the highest performance for that property on the private test set.
|
| 20 |
There is also an 'open-source' prize for the best model trained on the GDPa1 dataset (reporting cross-validation results) and assessed on the private test set where authors provide all training code and data.
|
| 21 |
For each of these 6 prizes, participants have the choice between **$10k in data generation credits** with [Ginkgo Datapoints](https://datapoints.ginkgo.bio/) or a **cash prize** with a value of $2000.
|
| 22 |
+
|
| 23 |
+
See the FAQs below or the [competition terms]({TERMS_URL}) for more details.
|
| 24 |
"""
|
|
|
|
| 25 |
|
| 26 |
ABOUT_TEXT = """
|
| 27 |
|
app.py
CHANGED
|
@@ -11,6 +11,7 @@ from constants import (
|
|
| 11 |
ASSAY_DESCRIPTION,
|
| 12 |
EXAMPLE_FILE_DICT,
|
| 13 |
LEADERBOARD_DISPLAY_COLUMNS,
|
|
|
|
| 14 |
)
|
| 15 |
from about import ABOUT_INTRO, ABOUT_TEXT, FAQS
|
| 16 |
from submit import make_submission
|
|
@@ -232,10 +233,10 @@ with gr.Blocks() as demo:
|
|
| 232 |
)
|
| 233 |
# Footnote
|
| 234 |
gr.Markdown(
|
| 235 |
-
"""
|
| 236 |
<div style="text-align: center; font-size: 14px; color: gray; margin-top: 2em;">
|
| 237 |
📬 For questions or feedback, contact <a href="mailto:[email protected]">[email protected]</a> or visit the Community tab at the top of this page.<br>
|
| 238 |
-
Visit the <a href="https://datapoints.ginkgo.bio/ai-competitions/2025-abdev-competition">Competition Registration page</a> to sign up for updates and to register a team
|
| 239 |
</div>
|
| 240 |
""",
|
| 241 |
elem_id="contact-footer",
|
|
|
|
| 11 |
ASSAY_DESCRIPTION,
|
| 12 |
EXAMPLE_FILE_DICT,
|
| 13 |
LEADERBOARD_DISPLAY_COLUMNS,
|
| 14 |
+
TERMS_URL,
|
| 15 |
)
|
| 16 |
from about import ABOUT_INTRO, ABOUT_TEXT, FAQS
|
| 17 |
from submit import make_submission
|
|
|
|
| 233 |
)
|
| 234 |
# Footnote
|
| 235 |
gr.Markdown(
|
| 236 |
+
f"""
|
| 237 |
<div style="text-align: center; font-size: 14px; color: gray; margin-top: 2em;">
|
| 238 |
📬 For questions or feedback, contact <a href="mailto:[email protected]">[email protected]</a> or visit the Community tab at the top of this page.<br>
|
| 239 |
+
Visit the <a href="https://datapoints.ginkgo.bio/ai-competitions/2025-abdev-competition">Competition Registration page</a> to sign up for updates and to register a team, and see Terms <a href="{TERMS_URL}">here</a>.
|
| 240 |
</div>
|
| 241 |
""",
|
| 242 |
elem_id="contact-footer",
|
constants.py
CHANGED
|
@@ -30,6 +30,7 @@ ASSAY_EMOJIS = {
|
|
| 30 |
}
|
| 31 |
|
| 32 |
REGISTRATION_CODE = "GINKGO-ABDEV-2025"
|
|
|
|
| 33 |
|
| 34 |
# Input CSV file requirements
|
| 35 |
REQUIRED_COLUMNS: list[str] = [
|
|
|
|
| 30 |
}
|
| 31 |
|
| 32 |
REGISTRATION_CODE = "GINKGO-ABDEV-2025"
|
| 33 |
+
TERMS_URL = "https://euphsfcyogalqiqsawbo.supabase.co/storage/v1/object/public/gdpweb/pdfs/2025%20Ginkgo%20Antibody%20Developability%20Prediction%20Competition%202025-08-28-v2.pdf"
|
| 34 |
|
| 35 |
# Input CSV file requirements
|
| 36 |
REQUIRED_COLUMNS: list[str] = [
|