Spaces:
Running
Running
File size: 3,564 Bytes
8c9778d 8a67ad3 8c9778d 8a67ad3 8c9778d 8a67ad3 8c9778d 8a67ad3 8c9778d 8a67ad3 2d4b509 0754cd9 2d4b509 8a67ad3 8c9778d c98a93c |
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
<!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;
}
a {
color: #004080;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
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">
<a href="https://huggingface.co/EpistemeAI/DeepThink-Phi4" target="_blank">DeepThink-Phi4</a>
</span> β highest reasoning model in EpistemeAI lineup.
</li>
</ul>
<h2>Llama Series</h2>
<ul>
<li>
<span class="model-title">
<a href="/models/1b-model" target="_blank">1B Model</a>
</span>
</li>
<li>
<span class="model-title">3B Model</span>
<ul class="sub-list">
<li>
<a href="https://huggingface.co/EpistemeAI/ReasoningCore-3B-RE1-V2" target="_blank">EpistemeAI/ReasoningCore-3B-RE1-V2</a> β (GRPO with math with ReasoningCore-3B-0)
</li>
<li>
<a href="https://huggingface.co/EpistemeAI/ReasoningCore-3B-0" target="_blank">EpistemeAI/ReasoningCore-3B-0</a> β (Original Reasoning model)
</li>
</ul>
</li>
<li>
<span class="model-title">8B Model</span>
<ul class="sub-list">
<li>
Non Reasoning:
<a href="https://huggingface.co/EpistemeAI/Fireball-Alpaca-Llama3.1.07-8B-Philos-Math-KTO-beta" target="_blank">
EpistemeAI/Fireball-Alpaca-Llama3.1.07-8B-Philos-Math-KTO-beta
</a>
</li>
<li>
Reasoning:
<a href="https://huggingface.co/EpistemeAI/Fireball-R1-Llama-3.1-8B-Medical-COT" target="_blank">
EpistemeAI/Fireball-R1-Llama-3.1-8B-Medical-COT
</a> (Medical)
</li>
<li>
Reasoning:
<a href="EpistemeAI/Fireball-R1-LLama-3.1-8B-Freedom-9000" target="_blank">
EpistemeAI/Fireball-R1-Llama-3.1-8B-Freedom-9000
</a> General
</li>
</ul>
</li>
</ul>
</div>
<footer>
<p>© 2025 EpistemeAI. All Rights Reserved.</p>
</footer>
</body>
</html>
|