Spaces:
Running
on
Zero
Running
on
Zero
File size: 9,991 Bytes
f0e4d3b 9aef39d f0e4d3b 6a8cbaa 5c5f097 f0e4d3b 5c5f097 f0e4d3b 3184961 f0e4d3b 7497a42 f0e4d3b 9aef39d f0e4d3b 6a8cbaa f0e4d3b 7497a42 d4d7f6e 5c5f097 f0e4d3b 5c5f097 f0e4d3b 5c5f097 f0e4d3b 5c5f097 f0e4d3b 5c5f097 f0e4d3b 5c5f097 f0e4d3b 3184961 7497a42 5c5f097 f0e4d3b 5c5f097 6a8cbaa 5c5f097 d4d7f6e b4e3e44 5c5f097 6a8cbaa 5c5f097 f0e4d3b 9aef39d f0e4d3b d4d7f6e 9aef39d d4d7f6e f0e4d3b 5c5f097 f0e4d3b 9aef39d f0e4d3b 9aef39d 5c5f097 3184961 5c5f097 f0e4d3b 60e697c f0e4d3b |
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
import hashlib
import os
import random
import re
from collections.abc import Iterator
from threading import Thread
import gradio as gr
import spaces
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer, TextIteratorStreamer
from indiebot_arena.config import MODEL_SELECTION_MODE, MAX_INPUT_TOKEN_LENGTH, MAX_NEW_TOKENS, LOCAL_TESTING
from indiebot_arena.service.arena_service import ArenaService
from indiebot_arena.util.cache_manager import get_free_space_gb, clear_hf_cache
DESCRIPTION = "### 💬 チャットバトル"
base_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))
docs_path = os.path.join(base_dir, "docs", "battle_header.md")
def remove_chat_tokens(text: str) -> str:
pattern = re.compile(r'</?(?:start_of_turn|end_of_turn)>')
return pattern.sub('', text).strip()
@spaces.GPU(duration=30)
def generate(chat_history: list,
model_id: str,
max_new_tokens: int = MAX_NEW_TOKENS,
temperature: float = 0.6,
top_p: float = 0.9,
top_k: int = 50,
repetition_penalty: float = 1.2) -> Iterator[str]:
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
device_map="auto",
torch_dtype=torch.bfloat16,
use_safetensors=True
)
model.eval()
input_ids = tokenizer.apply_chat_template(chat_history, add_generation_prompt=True, return_tensors="pt")
if input_ids.shape[1] > MAX_INPUT_TOKEN_LENGTH:
input_ids = input_ids[:, -MAX_INPUT_TOKEN_LENGTH:]
gr.Warning(f"Trimmed input from conversation as it was longer than {MAX_INPUT_TOKEN_LENGTH} tokens.")
input_ids = input_ids.to(model.device)
streamer = TextIteratorStreamer(tokenizer, timeout=20.0, skip_prompt=True, skip_special_tokens=True)
generate_kwargs = dict(
{"input_ids": input_ids},
streamer=streamer,
max_new_tokens=max_new_tokens,
do_sample=True,
top_p=top_p,
top_k=top_k,
temperature=temperature,
num_beams=1,
repetition_penalty=repetition_penalty,
)
t = Thread(target=model.generate, kwargs=generate_kwargs)
t.start()
outputs = []
for text in streamer:
outputs.append(text)
yield "".join(outputs)
def update_user_message(user_message, history_a, history_b):
if not LOCAL_TESTING:
total, _, free = get_free_space_gb("/data")
print(f"空きディスク容量: {free:.2f} GB / {total:.2f} GB")
if free < (total * 0.2):
clear_hf_cache()
new_history_a = history_a + [{"role": "user", "content": user_message}]
new_history_b = history_b + [{"role": "user", "content": user_message}]
return "", new_history_a, new_history_b, gr.update(interactive=False)
def bot1_response(history, model_id):
history = history.copy()
history.append({"role": "assistant", "content": ""})
conv_history = history[:-1]
for text in generate(conv_history, model_id):
cleaned_text = remove_chat_tokens(text)
history[-1]["content"] = cleaned_text
yield history, gr.update(interactive=True), gr.update(interactive=True)
def bot2_response(history, model_id):
history = history.copy()
history.append({"role": "assistant", "content": ""})
conv_history = history[:-1]
for text in generate(conv_history, model_id):
cleaned_text = remove_chat_tokens(text)
history[-1]["content"] = cleaned_text
yield history, gr.update(interactive=True), gr.update(interactive=True)
def get_random_values(model_labels):
if MODEL_SELECTION_MODE=="random":
return random.sample(model_labels, 2)
if MODEL_SELECTION_MODE=="manual":
return model_labels[0], model_labels[0]
def battle_content(dao, language):
arena_service = ArenaService(dao)
default_weight = "U-5GB"
initial_models = arena_service.get_model_dropdown_list(language, default_weight)
initial_choices = [m["label"] for m in initial_models]
initial_value_a, initial_value_b = get_random_values(initial_choices)
dropdown_visible = False if MODEL_SELECTION_MODE=="random" else True
def fetch_model_dropdown(weight_class):
models = arena_service.get_model_dropdown_list(language, weight_class)
model_labels = [m["label"] for m in models]
value_a, value_b = get_random_values(model_labels)
update_obj_a = gr.update(choices=model_labels, value=value_a)
update_obj_b = gr.update(choices=model_labels, value=value_b)
return update_obj_a, update_obj_b, model_labels
def submit_vote(vote_choice, weight_class, model_a_name, model_b_name, request: gr.Request):
user_id = generate_anonymous_user_id(request)
model_a = arena_service.get_one_model(language, weight_class, model_a_name)
model_b = arena_service.get_one_model(language, weight_class, model_b_name)
winner = model_a if vote_choice=="Chatbot A" else model_b
try:
arena_service.record_battle(language, weight_class, model_a._id, model_b._id, winner._id, user_id)
arena_service.update_leaderboard(language, weight_class)
return "投票が完了しました"
except Exception as e:
return f"エラー: {e}"
def handle_vote(vote_choice, weight_class, model_a_name, model_b_name, request: gr.Request):
msg = submit_vote(vote_choice, weight_class, model_a_name, model_b_name, request)
return (
gr.update(value=msg, visible=True),
gr.update(interactive=False, value=model_a_name),
gr.update(interactive=False, value=model_b_name),
gr.update(visible=False),
gr.update(visible=True, interactive=True)
)
def generate_anonymous_user_id(request: gr.Request):
user_ip = request.headers.get('x-forwarded-for')
if user_ip:
user_id = "indiebot:" + user_ip
hashed_user_id = hashlib.sha256(user_id.encode("utf-8")).hexdigest()[:16]
return hashed_user_id
else:
return "anonymous"
def on_vote_a_click(weight, a, b, request: gr.Request):
return handle_vote("Chatbot A", weight, a, b, request)
def on_vote_b_click(weight, a, b, request: gr.Request):
return handle_vote("Chatbot B", weight, a, b, request)
def reset_battle(dropdown_options):
value_a, value_b = get_random_values(dropdown_options)
return (
[], # chatbot_aのリセット
[], # chatbot_bのリセット
gr.update(value="", visible=True), # user_inputのクリア&表示
gr.update(interactive=False, value="A is better"), # vote_a_btnのリセット
gr.update(interactive=False, value="B is better"), # vote_b_btnのリセット
gr.update(visible=False), # vote_messageの非表示
gr.update(visible=False, interactive=False), # next_battle_btnの非表示
gr.update(choices=dropdown_options, value=value_a), # model_dropdown_a更新
gr.update(choices=dropdown_options, value=value_b), # model_dropdown_b更新
gr.update(interactive=True) # weight_class_radio を有効化
)
with gr.Blocks(css="style.css") as battle_ui:
gr.Markdown(DESCRIPTION)
with open(docs_path, "r", encoding="utf-8") as f:
markdown_content = f.read()
gr.HTML(markdown_content)
weight_class_radio = gr.Radio(
choices=["U-5GB", "U-10GB"],
label="階級",
value=default_weight
)
dropdown_options_state = gr.State(initial_choices)
with gr.Row():
model_dropdown_a = gr.Dropdown(
choices=initial_choices,
label="モデルAを選択",
value=initial_value_a,
visible=dropdown_visible
)
model_dropdown_b = gr.Dropdown(
choices=initial_choices,
label="モデルBを選択",
value=initial_value_b,
visible=dropdown_visible
)
weight_class_radio.change(
fn=fetch_model_dropdown,
inputs=weight_class_radio,
outputs=[model_dropdown_a, model_dropdown_b, dropdown_options_state]
)
with gr.Row():
chatbot_a = gr.Chatbot(label="Chatbot A", type="messages")
chatbot_b = gr.Chatbot(label="Chatbot B", type="messages")
with gr.Row():
vote_a_btn = gr.Button("A is better", variant="primary", interactive=False)
vote_b_btn = gr.Button("B is better", variant="primary", interactive=False)
user_input = gr.Textbox(
placeholder="日本語でメッセージを入力...",
submit_btn=True,
show_label=False
)
with gr.Row():
with gr.Column(scale=3):
vote_message = gr.Textbox(show_label=False, interactive=False, visible=False)
with gr.Column(scale=1):
next_battle_btn = gr.Button("次のバトルへ", variant="primary", interactive=False, visible=False, elem_id="next_battle_btn")
user_event = user_input.submit(
update_user_message,
inputs=[user_input, chatbot_a, chatbot_b],
outputs=[user_input, chatbot_a, chatbot_b, weight_class_radio],
queue=False
)
user_event.then(
bot1_response,
inputs=[chatbot_a, model_dropdown_a],
outputs=[chatbot_a, vote_a_btn, vote_b_btn],
queue=True
)
user_event.then(
bot2_response,
inputs=[chatbot_b, model_dropdown_b],
outputs=[chatbot_b, vote_a_btn, vote_b_btn],
queue=True
)
vote_a_btn.click(
fn=on_vote_a_click,
inputs=[weight_class_radio, model_dropdown_a, model_dropdown_b],
outputs=[vote_message, vote_a_btn, vote_b_btn, user_input, next_battle_btn]
)
vote_b_btn.click(
fn=on_vote_b_click,
inputs=[weight_class_radio, model_dropdown_a, model_dropdown_b],
outputs=[vote_message, vote_a_btn, vote_b_btn, user_input, next_battle_btn]
)
next_battle_btn.click(
fn=reset_battle,
inputs=[dropdown_options_state],
outputs=[
chatbot_a, chatbot_b, user_input, vote_a_btn,
vote_b_btn, vote_message, next_battle_btn,
model_dropdown_a, model_dropdown_b, weight_class_radio
]
)
battle_ui.load(
fn=fetch_model_dropdown,
inputs=[weight_class_radio],
outputs=[model_dropdown_a, model_dropdown_b, dropdown_options_state]
)
return battle_ui
|