Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| PowerLM-3b.Q2_K.gguf | Q2_K | 1.25GB |
| PowerLM-3b.IQ3_XS.gguf | IQ3_XS | 1.38GB |
| PowerLM-3b.IQ3_S.gguf | IQ3_S | 1.45GB |
| PowerLM-3b.Q3_K_S.gguf | Q3_K_S | 1.45GB |
| PowerLM-3b.IQ3_M.gguf | IQ3_M | 1.52GB |
| PowerLM-3b.Q3_K.gguf | Q3_K | 1.62GB |
| PowerLM-3b.Q3_K_M.gguf | Q3_K_M | 1.62GB |
| PowerLM-3b.Q3_K_L.gguf | Q3_K_L | 1.76GB |
| PowerLM-3b.IQ4_XS.gguf | IQ4_XS | 1.79GB |
| PowerLM-3b.Q4_0.gguf | Q4_0 | 1.87GB |
| PowerLM-3b.IQ4_NL.gguf | IQ4_NL | 1.89GB |
| PowerLM-3b.Q4_K_S.gguf | Q4_K_S | 1.89GB |
| PowerLM-3b.Q4_K.gguf | Q4_K | 2.0GB |
| PowerLM-3b.Q4_K_M.gguf | Q4_K_M | 2.0GB |
| PowerLM-3b.Q4_1.gguf | Q4_1 | 2.07GB |
| PowerLM-3b.Q5_0.gguf | Q5_0 | 2.27GB |
| PowerLM-3b.Q5_K_S.gguf | Q5_K_S | 2.27GB |
| PowerLM-3b.Q5_K.gguf | Q5_K | 2.33GB |
| PowerLM-3b.Q5_K_M.gguf | Q5_K_M | 2.33GB |
| PowerLM-3b.Q5_1.gguf | Q5_1 | 2.47GB |
| PowerLM-3b.Q6_K.gguf | Q6_K | 2.69GB |
| PowerLM-3b.Q8_0.gguf | Q8_0 | 3.48GB |
1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3device = "cuda" # or "cpu"
4model_path = "ibm/PowerLM-3b"
5tokenizer = AutoTokenizer.from_pretrained(model_path)
6# drop device_map if running on CPU
7model = AutoModelForCausalLM.from_pretrained(model_path, device_map=device)
8model.eval()
9# change input text as desired
10prompt = "Write a code to find the maximum value in a list of numbers."
11# tokenize the text
12input_tokens = tokenizer(prompt, return_tensors="pt")
13# transfer tokenized inputs to the device
14for i in input_tokens:
15 input_tokens[i] = input_tokens[i].to(device)
16# generate output tokens
17output = model.generate(**input_tokens, max_new_tokens=100)
18# decode output tokens into text
19output = tokenizer.batch_decode(output)
20# loop over the batch to print, in this example the batch size is 1
21for i in output:
22 print(i)