File size: 5,018 Bytes
04aa03a
a63eb53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
791fe7f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a63eb53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ae99d33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a63eb53
 
 
 
 
36eb1bf
a63eb53
 
 
 
 
 
 
 
791fe7f
 
 
 
a63eb53
36eb1bf
a63eb53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ae99d33
 
 
 
a63eb53
 
 
 
791fe7f
 
 
a63eb53
 
 
 
 
 
791fe7f
aa9c244
 
 
791fe7f
ae99d33
 
 
 
 
 
 
 
 
 
a63eb53
d0b4474
a63eb53
 
 
04aa03a
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>MAP AI Benchmark</title>
    <style>
      :root {
        color-scheme: light;
        --ink: #111827;
        --muted: #4b5563;
        --line: #d7dee8;
        --blue: #1d4ed8;
        --green: #0f766e;
        --amber: #b45309;
        --surface: #f8fafc;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        background: var(--surface);
        color: var(--ink);
      }

      .skip-link {
        position: absolute;
        left: 16px;
        top: 16px;
        z-index: 100;
        transform: translateY(-160%);
        border-radius: 8px;
        padding: 10px 14px;
        background: #ffffff;
        color: var(--ink);
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 0 0 3px #fbbf24;
      }

      .skip-link:focus-visible {
        transform: translateY(0);
      }

      a:focus-visible {
        outline: 3px solid #fbbf24;
        outline-offset: 3px;
      }

      main {
        max-width: 1060px;
        margin: 0 auto;
        padding: 48px 20px;
      }

      h1 {
        max-width: 820px;
        margin: 0 0 16px;
        font-size: 4rem;
        line-height: 0.98;
      }

      p {
        max-width: 780px;
        margin: 0 0 18px;
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.65;
      }

      .links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
      }

      .status {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        max-width: 620px;
        margin-top: 30px;
      }

      .status div {
        min-height: 72px;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 14px;
        background: #ffffff;
      }

      .status strong,
      .status span {
        display: block;
      }

      .status span {
        margin-top: 4px;
        color: var(--muted);
        font-weight: 700;
      }

      .links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        border: 1px solid var(--line);
        border-left: 4px solid var(--green);
        border-radius: 8px;
        padding: 10px 14px;
        color: var(--ink);
        background: #ffffff;
        font-weight: 700;
        text-decoration: none;
      }

      .links a:focus-visible {
        box-shadow: 0 0 0 4px #ffffff, 0 0 0 7px #fbbf24;
      }

      .links a:nth-child(2) {
        border-left-color: var(--blue);
      }

      .links a:nth-child(3) {
        border-left-color: var(--amber);
      }

      .note {
        margin-top: 36px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
        color: #64748b;
        font-size: 0.96rem;
      }

      @media (max-width: 760px) {
        h1 {
          font-size: 2.55rem;
        }
      }

      @media (max-width: 520px) {
        main {
          padding: 38px 16px;
        }

        h1 {
          font-size: 2.25rem;
        }

        .links a {
          width: 100%;
          justify-content: center;
        }

        .status {
          grid-template-columns: 1fr;
        }
      }
    </style>
  </head>
  <body>
    <a class="skip-link" href="#main-content">Skip to main content</a>

    <main id="main-content" tabindex="-1">
      <h1>Multimodal Accessibility Planning AI Benchmark</h1>
      <p>
        MAP evaluates multimodal AI systems as assistants for users with accessibility requirements when planning visits to real places.
        The first benchmark setting focuses on Zurich and evidence-backed information about accessibility features of restaurants,
        cafes, museums, offices, and other public-facing locations.
      </p>
      <nav class="links" aria-label="MAP public pages">
        <a href="https://huggingface.co/spaces/map-ai-benchmark/challenge" target="_blank" rel="noopener noreferrer" aria-label="Challenge, opens in a new tab">Challenge</a>
        <a href="https://huggingface.co/spaces/map-ai-benchmark/workshop" target="_blank" rel="noopener noreferrer" aria-label="Workshop, opens in a new tab">Workshop</a>
        <a href="https://huggingface.co/spaces/map-ai-benchmark/benchmark" target="_blank" rel="noopener noreferrer" aria-label="Benchmark, opens in a new tab">Benchmark</a>
      </nav>
      <section class="status" aria-label="Future MAP repositories">
        <div>
          <strong>Models</strong>
          <span>Coming soon</span>
        </div>
        <div>
          <strong>Datasets</strong>
          <span>Coming soon</span>
        </div>
      </section>
      <p class="note">
        Submission and leaderboard will be added shortly.
      </p>
    </main>
  </body>
</html>