import gradio as gr import time import json import torch import transformers from transformers import GenerationConfig from ..globals import Global from ..models import get_model, get_tokenizer, get_device from ..utils.data import ( get_available_template_names, get_available_lora_model_names, get_info_of_available_lora_model) from ..utils.prompter import Prompter from ..utils.callbacks import Iteratorize, Stream device = get_device() default_show_raw = True inference_output_lines = 12 def prepare_inference(lora_model_name, progress=gr.Progress(track_tqdm=True)): base_model_name = Global.default_base_model_name try: get_tokenizer(base_model_name) get_model(base_model_name, lora_model_name) return ("", "") except Exception as e: raise gr.Error(e) def do_inference( lora_model_name, prompt_template, variable_0, variable_1, variable_2, variable_3, variable_4, variable_5, variable_6, variable_7, temperature=0.1, top_p=0.75, top_k=40, num_beams=4, repetition_penalty=1.2, max_new_tokens=128, stream_output=False, show_raw=False, progress=gr.Progress(track_tqdm=True), ): base_model_name = Global.default_base_model_name try: if Global.generation_force_stopped_at is not None: required_elapsed_time_after_forced_stop = 1 current_unix_time = time.time() remaining_time = required_elapsed_time_after_forced_stop - \ (current_unix_time - Global.generation_force_stopped_at) if remaining_time > 0: time.sleep(remaining_time) Global.generation_force_stopped_at = None variables = [variable_0, variable_1, variable_2, variable_3, variable_4, variable_5, variable_6, variable_7] prompter = Prompter(prompt_template) prompt = prompter.generate_prompt(variables) if Global.ui_dev_mode: message = f"Hi, I’m currently in UI-development mode and do not have access to resources to process your request. However, this behavior is similar to what will actually happen, so you can try and see how it will work!\n\nBase model: {base_model_name}\nLoRA model: {lora_model_name}\n\nThe following is your prompt:\n\n{prompt}" print(message) if stream_output: def word_generator(sentence): lines = message.split('\n') out = "" for line in lines: words = line.split(' ') for i in range(len(words)): if out: out += ' ' out += words[i] yield out out += "\n" yield out for partial_sentence in word_generator(message): yield ( gr.Textbox.update( value=partial_sentence, lines=inference_output_lines), json.dumps( list(range(len(partial_sentence.split()))), indent=2) ) time.sleep(0.05) return time.sleep(1) yield ( gr.Textbox.update(value=message, lines=inference_output_lines), json.dumps(list(range(len(message.split()))), indent=2) ) return tokenizer = get_tokenizer(base_model_name) model = get_model(base_model_name, lora_model_name) inputs = tokenizer(prompt, return_tensors="pt") input_ids = inputs["input_ids"].to(device) generation_config = GenerationConfig( temperature=temperature, top_p=top_p, top_k=top_k, repetition_penalty=repetition_penalty, num_beams=num_beams, use_cache=False, ) generate_params = { "input_ids": input_ids, "generation_config": generation_config, "return_dict_in_generate": True, "output_scores": True, "max_new_tokens": max_new_tokens, } def ui_generation_stopping_criteria(input_ids, score, **kwargs): if Global.should_stop_generating: return True return False Global.should_stop_generating = False generate_params.setdefault( "stopping_criteria", transformers.StoppingCriteriaList() ) generate_params["stopping_criteria"].append( ui_generation_stopping_criteria ) if stream_output: # Stream the reply 1 token at a time. # This is based on the trick of using 'stopping_criteria' to create an iterator, # from https://github.com/oobabooga/text-generation-webui/blob/ad37f396fc8bcbab90e11ecf17c56c97bfbd4a9c/modules/text_generation.py#L216-L243. def generate_with_callback(callback=None, **kwargs): kwargs.setdefault( "stopping_criteria", transformers.StoppingCriteriaList() ) kwargs["stopping_criteria"].append( Stream(callback_func=callback) ) with torch.no_grad(): model.generate(**kwargs) def generate_with_streaming(**kwargs): return Iteratorize( generate_with_callback, kwargs, callback=None ) with generate_with_streaming(**generate_params) as generator: for output in generator: # new_tokens = len(output) - len(input_ids[0]) decoded_output = tokenizer.decode(output) if output[-1] in [tokenizer.eos_token_id]: break raw_output = None if show_raw: raw_output = str(output) response = prompter.get_response(decoded_output) if Global.should_stop_generating: return yield ( gr.Textbox.update( value=response, lines=inference_output_lines), raw_output) if Global.should_stop_generating: # If the user stops the generation, and then clicks the # generation button again, they may mysteriously landed # here, in the previous, should-be-stopped generation # function call, with the new generation function not be # called at all. To workaround this, we yield a message # and setting lines=1, and if the front-end JS detects # that lines has been set to 1 (rows="1" in HTML), # it will automatically click the generate button again # (gr.Textbox.update() does not support updating # elem_classes or elem_id). # [WORKAROUND-UI01] yield ( gr.Textbox.update( value="Please retry", lines=1), None) return # early return for stream_output # Without streaming with torch.no_grad(): generation_output = model.generate(**generate_params) s = generation_output.sequences[0] output = tokenizer.decode(s) raw_output = None if show_raw: raw_output = str(s) response = prompter.get_response(output) if Global.should_stop_generating: return yield ( gr.Textbox.update(value=response, lines=inference_output_lines), raw_output) except Exception as e: raise gr.Error(e) def handle_stop_generate(): Global.generation_force_stopped_at = time.time() Global.should_stop_generating = True def reload_selections(current_lora_model, current_prompt_template): available_template_names = get_available_template_names() available_template_names_with_none = available_template_names + ["None"] if current_prompt_template not in available_template_names_with_none: current_prompt_template = None current_prompt_template = current_prompt_template or next( iter(available_template_names_with_none), None) default_lora_models = ["winglian/llama-adapter-7b"] available_lora_models = default_lora_models + get_available_lora_model_names() available_lora_models = available_lora_models + ["None"] current_lora_model = current_lora_model or next( iter(available_lora_models), None) return (gr.Dropdown.update(choices=available_lora_models, value=current_lora_model), gr.Dropdown.update(choices=available_template_names_with_none, value=current_prompt_template)) def handle_prompt_template_change(prompt_template, lora_model): prompter = Prompter(prompt_template) var_names = prompter.get_variable_names() human_var_names = [' '.join(word.capitalize() for word in item.split('_')) for item in var_names] gr_updates = [gr.Textbox.update( label=name, visible=True) for name in human_var_names] while len(gr_updates) < 8: gr_updates.append(gr.Textbox.update( label="Not Used", visible=False)) model_prompt_template_message_update = gr.Markdown.update( "", visible=False) lora_mode_info = get_info_of_available_lora_model(lora_model) if lora_mode_info and isinstance(lora_mode_info, dict): model_prompt_template = lora_mode_info.get("prompt_template") if model_prompt_template and model_prompt_template != prompt_template: model_prompt_template_message_update = gr.Markdown.update( f"This model was trained with prompt template `{model_prompt_template}`.", visible=True) return [model_prompt_template_message_update] + gr_updates def handle_lora_model_change(lora_model, prompt_template): lora_mode_info = get_info_of_available_lora_model(lora_model) if not lora_mode_info: return gr.Markdown.update("", visible=False), prompt_template if not isinstance(lora_mode_info, dict): return gr.Markdown.update("", visible=False), prompt_template model_prompt_template = lora_mode_info.get("prompt_template") if not model_prompt_template: return gr.Markdown.update("", visible=False), prompt_template available_template_names = get_available_template_names() if model_prompt_template in available_template_names: return gr.Markdown.update("", visible=False), model_prompt_template return gr.Markdown.update(f"Trained with prompt template `{model_prompt_template}`", visible=True), prompt_template def update_prompt_preview(prompt_template, variable_0, variable_1, variable_2, variable_3, variable_4, variable_5, variable_6, variable_7): variables = [variable_0, variable_1, variable_2, variable_3, variable_4, variable_5, variable_6, variable_7] prompter = Prompter(prompt_template) prompt = prompter.generate_prompt(variables) return gr.Textbox.update(value=prompt) def inference_ui(): things_that_might_timeout = [] with gr.Blocks() as inference_ui_blocks: with gr.Row(): with gr.Column(elem_id="inference_lora_model_group"): model_prompt_template_message = gr.Markdown( "", visible=False, elem_id="inference_lora_model_prompt_template_message") lora_model = gr.Dropdown( label="LoRA Model", elem_id="inference_lora_model", value="winglian/llama-adapter-7b", allow_custom_value=True, ) prompt_template = gr.Dropdown( label="Prompt Template", elem_id="inference_prompt_template", ) reload_selections_button = gr.Button( "↻", elem_id="inference_reload_selections_button" ) reload_selections_button.style( full_width=False, size="sm") with gr.Row(): with gr.Column(): with gr.Column(elem_id="inference_prompt_box"): variable_0 = gr.Textbox( lines=2, label="Prompt", placeholder="Tell me about alpecas and llamas.", elem_id="inference_variable_0" ) variable_1 = gr.Textbox( lines=2, label="", visible=False, elem_id="inference_variable_1") variable_2 = gr.Textbox( lines=2, label="", visible=False, elem_id="inference_variable_2") variable_3 = gr.Textbox( lines=2, label="", visible=False, elem_id="inference_variable_3") variable_4 = gr.Textbox( lines=2, label="", visible=False, elem_id="inference_variable_4") variable_5 = gr.Textbox( lines=2, label="", visible=False, elem_id="inference_variable_5") variable_6 = gr.Textbox( lines=2, label="", visible=False, elem_id="inference_variable_6") variable_7 = gr.Textbox( lines=2, label="", visible=False, elem_id="inference_variable_7") with gr.Accordion("Preview", open=False, elem_id="inference_preview_prompt_container"): preview_prompt = gr.Textbox( show_label=False, interactive=False, elem_id="inference_preview_prompt") update_prompt_preview_btn = gr.Button( "↻", elem_id="inference_update_prompt_preview_btn") update_prompt_preview_btn.style(size="sm") # with gr.Column(): # with gr.Row(): # generate_btn = gr.Button( # "Generate", variant="primary", label="Generate", elem_id="inference_generate_btn", # ) # stop_btn = gr.Button( # "Stop", variant="stop", label="Stop Iterating", elem_id="inference_stop_btn") # with gr.Column(): with gr.Accordion("Options", open=True, elem_id="inference_options_accordion"): temperature = gr.Slider( minimum=0, maximum=1, value=0.1, step=0.01, label="Temperature", elem_id="inference_temperature" ) with gr.Row(elem_classes="inference_options_group"): top_p = gr.Slider( minimum=0, maximum=1, value=0.75, step=0.01, label="Top P", elem_id="inference_top_p" ) top_k = gr.Slider( minimum=0, maximum=100, value=40, step=1, label="Top K", elem_id="inference_top_k" ) num_beams = gr.Slider( minimum=1, maximum=5, value=2, step=1, label="Beams", elem_id="inference_beams" ) repetition_penalty = gr.Slider( minimum=0, maximum=2.5, value=1.2, step=0.01, label="Repetition Penalty", elem_id="inference_repetition_penalty" ) max_new_tokens = gr.Slider( minimum=0, maximum=4096, value=128, step=1, label="Max New Tokens", elem_id="inference_max_new_tokens" ) with gr.Row(elem_id="inference_options_bottom_group"): stream_output = gr.Checkbox( label="Stream Output", elem_id="inference_stream_output", value=True ) show_raw = gr.Checkbox( label="Show Raw", elem_id="inference_show_raw", value=default_show_raw ) with gr.Column(): with gr.Row(): generate_btn = gr.Button( "Generate", variant="primary", label="Generate", elem_id="inference_generate_btn", ) stop_btn = gr.Button( "Stop", variant="stop", label="Stop Iterating", elem_id="inference_stop_btn") with gr.Column(elem_id="inference_output_group_container"): with gr.Column(elem_id="inference_output_group"): inference_output = gr.Textbox( lines=inference_output_lines, label="Output", elem_id="inference_output") inference_output.style(show_copy_button=True) with gr.Accordion( "Raw Output", open=not default_show_raw, visible=default_show_raw, elem_id="inference_inference_raw_output_accordion" ) as raw_output_group: inference_raw_output = gr.Code( label="Raw Output", show_label=False, language="json", interactive=False, elem_id="inference_raw_output") show_raw_change_event = show_raw.change( fn=lambda show_raw: gr.Accordion.update(visible=show_raw), inputs=[show_raw], outputs=[raw_output_group]) things_that_might_timeout.append(show_raw_change_event) reload_selections_event = reload_selections_button.click( reload_selections, inputs=[lora_model, prompt_template], outputs=[lora_model, prompt_template], ) things_that_might_timeout.append(reload_selections_event) prompt_template_change_event = prompt_template.change( fn=handle_prompt_template_change, inputs=[prompt_template, lora_model], outputs=[ model_prompt_template_message, variable_0, variable_1, variable_2, variable_3, variable_4, variable_5, variable_6, variable_7]) things_that_might_timeout.append(prompt_template_change_event) lora_model_change_event = lora_model.change( fn=handle_lora_model_change, inputs=[lora_model, prompt_template], outputs=[model_prompt_template_message, prompt_template]) things_that_might_timeout.append(lora_model_change_event) generate_event = generate_btn.click( fn=prepare_inference, inputs=[lora_model], outputs=[inference_output, inference_raw_output], ).then( fn=do_inference, inputs=[ lora_model, prompt_template, variable_0, variable_1, variable_2, variable_3, variable_4, variable_5, variable_6, variable_7, temperature, top_p, top_k, num_beams, repetition_penalty, max_new_tokens, stream_output, show_raw, ], outputs=[inference_output, inference_raw_output], api_name="inference" ) stop_btn.click( fn=handle_stop_generate, inputs=None, outputs=None, cancels=[generate_event] ) update_prompt_preview_event = update_prompt_preview_btn.click(fn=update_prompt_preview, inputs=[prompt_template, variable_0, variable_1, variable_2, variable_3, variable_4, variable_5, variable_6, variable_7,], outputs=preview_prompt) things_that_might_timeout.append(update_prompt_preview_event) stop_timeoutable_btn = gr.Button( "stop not-responding elements", elem_id="inference_stop_timeoutable_btn", elem_classes="foot_stop_timeoutable_btn") stop_timeoutable_btn.click( fn=None, inputs=None, outputs=None, cancels=things_that_might_timeout) inference_ui_blocks.load(_js=""" function inference_ui_blocks_js() { // Auto load options setTimeout(function () { document.getElementById('inference_reload_selections_button').click(); // Workaround default value not shown. document.querySelector('#inference_lora_model input').value = 'winglian/llama-adapter-7b'; }, 100); // Add tooltips setTimeout(function () { tippy('#inference_lora_model', { placement: 'bottom-start', delay: [500, 0], animation: 'scale-subtle', content: 'Select a LoRA model form your data directory, or type in a model name on HF (e.g.: tloen/alpaca-lora-7b).', allowHTML: true, }); tippy('#inference_prompt_template', { placement: 'bottom-start', delay: [500, 0], animation: 'scale-subtle', content: 'Templates are loaded from the "templates" folder of your data directory. Be sure to select the template that matches your selected LoRA model to get the best results.', }); tippy('#inference_reload_selections_button', { placement: 'bottom-end', delay: [500, 0], animation: 'scale-subtle', content: 'Press to reload LoRA Model and Prompt Template selections.', }); document .querySelector('#inference_preview_prompt_container .label-wrap') .addEventListener('click', function () { tippy('#inference_preview_prompt', { placement: 'right', delay: [500, 0], animation: 'scale-subtle', content: 'This is the prompt that will be sent to the language model.', }); const update_btn = document.getElementById( 'inference_update_prompt_preview_btn' ); if (update_btn) update_btn.click(); }); function setTooltipForOptions() { tippy('#inference_temperature', { placement: 'right', delay: [500, 0], animation: 'scale-subtle', content: 'Controls randomness: Lowering results in less random completions. Higher values (e.g., 1.0) make the model generate more diverse and random outputs. As the temperature approaches zero, the model will become deterministic and repetitive.', }); tippy('#inference_top_p', { placement: 'right', delay: [500, 0], animation: 'scale-subtle', content: 'Controls diversity via nucleus sampling: only the tokens whose cumulative probability exceeds "top_p" are considered. 0.5 means half of all likelihood-weighted options are considered.', }); tippy('#inference_top_k', { placement: 'right', delay: [500, 0], animation: 'scale-subtle', content: 'Controls diversity of the generated text by only considering the "top_k" tokens with the highest probabilities. This method can lead to more focused and coherent outputs by reducing the impact of low probability tokens.', }); tippy('#inference_beams', { placement: 'right', delay: [500, 0], animation: 'scale-subtle', content: 'Number of candidate sequences explored in parallel during text generation using beam search. A higher value increases the chances of finding high-quality, coherent output, but may slow down the generation process.', }); tippy('#inference_repetition_penalty', { placement: 'right', delay: [500, 0], animation: 'scale-subtle', content: 'Applies a penalty to the probability of tokens that have already been generated, discouraging the model from repeating the same words or phrases. The penalty is applied by dividing the token probability by a factor based on the number of times the token has appeared in the generated text.', }); tippy('#inference_max_new_tokens', { placement: 'right', delay: [500, 0], animation: 'scale-subtle', content: 'Limits the maximum number of tokens generated in a single iteration.', }); tippy('#inference_stream_output', { placement: 'right', delay: [500, 0], animation: 'scale-subtle', content: 'When enabled, generated text will be displayed in real-time as it is being produced by the model, allowing you to observe the text generation process as it unfolds.', }); } setTooltipForOptions(); const inference_options_accordion_toggle = document.querySelector( '#inference_options_accordion .label-wrap' ); if (inference_options_accordion_toggle) { inference_options_accordion_toggle.addEventListener('click', function () { setTooltipForOptions(); }); } }, 100); // Show/hide generate and stop button base on the state. setTimeout(function () { // Make the '#inference_output > .wrap' element appear document.getElementById('inference_stop_btn').click(); setTimeout(function () { const output_wrap_element = document.querySelector( '#inference_output > .wrap' ); function handle_output_wrap_element_class_change() { if (Array.from(output_wrap_element.classList).includes('hide')) { document.getElementById('inference_generate_btn').style.display = 'block'; document.getElementById('inference_stop_btn').style.display = 'none'; } else { document.getElementById('inference_generate_btn').style.display = 'none'; document.getElementById('inference_stop_btn').style.display = 'block'; } } new MutationObserver(function (mutationsList, observer) { handle_output_wrap_element_class_change(); }).observe(output_wrap_element, { attributes: true, attributeFilter: ['class'], }); handle_output_wrap_element_class_change(); }, 500); }, 0); // Debounced updating the prompt preview. setTimeout(function () { function debounce(func, wait) { let timeout; return function (...args) { const context = this; clearTimeout(timeout); const fn = () => { if (document.querySelector('#inference_preview_prompt > .wrap:not(.hide)')) { // Preview request is still loading, wait for 10ms and try again. timeout = setTimeout(fn, 10); return; } func.apply(context, args); }; timeout = setTimeout(fn, wait); }; } function update_preview() { const update_btn = document.getElementById( 'inference_update_prompt_preview_btn' ); if (!update_btn) return; update_btn.click(); } for (let i = 0; i < 8; i++) { const e = document.querySelector(`#inference_variable_${i} textarea`); if (!e) return; e.addEventListener('input', debounce(update_preview, 500)); } const prompt_template_selector = document.querySelector( '#inference_prompt_template .wrap-inner' ); if (prompt_template_selector) { new MutationObserver( debounce(function () { if (prompt_template_selector.classList.contains('showOptions')) return; update_preview(); }, 500) ).observe(prompt_template_selector, { attributes: true, attributeFilter: ['class'], }); } }, 100); // [WORKAROUND-UI01] setTimeout(function () { const inference_output_textarea = document.querySelector( '#inference_output textarea' ); if (!inference_output_textarea) return; const observer = new MutationObserver(function () { if (inference_output_textarea.getAttribute('rows') === '1') { setTimeout(function () { const inference_generate_btn = document.getElementById( 'inference_generate_btn' ); if (inference_generate_btn) inference_generate_btn.click(); }, 10); } }); observer.observe(inference_output_textarea, { attributes: true, attributeFilter: ['rows'], }); }, 100); } """)