Jack Monas
commited on
Commit
·
0a9f9e7
1
Parent(s):
0291335
rules
Browse files
app.py
CHANGED
|
@@ -34,60 +34,28 @@ def main():
|
|
| 34 |
st.write(
|
| 35 |
"The Evaluation Challenge tackles the ultimate question: Can you predict a robot's performance in the real world without physically deploying it? In this challenge, you will be provided with many different policies for a specific task. Your task is to rank these policies according to their expected real-world performance. This ranking will be compared with the actual ranking of the policies."
|
| 36 |
)
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
st.
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
"- 2nd Place: 14 points\n"
|
| 59 |
-
"- 3rd Place: 10 points\n\n"
|
| 60 |
-
"The overall winner will be the team with the highest total points. In the event of a tie, the following tie-breakers will be applied in order:\n\n"
|
| 61 |
-
"1. Highest Evaluation Challenge score\n"
|
| 62 |
-
"2. Highest Sampling Challenge score\n\n"
|
| 63 |
-
)
|
| 64 |
-
|
| 65 |
-
st.markdown("### Rules")
|
| 66 |
-
st.write(
|
| 67 |
-
"We recognize that many submissions may not progress through all three challenges. To account for this, we have implemented a points-based system. "
|
| 68 |
-
"Points will be allocated based on placements in the Compression, Sampling, and Evaluation challenges. The overall winner is determined by the total points earned. "
|
| 69 |
-
"Detailed rules, including point weightings and submission guidelines, will be provided. All participants are expected to adhere to our code of conduct."
|
| 70 |
-
)
|
| 71 |
-
|
| 72 |
-
st.markdown("### Already Started Working on These Challenges?")
|
| 73 |
-
st.write(
|
| 74 |
-
"If you've already begun work on any of the challenges, we encourage you to share your progress with the community. "
|
| 75 |
-
"Connect with other participants via our Discord channel or GitHub repository to exchange ideas, get feedback, and collaborate."
|
| 76 |
-
)
|
| 77 |
|
| 78 |
-
st.markdown("### FAQs")
|
| 79 |
-
st.write(
|
| 80 |
-
"**Do I have to do every task?** \n"
|
| 81 |
-
"No. You may choose to participate in one or more of the challenges. However, participating in multiple challenges could help you earn more points and improve your overall ranking.\n\n"
|
| 82 |
-
"**Can I work in a team?** \n"
|
| 83 |
-
"Yes, team submissions are welcome.\n\n"
|
| 84 |
-
"**What are the submission deadlines?** \n"
|
| 85 |
-
"Deadlines for each challenge will be announced on the website and through our official communications.\n\n"
|
| 86 |
-
"**Where can I find more information?** \n"
|
| 87 |
-
"Detailed guidelines, additional resources, and further FAQs are available on our website.\n\n"
|
| 88 |
-
"**Who do I contact if I have questions?** \n"
|
| 89 |
-
"Please reach out to our support team via the provided email or join our Discord community for assistance."
|
| 90 |
-
)
|
| 91 |
|
| 92 |
|
| 93 |
if __name__ == '__main__':
|
|
|
|
| 34 |
st.write(
|
| 35 |
"The Evaluation Challenge tackles the ultimate question: Can you predict a robot's performance in the real world without physically deploying it? In this challenge, you will be provided with many different policies for a specific task. Your task is to rank these policies according to their expected real-world performance. This ranking will be compared with the actual ranking of the policies."
|
| 36 |
)
|
| 37 |
+
|
| 38 |
+
st.markdown("### Scoring")
|
| 39 |
+
st.write(
|
| 40 |
+
"Our scoring system rewards strong performance across all challenges, with extra weight given to the Evaluation Challenge. "
|
| 41 |
+
"The breakdown is as follows:\n\n"
|
| 42 |
+
"**Compression Challenge**\n"
|
| 43 |
+
"- 1st Place: 10 points\n"
|
| 44 |
+
"- 2nd Place: 7 points\n"
|
| 45 |
+
"- 3rd Place: 5 points\n\n"
|
| 46 |
+
"**Sampling Challenge**\n"
|
| 47 |
+
"- 1st Place: 10 points\n"
|
| 48 |
+
"- 2nd Place: 7 points\n"
|
| 49 |
+
"- 3rd Place: 5 points\n\n"
|
| 50 |
+
"**Evaluation Challenge**\n"
|
| 51 |
+
"- 1st Place: 20 points\n"
|
| 52 |
+
"- 2nd Place: 14 points\n"
|
| 53 |
+
"- 3rd Place: 10 points\n\n"
|
| 54 |
+
"The overall winner will be the team with the highest total points. In the event of a tie, the following tie-breakers will be applied in order:\n\n"
|
| 55 |
+
"1. Highest Evaluation Challenge score\n"
|
| 56 |
+
"2. Highest Sampling Challenge score\n\n"
|
| 57 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
|
| 60 |
|
| 61 |
if __name__ == '__main__':
|