Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| QuantumLM-70B-hf.Q2_K.gguf | Q2_K | 23.71GB |
| QuantumLM-70B-hf.IQ3_XS.gguf | IQ3_XS | 26.37GB |
| QuantumLM-70B-hf.IQ3_S.gguf | IQ3_S | 27.86GB |
| QuantumLM-70B-hf.Q3_K_S.gguf | Q3_K_S | 27.86GB |
| QuantumLM-70B-hf.IQ3_M.gguf | IQ3_M | 28.82GB |
| QuantumLM-70B-hf.Q3_K.gguf | Q3_K | 30.99GB |
| QuantumLM-70B-hf.Q3_K_M.gguf | Q3_K_M | 30.99GB |
| QuantumLM-70B-hf.Q3_K_L.gguf | Q3_K_L | 33.67GB |
| QuantumLM-70B-hf.IQ4_XS.gguf | IQ4_XS | 34.64GB |
| QuantumLM-70B-hf.Q4_0.gguf | Q4_0 | 36.2GB |
| QuantumLM-70B-hf.IQ4_NL.gguf | IQ4_NL | 36.55GB |
| QuantumLM-70B-hf.Q4_K_S.gguf | Q4_K_S | 36.55GB |
| QuantumLM-70B-hf.Q4_K.gguf | Q4_K | 38.58GB |
| QuantumLM-70B-hf.Q4_K_M.gguf | Q4_K_M | 38.58GB |
| QuantumLM-70B-hf.Q4_1.gguf | Q4_1 | 40.2GB |
| QuantumLM-70B-hf.Q5_0.gguf | Q5_0 | 44.2GB |
| QuantumLM-70B-hf.Q5_K_S.gguf | Q5_K_S | 44.2GB |
| QuantumLM-70B-hf.Q5_K.gguf | Q5_K | 45.41GB |
| QuantumLM-70B-hf.Q5_K_M.gguf | Q5_K_M | 45.41GB |
| QuantumLM-70B-hf.Q5_1.gguf | Q5_1 | 48.2GB |
| QuantumLM-70B-hf.Q6_K.gguf | Q6_K | 52.7GB |
| QuantumLM-70B-hf.Q8_0.gguf | Q8_0 | 68.26GB |
QuantumLM is a Llama2 70B model finetuned on an guanaco, guanaco-unchained DatasetQuantumLM-70B-hf using the following code snippet:1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
3
4tokenizer = AutoTokenizer.from_pretrained("quantumaikr/QuantumLM-70B-hf")
5model = AutoModelForCausalLM.from_pretrained("quantumaikr/QuantumLM-70B-hf", torch_dtype=torch.bfloat16, device_map="auto")
6
7system_prompt = "### System:\nYou are QuantumLM, an AI that follows instructions extremely well. Help as much as you can. Remember, be safe, and don't do anything illegal.\n\n"
8
9message = "Write me a poem please"
10prompt = f"{system_prompt}### User: {message}\n\n### Assistant:\n"
11inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
12output = model.generate(**inputs, do_sample=True, top_p=0.95, top_k=0, max_new_tokens=256)
13
14print(tokenizer.decode(output[0], skip_special_tokens=True))### System:
This is a system prompt, please behave and help the user.
### User:
Your prompt here
### Assistant
The output of QuantumLM