Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| code_gpt2_mini_model.Q2_K.gguf | Q2_K | 0.08GB |
| code_gpt2_mini_model.IQ3_XS.gguf | IQ3_XS | 0.08GB |
| code_gpt2_mini_model.IQ3_S.gguf | IQ3_S | 0.08GB |
| code_gpt2_mini_model.Q3_K_S.gguf | Q3_K_S | 0.08GB |
| code_gpt2_mini_model.IQ3_M.gguf | IQ3_M | 0.09GB |
| code_gpt2_mini_model.Q3_K.gguf | Q3_K | 0.09GB |
| code_gpt2_mini_model.Q3_K_M.gguf | Q3_K_M | 0.09GB |
| code_gpt2_mini_model.Q3_K_L.gguf | Q3_K_L | 0.1GB |
| code_gpt2_mini_model.IQ4_XS.gguf | IQ4_XS | 0.1GB |
| code_gpt2_mini_model.Q4_0.gguf | Q4_0 | 0.1GB |
| code_gpt2_mini_model.IQ4_NL.gguf | IQ4_NL | 0.1GB |
| code_gpt2_mini_model.Q4_K_S.gguf | Q4_K_S | 0.1GB |
| code_gpt2_mini_model.Q4_K.gguf | Q4_K | 0.11GB |
| code_gpt2_mini_model.Q4_K_M.gguf | Q4_K_M | 0.11GB |
| code_gpt2_mini_model.Q4_1.gguf | Q4_1 | 0.11GB |
| code_gpt2_mini_model.Q5_0.gguf | Q5_0 | 0.11GB |
| code_gpt2_mini_model.Q5_K_S.gguf | Q5_K_S | 0.11GB |
| code_gpt2_mini_model.Q5_K.gguf | Q5_K | 0.12GB |
| code_gpt2_mini_model.Q5_K_M.gguf | Q5_K_M | 0.12GB |
| code_gpt2_mini_model.Q5_1.gguf | Q5_1 | 0.12GB |
| code_gpt2_mini_model.Q6_K.gguf | Q6_K | 0.13GB |
| code_gpt2_mini_model.Q8_0.gguf | Q8_0 | 0.17GB |
Sharathhebbar24/chat_gpt2_dpo using mlabonne/CodeLlama-2-20ki only use the inputs from 1 to i but not the future tokens.1>>> from transformers import AutoTokenizer, AutoModelForCausalLM
2>>> model_name = "Sharathhebbar24/chat_gpt2"
3>>> model = AutoModelForCausalLM.from_pretrained(model_name)
4>>> tokenizer = AutoTokenizer.from_pretrained(model_name)
5>>> def generate_text(prompt):
6>>> inputs = tokenizer.encode(prompt, return_tensors='pt')
7>>> outputs = model.generate(inputs, max_length=64, pad_token_id=tokenizer.eos_token_id)
8>>> generated = tokenizer.decode(outputs[0], skip_special_tokens=True)
9>>> return generated[:generated.rfind(".")+1]
10>>> prompt = """
11>>> user: what are you?
12>>> assistant: I am a Chatbot intended to give a python program
13>>> user: hmm, can you write a python program to print Hii Heloo
14>>> assistant: Sure Here is a python code.\n print("Hii Heloo")
15>>> user: Can you write a Linear search program in python
16>>> """
17>>> res = generate_text(prompt)
18>>> res