Instructions to use zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B") model = AutoModelForCausalLM.from_pretrained("zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B
- SGLang
How to use zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B with Docker Model Runner:
docker model run hf.co/zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,220 @@
|
|
| 1 |
---
|
| 2 |
-
license: llama3.3
|
| 3 |
base_model:
|
| 4 |
- zerofata/L3.3-GeneticLemonade-Unleashed-70B
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
base_model:
|
| 3 |
- zerofata/L3.3-GeneticLemonade-Unleashed-70B
|
| 4 |
+
library_name: transformers
|
| 5 |
+
license: llama3
|
| 6 |
+
---
|
| 7 |
+
<!DOCTYPE html>
|
| 8 |
+
<style>
|
| 9 |
+
/* Base styling for cyberpunk theme */
|
| 10 |
+
body {font-family: sans-serif; background-color: #080c14; color: #e1e9f0; line-height: 1.6; margin: 0; padding: 0;}
|
| 11 |
+
|
| 12 |
+
/* Remove flicker keyframes */
|
| 13 |
+
|
| 14 |
+
/* Remove Basic Background animation test */
|
| 15 |
+
|
| 16 |
+
/* Animation classes */
|
| 17 |
+
/* Remove flicker-text rules */
|
| 18 |
+
|
| 19 |
+
/* New static style for LEMONADE */
|
| 20 |
+
.lemonade-text {
|
| 21 |
+
color: #33ff99;
|
| 22 |
+
position: relative; /* Keep relative positioning */
|
| 23 |
+
z-index: 2;
|
| 24 |
+
margin-left: 0.2em;
|
| 25 |
+
text-shadow: 0 0 10px #33ff99; /* Add static glow */
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
/* Section styling */
|
| 29 |
+
.section-container {background-color: rgba(8, 12, 20, 0.7); margin-bottom: 30px; position: relative; overflow: hidden; border-bottom: 1px solid #33ff99;}
|
| 30 |
+
.section-header {display: flex; align-items: center; background-color: rgba(0, 195, 255, 0.1); padding: 10px 20px;}
|
| 31 |
+
.section-indicator {width: 8px; height: 20px; background-color: #33ff99; margin-right: 15px;}
|
| 32 |
+
.section-title {font-family: 'Orbitron', sans-serif; color: #e1e9f0; font-size: 1.3rem; margin: 0; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;}
|
| 33 |
+
.section-content {padding: 20px; font-family: sans-serif; color: #e1e9f0; line-height: 1.6;}
|
| 34 |
+
|
| 35 |
+
/* Title styling */
|
| 36 |
+
.title-container {
|
| 37 |
+
background-color: #080c14;
|
| 38 |
+
position: relative;
|
| 39 |
+
overflow: hidden;
|
| 40 |
+
margin-bottom: 40px;
|
| 41 |
+
border-left: 3px solid #33ff99;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
/* Remove basic background animation test rule */
|
| 45 |
+
|
| 46 |
+
.title-wrapper {
|
| 47 |
+
position: relative;
|
| 48 |
+
z-index: 2;
|
| 49 |
+
padding: 25px 20px 30px 30px;
|
| 50 |
+
font-family: 'Orbitron', sans-serif;
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
.title-main {
|
| 54 |
+
color: #e1e9f0;
|
| 55 |
+
font-size: 3rem; /* Reduced font size */
|
| 56 |
+
font-weight: 700;
|
| 57 |
+
margin: 0;
|
| 58 |
+
letter-spacing: 2px;
|
| 59 |
+
display: inline-block;
|
| 60 |
+
position: relative;
|
| 61 |
+
text-transform: uppercase;
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
.title-prefix {
|
| 65 |
+
position: relative;
|
| 66 |
+
z-index: 2;
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
.title-subtitle {
|
| 70 |
+
padding-left: 15px;
|
| 71 |
+
margin-top: 5px;
|
| 72 |
+
margin-left: 5px;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.subtitle-text {
|
| 76 |
+
color: #00c3ff;
|
| 77 |
+
font-size: 1.2rem; /* Reduced font size */
|
| 78 |
+
font-family: 'Orbitron', sans-serif;
|
| 79 |
+
font-weight: 300;
|
| 80 |
+
letter-spacing: 3px;
|
| 81 |
+
text-transform: uppercase;
|
| 82 |
+
display: inline-block;
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
.glitchy-overlay {
|
| 86 |
+
position: absolute;
|
| 87 |
+
top: 0;
|
| 88 |
+
left: 0;
|
| 89 |
+
width: 100%;
|
| 90 |
+
height: 100%;
|
| 91 |
+
background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0, rgba(0,0,0,0.1) 1px, rgba(0,0,0,0) 2px);
|
| 92 |
+
z-index: 1;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
/* Data box styling */
|
| 96 |
+
.data-box {background-color: rgba(0, 0, 0, 0.2); padding: 15px; border-left: 2px solid #33ff99; margin-bottom: 20px;}
|
| 97 |
+
.data-row {display: flex; margin-bottom: 8px;}
|
| 98 |
+
.data-arrow {color: #33ff99; width: 20px; display: inline-block;}
|
| 99 |
+
.data-label {color: #00c3ff; width: 80px; display: inline-block;}
|
| 100 |
+
|
| 101 |
+
/* Subheading styling */
|
| 102 |
+
.subheading {color: #00c3ff; font-size: 1.1rem; margin-top: 20px; margin-bottom: 15px; font-weight: 400; border-bottom: 1px dashed rgba(0, 195, 255, 0.3); display: inline-block; text-transform: uppercase; letter-spacing: 1px; font-family: 'Orbitron', sans-serif;}
|
| 103 |
+
|
| 104 |
+
/* Links */
|
| 105 |
+
a {color: #00c3ff; text-decoration: none;}
|
| 106 |
+
a:hover {text-decoration: underline;}
|
| 107 |
+
|
| 108 |
+
/* Container */
|
| 109 |
+
.container {max-width: 1200px; margin: 0 auto; padding: 40px 20px;}
|
| 110 |
+
|
| 111 |
+
/* Cyberpunk grid background */
|
| 112 |
+
.cyber-grid-bg {position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #05071b; background-image: linear-gradient(rgba(0, 194, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 194, 255, 0.03) 1px, transparent 1px); background-size: 20px 20px; z-index: -1;}
|
| 113 |
+
</style>
|
| 114 |
+
<html lang="en">
|
| 115 |
+
<head>
|
| 116 |
+
<meta charset="UTF-8">
|
| 117 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 118 |
+
<title>GENETIC LEMONADE UNLEASHED v2</title>
|
| 119 |
+
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=JetBrains+Mono:wght@100;300;400;700&display=swap" rel="stylesheet">
|
| 120 |
+
</head>
|
| 121 |
+
<body>
|
| 122 |
+
<div class="cyber-grid-bg"></div>
|
| 123 |
+
|
| 124 |
+
<div class="container">
|
| 125 |
+
<div class="title-container">
|
| 126 |
+
<!-- Glitchy overlay -->
|
| 127 |
+
<div class="glitchy-overlay"></div>
|
| 128 |
+
<!-- Main title -->
|
| 129 |
+
<div class="title-wrapper">
|
| 130 |
+
<h1 class="title-main">
|
| 131 |
+
<span class="title-prefix">GENETIC</span>
|
| 132 |
+
<span class="lemonade-text">LEMONADE</span> <!-- Static text with glow -->
|
| 133 |
+
</h1>
|
| 134 |
+
<div class="title-subtitle">
|
| 135 |
+
<span class="subtitle-text">UNLEASHED v2</span>
|
| 136 |
+
</div>
|
| 137 |
+
</div>
|
| 138 |
+
</div>
|
| 139 |
+
|
| 140 |
+

|
| 141 |
+
|
| 142 |
+
<div class="section-container">
|
| 143 |
+
<div class="section-header">
|
| 144 |
+
<div class="section-indicator"></div>
|
| 145 |
+
<h2 class="section-title">01 // OVERVIEW</h2>
|
| 146 |
+
</div>
|
| 147 |
+
<div class="section-content">
|
| 148 |
+
<p>An experimental release.</p>
|
| 149 |
+
<p><a href="https://huggingface.co/zerofata/L3.3-GeneticLemonade-Unleashed-70B">zerofata/GeneticLemonade-Unleashed</a> qlora trained on a test dataset. Performance is improved from the original in my testing, but there are possibly (likely?) areas where the model will underperform which I am looking for feedback on.</p>
|
| 150 |
+
<p>This is a creative model intended to excel at character driven RP / ERP. It has not been tested or trained on adventure stories or any large amounts of creative writing.</p>
|
| 151 |
+
</div>
|
| 152 |
+
</div>
|
| 153 |
+
|
| 154 |
+
<div class="section-container">
|
| 155 |
+
<div class="section-header">
|
| 156 |
+
<div class="section-indicator"></div>
|
| 157 |
+
<h2 class="section-title">02 // SILLYTAVERN SETTINGS</h2>
|
| 158 |
+
</div>
|
| 159 |
+
<div class="section-content">
|
| 160 |
+
<p>Play with these, they are not the 'best' settings just a stable baseline.</p>
|
| 161 |
+
<h3 class="subheading">Recommended Samplers</h3>
|
| 162 |
+
<div class="data-box">
|
| 163 |
+
<div class="data-row">
|
| 164 |
+
<span class="data-arrow">></span>
|
| 165 |
+
<span class="data-label">Temp:</span>
|
| 166 |
+
<span>0.9 - 1.0</span>
|
| 167 |
+
</div>
|
| 168 |
+
<div class="data-row">
|
| 169 |
+
<span class="data-arrow">></span>
|
| 170 |
+
<span class="data-label">MinP:</span>
|
| 171 |
+
<span>0.03 - 0.04</span>
|
| 172 |
+
</div>
|
| 173 |
+
<div class="data-row">
|
| 174 |
+
<span class="data-arrow">></span>
|
| 175 |
+
<span class="data-label">Dry:</span>
|
| 176 |
+
<span>0.8, 1.75, 4</span>
|
| 177 |
+
</div>
|
| 178 |
+
</div>
|
| 179 |
+
<h3 class="subheading">Instruct</h3>
|
| 180 |
+
<div class="data-box">
|
| 181 |
+
<p style="margin: 0;">Llama-3-Instruct-Names but you will need to uncheck "System same as user".</p>
|
| 182 |
+
</div>
|
| 183 |
+
</div>
|
| 184 |
+
</div>
|
| 185 |
+
|
| 186 |
+
<div class="section-container">
|
| 187 |
+
<div class="section-header">
|
| 188 |
+
<div class="section-indicator"></div>
|
| 189 |
+
<h2 class="section-title">03 // QUANTIZATIONS</h2>
|
| 190 |
+
</div>
|
| 191 |
+
<div class="section-content">
|
| 192 |
+
<div style="margin-bottom: 20px;">
|
| 193 |
+
<h3 class="subheading">GGUF</h3>
|
| 194 |
+
<div style="margin-left: 20px;">
|
| 195 |
+
<span style="color: #33ff99; display: inline-block; margin-right: 10px;">> </span>Link (TBC)
|
| 196 |
+
</div>
|
| 197 |
+
</div>
|
| 198 |
+
<div>
|
| 199 |
+
<h3 class="subheading">EXL2</h3>
|
| 200 |
+
<div style="margin-left: 20px;">
|
| 201 |
+
<span style="color: #33ff99; display: inline-block; margin-right: 10px;">> </span><a href="https://huggingface.co/zerofata/L3.3-GeneticLemonade-Unleashed-v2-70B-4.5bpw-hb6-exl2">4.5bpw</a>
|
| 202 |
+
</div>
|
| 203 |
+
</div>
|
| 204 |
+
</div>
|
| 205 |
+
</div>
|
| 206 |
+
|
| 207 |
+
<div class="section-container">
|
| 208 |
+
<div class="section-header">
|
| 209 |
+
<div class="section-indicator"></div>
|
| 210 |
+
<h2 class="section-title">04 // DATASET</h2>
|
| 211 |
+
</div>
|
| 212 |
+
<div class="section-content">
|
| 213 |
+
<p>Model was trained on a tiny synthetic dataset of 450k tokens, approximately 130 conversations. Data was generated by script and then manually reviewed / edited.</p>
|
| 214 |
+
<p>The dataset is approximately 60% SFW and 40% NSFW. 90% multi turn RP conversations, 5% creative writing and 5% miscellaneous.</p>
|
| 215 |
+
<p>It is an experiment to see how models perform when provided with small amounts of high quality synthetic data, as opposed to human data.</p>
|
| 216 |
+
</div>
|
| 217 |
+
</div>
|
| 218 |
+
</div>
|
| 219 |
+
</body>
|
| 220 |
+
</html>
|