Spaces:
Running
Running
File size: 1,719 Bytes
afb9f5f |
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 |
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Text - ClosedToOpen</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="navbar">
<div class="nav-content">
<h1 class="nav-title">ClosedToOpen</h1>
<p class="nav-subtitle">how to stop relying on proprietary APIs for AI and start living freely</p>
</div>
</nav>
<main class="main-content">
<div class="breadcrumb">
<a href="index.html">β Back to Topics</a>
</div>
<section class="topic-header">
<h1 class="topic-title">Text</h1>
<p class="topic-description">Replace GPT models with open-source alternatives for text generation and understanding</p>
</section>
<section class="recipes-section">
<h2 class="section-title">Recipes</h2>
<div class="recipes-grid">
<div class="recipe-card">
<h3>GPT-4 β Llama 3</h3>
<p>Replace GPT-4 with Llama 3 for general text tasks</p>
<div class="recipe-status">Coming Soon</div>
</div>
<div class="recipe-card">
<h3>GPT-3.5 β Mistral</h3>
<p>Use Mistral models for faster, cheaper text generation</p>
<div class="recipe-status">Coming Soon</div>
</div>
<div class="recipe-card">
<h3>Embeddings β Sentence Transformers</h3>
<p>Replace OpenAI embeddings with Sentence Transformers</p>
<div class="recipe-status">Coming Soon</div>
</div>
<div class="recipe-card">
<h3>Fine-tuning β LoRA</h3>
<p>Fine-tune models efficiently using LoRA techniques</p>
<div class="recipe-status">Coming Soon</div>
</div>
</div>
</section>
</main>
</body>
</html>
|