EpistemeAI/Guide_LLM_EpistemeAI
0
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 a {58 color: #004080;59 text-decoration: none;60 }61 a:hover {62 text-decoration: underline;63 }64 footer {65 text-align: center;66 padding: 20px;67 background-color: #004080;68 color: #fff;69 margin-top: 30px;70 }71 </style>72</head>73<body>74 <header>75 <h1>EpistemeAI LLM Guide</h1>76 </header>77 78 <div class="container">79 <h2>Vibe Coder series</h2>80 <ul>81 <li>82 <span class="model-title">83 <a href="https://huggingface.co/EpistemeAI/VibeCoder-20b-RL1_0" target="_blank">EpistemeAI/VibeCoder-20b-RL1_0</a>84 </span> – highest performance Vibe Coder 20B in EpistemeAI lineup.85 </li>86 <li>87 <span class="model-title">88 <a href="https://huggingface.co/EpistemeAI/VCoder-120b-1.0" target="_blank">EpistemeAI/VCoder-120b-1.0</a>89 </span> – highest performance Vibe Coder 120B in EpistemeAI lineup.90 </li>91 </ul>92 <h2>Phi 4 Series(EOL)</h2>93 <ul>94 <li>95 <span class="model-title">96 <a href="https://huggingface.co/EpistemeAI/DeepThink-Phi4" target="_blank">DeepThink-Phi4</a>97 </span> – highest reasoning model in EpistemeAI lineup.98 </li>99 </ul>100 101 <h2>Llama Series (EOL)</h2>102 <ul>103 <li>104 <span class="model-title">105 <a href="/models/1b-model" target="_blank">1B Model</a>106 </span>107 </li>108 <li>109 <span class="model-title">3B Model</span>110 <ul class="sub-list">111 <li>112 <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)113 </li>114 <li>115 <a href="https://huggingface.co/EpistemeAI/ReasoningCore-3B-0" target="_blank">EpistemeAI/ReasoningCore-3B-0</a> – (Original Reasoning model)116 </li>117 </ul>118 </li>119 <li>120 <span class="model-title">8B Model</span>121 <ul class="sub-list">122 <li>123 Non Reasoning: 124 <a href="https://huggingface.co/EpistemeAI/Fireball-Alpaca-Llama3.1.07-8B-Philos-Math-KTO-beta" target="_blank">125 EpistemeAI/Fireball-Alpaca-Llama3.1.07-8B-Philos-Math-KTO-beta126 </a>127 </li>128 <li>129 Reasoning: 130 <a href="https://huggingface.co/EpistemeAI/Fireball-R1-Llama-3.1-8B-Medical-COT" target="_blank">131 EpistemeAI/Fireball-R1-Llama-3.1-8B-Medical-COT132 </a> (Medical)133 </li>134 <li>135 Reasoning:136 <a href="EpistemeAI/Fireball-R1-LLama-3.1-8B-Freedom-9000" target="_blank">137 EpistemeAI/Fireball-R1-Llama-3.1-8B-Freedom-9000138 </a> General139 </li>140 </ul>141 </li>142 </ul>143 </div>144 145 <footer>146 <p>© 2025 EpistemeAI. All Rights Reserved.</p>147 </footer>148</body>149</html>150 