File size: 1,845 Bytes
9cc9884
7b49c90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9cc9884
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>MAP Challenge</title>
    <style>
      :root {
        color-scheme: light;
      }
      body {
        margin: 0;
        padding: 32px;
        font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
        background: #f8fafc;
        color: #0f172a;
      }
      .card {
        max-width: 980px;
        margin: 0 auto;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 8px 28px rgba(2, 6, 23, 0.06);
      }
      h1 {
        margin: 0 0 16px;
        font-size: 28px;
      }
      p {
        margin: 0 0 12px;
        line-height: 1.55;
        font-size: 16px;
      }
      ul {
        margin: 0 0 4px;
        padding-left: 20px;
      }
      li {
        margin: 8px 0;
      }
      a {
        color: #1d4ed8;
        text-decoration: none;
      }
      a:hover {
        text-decoration: underline;
      }
    </style>
  </head>
  <body>
    <main class="card">
      <h1>MAP Challenge</h1>
      <p>
        Welcome to the MAP challenge organised by the University of Zurich and Google Deepmind! Our aim is to run the
        first assessment of multimodal AI systems on accessibility planning for journeys in the real world.
      </p>
      <p>Current pilot components:</p>
      <ul>
        <li><a href="https://huggingface.co/spaces/map-setup-pilot/challenge-home">Public challenge home</a></li>
        <li><a href="https://huggingface.co/spaces/map-setup-pilot/leaderboard">Leaderboard Space</a></li>
        <li><a href="https://huggingface.co/spaces/map-setup-pilot/submission-portal">Submission Space</a></li>
      </ul>
    </main>
  </body>
</html>