Guide_LLM_EpistemeAI / index.html
legolasyiu's picture
Update index.html
8c9778d verified
raw
history blame
2.48 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>EpistemeAI LLM Guide</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Open Sans', sans-serif;
background-color: #f5f5f5;
color: #333;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #004080;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2rem;
}
.container {
max-width: 960px;
margin: 30px auto;
background-color: #fff;
padding: 30px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h2 {
color: #004080;
border-bottom: 2px solid #004080;
padding-bottom: 5px;
}
ul {
list-style-type: none;
padding-left: 0;
}
li {
padding: 10px 0;
border-bottom: 1px solid #ddd;
}
li:last-child {
border-bottom: none;
}
.model-title {
font-weight: bold;
}
.sub-list {
margin-left: 20px;
list-style-type: disc;
}
footer {
text-align: center;
padding: 20px;
background-color: #004080;
color: #fff;
margin-top: 30px;
}
</style>
</head>
<body>
<header>
<h1>EpistemeAI LLM Guide</h1>
</header>
<div class="container">
<h2>Phi 4 Series</h2>
<ul>
<li>
<span class="model-title">DeepThink-Phi4</span> – highest reasoning model in EpistemeAI lineup.
</li>
</ul>
<h2>Llama Series</h2>
<ul>
<li>
<span class="model-title">1B Model</span>
</li>
<li>
<span class="model-title">3B Model</span>
<ul class="sub-list">
<li>EpistemeAI/ReasoningCore-3B-RE1-V2 – (GRPO with math with ReasoningCore-3B-0)</li>
<li>EpistemeAI/ReasoningCore-3B-0 – (Original Reasoning model)</li>
</ul>
</li>
<li>
<span class="model-title">8B Model</span>
<ul class="sub-list">
<li>Non Reasoning: EpistemeAI/Fireball-Alpaca-Llama3.1.07-8B-Philos-Math-KTO-beta</li>
<li>Reasoning: EpistemeAI/Fireball-R1-Llama-3.1-8B-Medical-COT (Medical)</li>
</ul>
</li>
</ul>
</div>
<footer>
<p>&copy; 2025 EpistemeAI. All Rights Reserved.</p>
</footer>
</body>
</html>