AhmedSSoliman/CodeSearchNet-Python
Viewer • Updated • 457k • 284
How to use AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA")
model = AutoModelForCausalLM.from_pretrained("AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA")How to use AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA
How to use AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA with Docker Model Runner:
docker model run hf.co/AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA
This model is LlaMa2-7b which is fine-tuned on the CodeSearchNet dataset by using the method QLoRA with PEFT library.
import torch
from peft import PeftModel, PeftConfig
from transformers import AutoModelForCausalLM, AutoTokenizer, GenerationConfig
peft_model_id = "AhmedSSoliman/Llama2-CodeGen-PEFT-QLoRA"
config = PeftConfig.from_pretrained(peft_model_id)
model = AutoModelForCausalLM.from_pretrained(config.base_model_name_or_path, trust_remote_code=True, return_dict=True, load_in_4bit=True, device_map='auto')
tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
# Load the Lora model
model = PeftModel.from_pretrained(model, peft_model_id)
def create_prompt(instruction):
system = "You are using the Llam2-CodeGen model, a coding assistant that will help the user to resolve the following instruction:\n"
instruction = "### Input: " + instruction
return system + "\n" + instruction + "\n\n" + "### Response:" + "\n"
def generate(
instruction,
max_new_tokens=128,
temperature=0.1,
top_p=0.75,
top_k=40,
num_beams=4,
**kwargs,
):
prompt = create_prompt(instruction)
print(prompt)
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
#input_ids = inputs["input_ids"].to("cuda")
#attention_mask = inputs["attention_mask"].to("cuda")
generation_config = GenerationConfig(
temperature=temperature,
top_p=top_p,
top_k=top_k,
num_beams=num_beams,
**kwargs,
)
with torch.no_grad():
generation_output = model.generate(
#input_ids=input_ids,
#attention_mask=attention_mask,
**inputs,
generation_config=generation_config,
return_dict_in_generate=True,
output_scores=True,
max_new_tokens=max_new_tokens,
early_stopping=True
)
generated_response = tokenizer.decode(outputs[0], skip_special_tokens=True)
stop_output = "### Input"
gen_response = (generated_response.split(stop_output))[0]
#s = generation_output.sequences[0]
#output = tokenizer.decode(s, skip_special_tokens=True)
#stop_output = "### Input"
#gen_response = (output.split(stop_output))[0]
#return output.split("### Response:")[1].lstrip("\n")
return gen_response
instruction = """
Write a python code for the name Ahmed to be in a reversed order
"""
print(generate(instruction))