File size: 1,910 Bytes
009c471
 
 
22bcba4
009c471
 
 
 
 
 
 
013f264
 
 
 
 
 
 
 
 
 
 
 
 
 
009c471
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import streamlit as st
from transformers import AutoTokenizer
from auto_gptq import AutoGPTQForCausalLM
from huggingface_hub import snapshot_download

import os
import threading

cwd = os.getcwd()
cachedir = cwd+'/cache'

# Check if the directory exists before creating it
if not os.path.exists(cachedir):
    os.mkdir(cachedir)

os.environ['HF_HOME'] = cachedir

local_folder = cachedir + "/model"


quantized_model_dir = "FPHam/Jackson_The_Formalizer_V2_13b_GPTQ"

snapshot_download(repo_id=quantized_model_dir, local_dir=local_folder, local_dir_use_symlinks=True)

model_basename = cachedir + "/model/Jackson2-4bit-128g-GPTQ"

class QuantizedModel:
    def __init__(self, model_dir):
        self.tokenizer = AutoTokenizer.from_pretrained(model_dir, use_fast=False)
        self.model = AutoGPTQForCausalLM.from_quantized(
            model_dir,
            use_safetensors=True,
            strict=False,
            device="cuda:0",
            use_triton=False
        )

    def generate(self, prompt, max_new_tokens=512, temperature=0.1, top_p=0.95, repetition_penalty=1.15):
        inputs = self.tokenizer(prompt, return_tensors="pt")
        outputs = self.model.generate(
            input_ids=inputs['input_ids'].to("cuda:0"),
            attention_mask=inputs['attention_mask'].to("cuda:0"),
            max_length=max_new_tokens + inputs['input_ids'].size(-1),
            temperature=temperature,
            top_p=top_p,
            repetition_penalty=repetition_penalty
        )
        return self.tokenizer.decode(outputs[0], skip_special_tokens=True)

quantized_model = QuantizedModel(local_folder)

user_input = st.text_input("Input a phrase")

prompt_template = f'USER: {user_input}\nASSISTANT:'

# Generate output when the "Generate" button is pressed
if st.button("Generate the prompt"):
    output = quantized_model.generate(prompt_template)
    st.text_area("Prompt", value=output)