Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| han-llm-7b-v3.Q2_K.gguf | Q2_K | 2.55GB |
| han-llm-7b-v3.IQ3_XS.gguf | IQ3_XS | 2.83GB |
| han-llm-7b-v3.IQ3_S.gguf | IQ3_S | 2.98GB |
| han-llm-7b-v3.Q3_K_S.gguf | Q3_K_S | 2.96GB |
| han-llm-7b-v3.IQ3_M.gguf | IQ3_M | 3.07GB |
| han-llm-7b-v3.Q3_K.gguf | Q3_K | 3.29GB |
| han-llm-7b-v3.Q3_K_M.gguf | Q3_K_M | 3.29GB |
| han-llm-7b-v3.Q3_K_L.gguf | Q3_K_L | 3.57GB |
| han-llm-7b-v3.IQ4_XS.gguf | IQ4_XS | 3.69GB |
| han-llm-7b-v3.Q4_0.gguf | Q4_0 | 3.84GB |
| han-llm-7b-v3.IQ4_NL.gguf | IQ4_NL | 3.89GB |
| han-llm-7b-v3.Q4_K_S.gguf | Q4_K_S | 3.87GB |
| han-llm-7b-v3.Q4_K.gguf | Q4_K | 4.09GB |
| han-llm-7b-v3.Q4_K_M.gguf | Q4_K_M | 4.09GB |
| han-llm-7b-v3.Q4_1.gguf | Q4_1 | 4.26GB |
| han-llm-7b-v3.Q5_0.gguf | Q5_0 | 4.67GB |
| han-llm-7b-v3.Q5_K_S.gguf | Q5_K_S | 4.67GB |
| han-llm-7b-v3.Q5_K.gguf | Q5_K | 4.8GB |
| han-llm-7b-v3.Q5_K_M.gguf | Q5_K_M | 4.8GB |
| han-llm-7b-v3.Q5_1.gguf | Q5_1 | 5.09GB |
| han-llm-7b-v3.Q6_K.gguf | Q6_K | 5.55GB |
| han-llm-7b-v3.Q8_0.gguf | Q8_0 | 7.19GB |
1# !pip install accelerate sentencepiece transformers bitsandbytes
2import torch
3from transformers import pipeline
4
5pipe = pipeline("text-generation", model="wannaphong/han-llm-7b-v3", torch_dtype=torch.bfloat16, device_map="auto")
6
7# We use the tokenizer's chat template to format each message - see https://huggingface.co/docs/transformers/main/en/chat_templating
8messages = [
9 {"role": "user", "content": "แมวคืออะไร"},
10]
11prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
12outputs = pipe(prompt, max_new_tokens=300, do_sample=True, temperature=0.9, top_k=50, top_p=0.95, no_repeat_ngram_size=2,typical_p=1.)
13print(outputs[0]["generated_text"])