FlameF0X commited on
Commit
1df72c3
·
verified ·
1 Parent(s): ceb0981

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +48 -18
index.html CHANGED
@@ -1,19 +1,49 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Model Benchmark: First Grade Math</title>
6
+ <style>
7
+ body {
8
+ font-family: Arial, sans-serif;
9
+ background: #f9f9f9;
10
+ margin: 0;
11
+ padding: 20px;
12
+ text-align: center;
13
+ }
14
+ h1 {
15
+ color: #333;
16
+ }
17
+ img {
18
+ max-width: 90%;
19
+ height: auto;
20
+ border: 1px solid #ccc;
21
+ box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
22
+ }
23
+ .model-info {
24
+ margin-top: 20px;
25
+ font-size: 16px;
26
+ }
27
+ .model-info ul {
28
+ list-style: none;
29
+ padding: 0;
30
+ }
31
+ .model-info li {
32
+ padding: 6px 0;
33
+ }
34
+ </style>
35
+ </head>
36
+ <body>
37
+ <h1>Model Accuracy on First Grade Math (1000 Questions Each)</h1>
38
+ <img src="download.png" alt="Model Benchmark Chart">
39
+
40
+ <div class="model-info">
41
+ <h2>Models Benchmarked</h2>
42
+ <ul>
43
+ <li><strong>FlameF0X/MathGPT2</strong>: 763 correct / 237 incorrect</li>
44
+ <li><strong>FlameF0X/Muffin-2.9b-1C25</strong>: 9 correct / 991 incorrect</li>
45
+ <li><strong>FlameF0X/MuffinFace-2</strong>: 8 correct / 992 incorrect</li>
46
+ </ul>
47
+ </div>
48
+ </body>
49
  </html>