Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| vulture-40b.Q2_K.gguf | Q2_K | 14.52GB |
| vulture-40b.IQ3_XS.gguf | IQ3_XS | 16.32GB |
| vulture-40b.IQ3_S.gguf | IQ3_S | 16.85GB |
| vulture-40b.Q3_K_S.gguf | Q3_K_S | 16.85GB |
| vulture-40b.IQ3_M.gguf | IQ3_M | 17.64GB |
| vulture-40b.Q3_K.gguf | Q3_K | 18.5GB |
| vulture-40b.Q3_K_M.gguf | Q3_K_M | 18.5GB |
| vulture-40b.Q3_K_L.gguf | Q3_K_L | 19.9GB |
| vulture-40b.IQ4_XS.gguf | IQ4_XS | 20.98GB |
| vulture-40b.Q4_0.gguf | Q4_0 | 21.89GB |
| vulture-40b.IQ4_NL.gguf | IQ4_NL | 22.11GB |
| vulture-40b.Q4_K_S.gguf | Q4_K_S | 21.89GB |
| vulture-40b.Q4_K.gguf | Q4_K | 23.46GB |
| vulture-40b.Q4_K_M.gguf | Q4_K_M | 23.46GB |
| vulture-40b.Q4_1.gguf | Q4_1 | 24.27GB |
| vulture-40b.Q5_0.gguf | Q5_0 | 26.64GB |
| vulture-40b.Q5_K_S.gguf | Q5_K_S | 26.64GB |
| vulture-40b.Q5_K.gguf | Q5_K | 28.2GB |
| vulture-40b.Q5_K_M.gguf | Q5_K_M | 28.2GB |
| vulture-40b.Q5_1.gguf | Q5_1 | 29.01GB |
| vulture-40b.Q6_K.gguf | Q6_K | 31.68GB |
| vulture-40b.Q8_0.gguf | Q8_0 | 40.88GB |
A chat between a curious user and an artificial intelligence assistant.
USER:{user's question}<|endoftext|>ASSISTANT:bfloat16 precision you need approximately 4xA100 80GB or equivalent.1from transformers import AutoTokenizer, AutoModelForCausalLM
2import transformers
3import torch
4
5model = "vilm/vulture-40B"
6
7tokenizer = AutoTokenizer.from_pretrained(model)
8m = AutoModelForCausalLM.from_pretrained(model, torch_dtype=torch.bfloat16, device_map="auto" )
9
10prompt = "A chat between a curious user and an artificial intelligence assistant.\n\nUSER:Thành phố Hồ Chí Minh nằm ở đâu?<|endoftext|>ASSISTANT:"
11
12inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
13
14output = m.generate(input_ids=inputs["input_ids"],
15 attention_mask=inputs["attention_mask"],
16 do_sample=True,
17 temperature=0.6,
18 top_p=0.9,
19 max_new_tokens=50,)
20output = output[0].to("cpu")
21print(tokenizer.decode(output))