Text Generation
Transformers
Safetensors
llama
mergekit
Merge
conversational
text-generation-inference
Instructions to use zerofata/L3.3-GeneticLemonade-Final-70B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zerofata/L3.3-GeneticLemonade-Final-70B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zerofata/L3.3-GeneticLemonade-Final-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-Final-70B") model = AutoModelForCausalLM.from_pretrained("zerofata/L3.3-GeneticLemonade-Final-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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use zerofata/L3.3-GeneticLemonade-Final-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-Final-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-Final-70B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zerofata/L3.3-GeneticLemonade-Final-70B
- SGLang
How to use zerofata/L3.3-GeneticLemonade-Final-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-Final-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-Final-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-Final-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-Final-70B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use zerofata/L3.3-GeneticLemonade-Final-70B with Docker Model Runner:
docker model run hf.co/zerofata/L3.3-GeneticLemonade-Final-70B
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,33 +5,75 @@ base_model:
|
|
| 5 |
- crestf411/L3.1-nemotron-sunfall-v0.7.0
|
| 6 |
- SicariusSicariiStuff/Negative_LLAMA_70B
|
| 7 |
- EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
library_name: transformers
|
| 9 |
tags:
|
| 10 |
- mergekit
|
| 11 |
- merge
|
| 12 |
-
|
| 13 |
---
|
| 14 |
-
#
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
-
|
| 22 |
|
| 23 |
-
###
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
-
|
| 26 |
-
* [LatitudeGames/Wayfarer-Large-70B-Llama-3.3](https://huggingface.co/LatitudeGames/Wayfarer-Large-70B-Llama-3.3)
|
| 27 |
-
* [Sao10K/L3.3-70B-Euryale-v2.3](https://huggingface.co/Sao10K/L3.3-70B-Euryale-v2.3)
|
| 28 |
-
* [crestf411/L3.1-nemotron-sunfall-v0.7.0](https://huggingface.co/crestf411/L3.1-nemotron-sunfall-v0.7.0)
|
| 29 |
-
* [SicariusSicariiStuff/Negative_LLAMA_70B](https://huggingface.co/SicariusSicariiStuff/Negative_LLAMA_70B)
|
| 30 |
-
* [EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1](https://huggingface.co/EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1)
|
| 31 |
|
| 32 |
-
###
|
| 33 |
|
| 34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
```yaml
|
| 37 |
models:
|
|
@@ -47,4 +89,4 @@ out_dtype: bfloat16
|
|
| 47 |
dype: float32
|
| 48 |
tokenizer:
|
| 49 |
source: union
|
| 50 |
-
```
|
|
|
|
| 5 |
- crestf411/L3.1-nemotron-sunfall-v0.7.0
|
| 6 |
- SicariusSicariiStuff/Negative_LLAMA_70B
|
| 7 |
- EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1
|
| 8 |
+
- meta-llama/Llama-3.3-70B-Instruct
|
| 9 |
+
- OpenBuddy/openbuddy-llama3.3-70b-v24.1-131k
|
| 10 |
+
- nbeerbower/llama3.1-kartoffeldes-70B
|
| 11 |
+
- tokyotech-llm/Llama-3.1-Swallow-70B-Instruct-v0.3
|
| 12 |
library_name: transformers
|
| 13 |
tags:
|
| 14 |
- mergekit
|
| 15 |
- merge
|
| 16 |
+
license: llama3
|
| 17 |
---
|
| 18 |
+
# Genetic Lemonade Final
|
| 19 |
|
| 20 |
+

|
| 21 |
|
| 22 |
+
Inspired to learn how to merge by the Nevoria series from [SteelSkull](https://huggingface.co/Steelskull).
|
| 23 |
+
|
| 24 |
+
This model is the final result of the Genetic Lemonade series.
|
| 25 |
+
|
| 26 |
+
Designed for RP, this model is mostly uncensored and focused around striking a balance between writing style, creativity and intelligence.
|
| 27 |
+
|
| 28 |
+
Compared to the previous Genetic Lemonade Unleashed this should exhibit slightly more instruction following & coherence in complex scenes and *possibly* slightly more uncensored.
|
| 29 |
+
|
| 30 |
+
## SillyTavern Settings
|
| 31 |
|
| 32 |
+
[Llam@ception](https://huggingface.co/Konnect1221/The-Inception-Presets-Methception-LLamaception-Qwenception/tree/main/Llam%40ception) recommended for sane defaults if unsure, import them to SillyTavern and they're plug n play.
|
| 33 |
|
| 34 |
+
### Sampler Settings
|
| 35 |
+
- Temp: 0.9-1.0
|
| 36 |
+
- MinP: 0.03-0.05
|
| 37 |
+
- Dry: 0.8, 1.75, 4
|
| 38 |
|
| 39 |
+
Temperature last, neutralize other samplers. This model natively strikes a balance of creativity & intelligence.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
|
| 41 |
+
### Instruct
|
| 42 |
|
| 43 |
+
Llama-3-Instruct-Names but you will need to uncheck "System same as user".
|
| 44 |
+
|
| 45 |
+
## Quants
|
| 46 |
+
|
| 47 |
+
### GGUF
|
| 48 |
+
|
| 49 |
+
TBC
|
| 50 |
+
|
| 51 |
+
### EXL2
|
| 52 |
+
|
| 53 |
+
TBC
|
| 54 |
+
|
| 55 |
+
## Merge Details
|
| 56 |
+
### Merge Method
|
| 57 |
+
|
| 58 |
+
This model was merged using the [SCE](https://arxiv.org/abs/2408.07990) merge method.
|
| 59 |
+
|
| 60 |
+
### Base_6_v2
|
| 61 |
+
```yaml
|
| 62 |
+
models:
|
| 63 |
+
- model: OpenBuddy/openbuddy-llama3.3-70b-v24.1-131k
|
| 64 |
+
- model: nbeerbower/llama3.1-kartoffeldes-70B
|
| 65 |
+
- model: tokyotech-llm/Llama-3.1-Swallow-70B-Instruct-v0.3
|
| 66 |
+
- model: SicariusSicariiStuff/Negative_LLAMA_70B
|
| 67 |
+
select_topk: .15
|
| 68 |
+
merge_method: sce
|
| 69 |
+
base_model: meta-llama/Llama-3.3-70B-Instruct
|
| 70 |
+
out_dtype: bfloat16
|
| 71 |
+
dype: float32
|
| 72 |
+
tokenizer:
|
| 73 |
+
source: base
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
### Genetic Lemonade Unleashed
|
| 77 |
|
| 78 |
```yaml
|
| 79 |
models:
|
|
|
|
| 89 |
dype: float32
|
| 90 |
tokenizer:
|
| 91 |
source: union
|
| 92 |
+
```
|