Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,87 +1,53 @@
|
|
| 1 |
-
# app.py -
|
| 2 |
|
| 3 |
-
import torch
|
| 4 |
import gradio as gr
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
-
#
|
| 8 |
BASE_MODEL = "unsloth/Phi-3-mini-4k-instruct-bnb-4bit"
|
| 9 |
-
LORA_PATH
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
max_seq_length = 2048,
|
| 19 |
-
dtype = None, # Auto: bfloat16 on GPU
|
| 20 |
-
load_in_4bit = True, # Already quantized base
|
| 21 |
)
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
-
|
| 24 |
-
model = FastLanguageModel.get_peft_model(
|
| 25 |
-
model,
|
| 26 |
-
r = 64, # Match your original rank
|
| 27 |
-
target_modules = ["q_proj", "k_proj", "v_proj", "o_proj",
|
| 28 |
-
"gate_proj", "up_proj", "down_proj"],
|
| 29 |
-
lora_alpha = 128,
|
| 30 |
-
lora_dropout = 0,
|
| 31 |
-
bias = "none",
|
| 32 |
-
use_gradient_checkpointing = "unsloth",
|
| 33 |
-
)
|
| 34 |
-
|
| 35 |
-
# Enable 2x faster inference kernels
|
| 36 |
-
FastLanguageModel.for_inference(model)
|
| 37 |
-
|
| 38 |
-
print("Model ready! (very fast now)")
|
| 39 |
-
|
| 40 |
-
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 41 |
def generate_sql(prompt: str):
|
| 42 |
messages = [{"role": "user", "content": prompt}]
|
|
|
|
| 43 |
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
max_new_tokens = MAX_NEW_TOKENS,
|
| 54 |
-
temperature = TEMPERATURE,
|
| 55 |
-
do_sample = (TEMPERATURE > 0.01),
|
| 56 |
-
use_cache = True,
|
| 57 |
-
pad_token_id = tokenizer.eos_token_id,
|
| 58 |
-
)
|
| 59 |
-
|
| 60 |
-
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 61 |
|
| 62 |
-
|
| 63 |
if "<|assistant|>" in response:
|
| 64 |
response = response.split("<|assistant|>", 1)[-1].strip()
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
return response
|
| 68 |
|
| 69 |
-
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 70 |
demo = gr.Interface(
|
| 71 |
-
fn
|
| 72 |
-
inputs
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
),
|
| 77 |
-
outputs = gr.Textbox(label="Generated SQL"),
|
| 78 |
-
title = "SQL Chatbot - Ultra Fast (Unsloth)",
|
| 79 |
-
description = "Phi-3-mini 4-bit + your LoRA",
|
| 80 |
-
examples = [
|
| 81 |
-
["Find duplicate emails in users table"],
|
| 82 |
-
["Top 5 highest paid employees"],
|
| 83 |
-
["Count orders per customer last month"]
|
| 84 |
-
]
|
| 85 |
)
|
| 86 |
|
| 87 |
if __name__ == "__main__":
|
|
|
|
| 1 |
+
# app.py - ZeroGPU compatible version (NO Unsloth)
|
| 2 |
|
|
|
|
| 3 |
import gradio as gr
|
| 4 |
+
import torch
|
| 5 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM, BitsAndBytesConfig
|
| 6 |
+
from peft import PeftModel
|
| 7 |
+
from huggingface_hub import spaces # β important!
|
| 8 |
|
| 9 |
+
# Your model paths
|
| 10 |
BASE_MODEL = "unsloth/Phi-3-mini-4k-instruct-bnb-4bit"
|
| 11 |
+
LORA_PATH = "saadkhi/SQL_Chat_finetuned_model"
|
| 12 |
+
|
| 13 |
+
print("Loading model on CPU first... (will use GPU only during @spaces.GPU)")
|
| 14 |
+
bnb_config = BitsAndBytesConfig(load_in_4bit=True)
|
| 15 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 16 |
+
BASE_MODEL,
|
| 17 |
+
quantization_config=bnb_config,
|
| 18 |
+
device_map="auto",
|
| 19 |
+
trust_remote_code=True
|
|
|
|
|
|
|
|
|
|
| 20 |
)
|
| 21 |
+
model = PeftModel.from_pretrained(model, LORA_PATH)
|
| 22 |
+
tokenizer = AutoTokenizer.from_pretrained(BASE_MODEL)
|
| 23 |
+
model.eval()
|
| 24 |
|
| 25 |
+
@spaces.GPU # β this requests GPU slice only during this function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
def generate_sql(prompt: str):
|
| 27 |
messages = [{"role": "user", "content": prompt}]
|
| 28 |
+
inputs = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt").to("cuda")
|
| 29 |
|
| 30 |
+
with torch.inference_mode():
|
| 31 |
+
outputs = model.generate(
|
| 32 |
+
inputs,
|
| 33 |
+
max_new_tokens=180,
|
| 34 |
+
temperature=0.0,
|
| 35 |
+
do_sample=False,
|
| 36 |
+
use_cache=True,
|
| 37 |
+
pad_token_id=tokenizer.eos_token_id,
|
| 38 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
|
| 40 |
+
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 41 |
if "<|assistant|>" in response:
|
| 42 |
response = response.split("<|assistant|>", 1)[-1].strip()
|
| 43 |
+
return response.split("<|end|>")[0].strip()
|
|
|
|
|
|
|
| 44 |
|
|
|
|
| 45 |
demo = gr.Interface(
|
| 46 |
+
fn=generate_sql,
|
| 47 |
+
inputs=gr.Textbox(label="Your SQL question"),
|
| 48 |
+
outputs="text",
|
| 49 |
+
title="SQL Chatbot (ZeroGPU)",
|
| 50 |
+
description="Free but limited daily GPU time"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
)
|
| 52 |
|
| 53 |
if __name__ == "__main__":
|