Jack Monas
commited on
Commit
·
0291335
1
Parent(s):
3f090e4
rules
Browse files
app.py
CHANGED
@@ -35,6 +35,60 @@ def main():
|
|
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 |
if __name__ == '__main__':
|
40 |
main()
|
|
|
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.markdown("### Datasets")
|
40 |
+
st.write(
|
41 |
+
|
42 |
+
)
|
43 |
+
|
44 |
+
st.markdown("### Scoring")
|
45 |
+
st.write(
|
46 |
+
"Our scoring system rewards strong performance across all challenges, with extra weight given to the Evaluation Challenge. "
|
47 |
+
"The breakdown is as follows:\n\n"
|
48 |
+
"**Compression Challenge**\n"
|
49 |
+
"- 1st Place: 10 points\n"
|
50 |
+
"- 2nd Place: 7 points\n"
|
51 |
+
"- 3rd Place: 5 points\n\n"
|
52 |
+
"**Sampling Challenge**\n"
|
53 |
+
"- 1st Place: 10 points\n"
|
54 |
+
"- 2nd Place: 7 points\n"
|
55 |
+
"- 3rd Place: 5 points\n\n"
|
56 |
+
"**Evaluation Challenge**\n"
|
57 |
+
"- 1st Place: 20 points\n"
|
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__':
|
94 |
main()
|