File size: 698 Bytes
ceeeacc
7d37f96
ceeeacc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7d37f96
 
 
 
 
 
 
 
ca8d978
7d37f96
 
 
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
import torch
import gradio as gr
from transformers import AutoModelForCausalLM, AutoTokenizer

MODEL_NAME = 'meta-llama/Llama-2-7b-chat-hf'
ADAPTERS_NAME = 'pivovalera2012/Llama-2-7b-Dr-Hous-test'

model_trained = AutoModelForCausalLM.from_pretrained(
    MODEL_NAME,
    device_map=device_map,
    trust_remote_code=True,
    quantization_config=bnb_config,
)

model_trained = PeftModel.from_pretrained(model_trained, ADAPTERS_NAME)
model_trained = model_trained.merge_and_unload()
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)


def generate_text(prompt):
    return 'Привет'


demo = gr.Interface(
    generate_text,
    inputs=["textbox"],
    outputs=["textbox"]
)

demo.launch()