closed2open / text.html
abidlabs's picture
abidlabs HF Staff
changes
afb9f5f
<!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>