File size: 2,001 Bytes
4a24a40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2d35868
4a24a40
4327c94
4a24a40
4327c94
 
4a24a40
 
 
4327c94
4a24a40
ac9b17e
 
 
 
90fcd96
 
 
 
 
 
 
 
4a24a40
 
4327c94
4a24a40
 
 
 
c23ee47
4a24a40
 
 
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="zh">
<head>
    <meta charset="UTF-8">
    <title>home</title>
    <style>
        body {
            font-family: system-ui, sans-serif;
            max-width: 600px;
            margin: 50px auto;
            padding: 20px;
            background: #f9fafb;
        }
        h2 { color: #111; }
        ul { list-style: none; padding: 0; }
        li {
            margin: 12px 0;
            padding: 12px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: 500;
        }
        .size { color: #666; font-size: 0.9em; }
    </style>
</head>
<body>
    <h2>📦 File list</h2>
    <ul>
        <!-- 手动列出每个 zip 文件,文件名与根目录下的实际文件一致 -->
        <li>
            <span>dataset1.zip</span>
            <a href="./Linux固件升级工具.zip" download>⬇️ Dd</a>
        </li>
        <li>
            <span>dataset2.zip</span>
            <a href="./dataset2.zip" download>⬇️ Dd</a>
        </li>
        <li>
            <span>dataset3.zip</span>
            <a href="./dataset3.zip" download>⬇️ Dd</a>
        </li>
        <li>
            <span>dataset4.zip</span>
            <a href="./dataset4.zip" download>⬇️ Dd</a>
        </li>
        <li>
            <span>dataset5.zip</span>
            <a href="./dataset5.zip" download>⬇️ Dd</a>
        </li>
        <li>
            <span>model_weights.zip</span>
            <a href="./model_weights.zip" download>⬇️ Dd</a>
        </li>
        <!-- 新增文件时,复制上面一个 <li> 块,修改文件名即可 -->
    </ul>
    <p style="color: #888; font-size: 0.9em;">
        curl:<code>https://yourname.hf.space/filename.zip</code>
    </p>
</body>
</html>