Quantization made by Richard Erkhov.
Enigma is a code-instruct model built on Llama 3.2 3b.
Enigma is also available for
Llama 3.1 8b!
Help us and recommend Enigma to your friends! We're excited for more Enigma releases in the future.
Enigma uses the
Llama 3.2 Instruct prompt format. The example script below can be used as a starting point for general chat:
1import transformers
2import torch
3
4model_id = "ValiantLabs/Llama3.2-3B-Enigma"
5
6pipeline = transformers.pipeline(
7 "text-generation",
8 model=model_id,
9 model_kwargs={"torch_dtype": torch.bfloat16},
10 device_map="auto",
11)
12
13messages = [
14 {"role": "system", "content": "You are Enigma, a highly capable code assistant."},
15 {"role": "user", "content": "Can you explain virtualization to me?"}
16]
17
18outputs = pipeline(
19 messages,
20 max_new_tokens=1024,
21)
22
23print(outputs[0]["generated_text"][-1])
Enigma is built on top of Llama 3.2 3b Instruct, using high quality code-instruct data and general chat data in Llama 3.2 Instruct prompt style to supplement overall performance.
Our current version of Enigma is trained on code-instruct data from
sequelbox/Tachibana and general chat data from
sequelbox/Supernova.
We care about open source.
For everyone to use.
We encourage others to finetune further from our models.