File size: 1,613 Bytes
343b03a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Intern-S1 Quiz: Understand the Scientific Multimodal Foundation Model</title>
    <link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
    <header>
        <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="built-with">Built with anycoder</a>
        <h1>Intern-S1 Quiz</h1>
        <p>Test your understanding of the Intern-S1 scientific multimodal foundation model paper</p>
    </header>

    <main>
        <section id="quiz-container">
            <div id="question-display">
                <!-- Questions will be dynamically inserted here -->
            </div>
            <div id="controls">
                <button id="prev-btn" disabled>Previous</button>
                <button id="next-btn">Next</button>
                <button id="submit-btn" style="display:none;">Submit Quiz</button>
            </div>
        </section>

        <section id="results" style="display:none;">
            <h2>Your Results</h2>
            <p id="score-display"></p>
            <div id="feedback"></div>
            <button id="restart-btn">Try Again</button>
        </section>
    </main>

    <footer>
        <p>Based on the paper: "INTERN-S1: A SCIENTIFIC MULTIMODAL FOUNDATION MODEL" by Intern-S1 Team, Shanghai AI Laboratory</p>
        <p><a href="https://huggingface.co/internlm/Intern-S1" target="_blank">Explore Intern-S1 on Hugging Face</a></p>
    </footer>

    <script src="assets/js/quiz.js"></script>
</body>
</html>