legolasyiu commited on
Commit
8c9778d
·
verified ·
1 Parent(s): c98a93c

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +104 -18
index.html CHANGED
@@ -1,19 +1,105 @@
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
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>EpistemeAI LLM Guide</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
8
+ <style>
9
+ body {
10
+ font-family: 'Open Sans', sans-serif;
11
+ background-color: #f5f5f5;
12
+ color: #333;
13
+ margin: 0;
14
+ padding: 0;
15
+ line-height: 1.6;
16
+ }
17
+ header {
18
+ background-color: #004080;
19
+ color: #fff;
20
+ padding: 20px 0;
21
+ text-align: center;
22
+ }
23
+ header h1 {
24
+ margin: 0;
25
+ font-size: 2rem;
26
+ }
27
+ .container {
28
+ max-width: 960px;
29
+ margin: 30px auto;
30
+ background-color: #fff;
31
+ padding: 30px;
32
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
33
+ }
34
+ h2 {
35
+ color: #004080;
36
+ border-bottom: 2px solid #004080;
37
+ padding-bottom: 5px;
38
+ }
39
+ ul {
40
+ list-style-type: none;
41
+ padding-left: 0;
42
+ }
43
+ li {
44
+ padding: 10px 0;
45
+ border-bottom: 1px solid #ddd;
46
+ }
47
+ li:last-child {
48
+ border-bottom: none;
49
+ }
50
+ .model-title {
51
+ font-weight: bold;
52
+ }
53
+ .sub-list {
54
+ margin-left: 20px;
55
+ list-style-type: disc;
56
+ }
57
+ footer {
58
+ text-align: center;
59
+ padding: 20px;
60
+ background-color: #004080;
61
+ color: #fff;
62
+ margin-top: 30px;
63
+ }
64
+ </style>
65
+ </head>
66
+ <body>
67
+ <header>
68
+ <h1>EpistemeAI LLM Guide</h1>
69
+ </header>
70
+
71
+ <div class="container">
72
+ <h2>Phi 4 Series</h2>
73
+ <ul>
74
+ <li>
75
+ <span class="model-title">DeepThink-Phi4</span> – highest reasoning model in EpistemeAI lineup.
76
+ </li>
77
+ </ul>
78
+
79
+ <h2>Llama Series</h2>
80
+ <ul>
81
+ <li>
82
+ <span class="model-title">1B Model</span>
83
+ </li>
84
+ <li>
85
+ <span class="model-title">3B Model</span>
86
+ <ul class="sub-list">
87
+ <li>EpistemeAI/ReasoningCore-3B-RE1-V2 – (GRPO with math with ReasoningCore-3B-0)</li>
88
+ <li>EpistemeAI/ReasoningCore-3B-0 – (Original Reasoning model)</li>
89
+ </ul>
90
+ </li>
91
+ <li>
92
+ <span class="model-title">8B Model</span>
93
+ <ul class="sub-list">
94
+ <li>Non Reasoning: EpistemeAI/Fireball-Alpaca-Llama3.1.07-8B-Philos-Math-KTO-beta</li>
95
+ <li>Reasoning: EpistemeAI/Fireball-R1-Llama-3.1-8B-Medical-COT (Medical)</li>
96
+ </ul>
97
+ </li>
98
+ </ul>
99
+ </div>
100
+
101
+ <footer>
102
+ <p>&copy; 2025 EpistemeAI. All Rights Reserved.</p>
103
+ </footer>
104
+ </body>
105
  </html>