Spaces:
Running
on
Zero
Running
on
Zero
File size: 10,848 Bytes
2445678 760e16a 2445678 125a238 2445678 125a238 2445678 125a238 760e16a 6246717 760e16a 2445678 760e16a 2445678 760e16a 125a238 760e16a 6246717 760e16a 6246717 760e16a 2445678 760e16a 6246717 2445678 6246717 760e16a 125a238 2445678 125a238 760e16a 2445678 760e16a 125a238 2445678 125a238 760e16a 2445678 760e16a 2445678 760e16a 2445678 5001ea7 760e16a 2445678 760e16a 2445678 760e16a 6246717 2445678 760e16a 2445678 125a238 2445678 125a238 |
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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
"""
ChatGPT Clone - 日本語対応チャットボット
Hugging Face Spaces (ZeroGPU) 対応版
使用モデル:
- elyza/Llama-3-ELYZA-JP-8B
- Fugaku-LLM/Fugaku-LLM-13B
"""
import gradio as gr
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
import os
from typing import List, Tuple
# Hugging Face token from environment variable
HF_TOKEN = os.getenv("HF_TOKEN")
# トークンのチェック
if not HF_TOKEN:
print("警告: HF_TOKENが設定されていません。プライベートモデルへのアクセスが制限される場合があります。")
# Check if running on ZeroGPU
try:
import spaces
IS_ZEROGPU = True
print("ZeroGPU環境を検出しました。")
except ImportError:
IS_ZEROGPU = False
print("通常のGPU/CPU環境で実行しています。")
class ChatBot:
def __init__(self):
self.model = None
self.tokenizer = None
self.current_model = None
def load_model(self, model_name: str):
"""モデルとトークナイザーをロード"""
if self.current_model == model_name and self.model is not None:
return
try:
# メモリクリア
if self.model is not None:
del self.model
del self.tokenizer
if torch.cuda.is_available():
torch.cuda.empty_cache()
torch.cuda.synchronize()
# トークナイザーロード
self.tokenizer = AutoTokenizer.from_pretrained(
model_name,
token=HF_TOKEN,
trust_remote_code=True,
padding_side="left"
)
# パッドトークンの設定
if self.tokenizer.pad_token is None:
self.tokenizer.pad_token = self.tokenizer.eos_token
self.tokenizer.pad_token_id = self.tokenizer.eos_token_id
# モデルロード(ZeroGPU対応)
self.model = AutoModelForCausalLM.from_pretrained(
model_name,
token=HF_TOKEN,
torch_dtype=torch.float16,
low_cpu_mem_usage=True,
trust_remote_code=True,
load_in_8bit=False, # ZeroGPU環境では8bit量子化は使わない
device_map=None # ZeroGPU環境では自動マッピングしない
)
self.current_model = model_name
print(f"モデル {model_name} のロードが完了しました。")
except Exception as e:
print(f"モデルのロード中にエラーが発生しました: {str(e)}")
raise
def _generate_response_gpu(self, message: str, history: List[Tuple[str, str]], model_name: str,
temperature: float = 0.7, max_tokens: int = 512) -> str:
"""GPU上で応答を生成する実際の処理"""
# モデルロード
self.load_model(model_name)
# GPUに移動
self.model.to('cuda')
# プロンプト構築
prompt = self._build_prompt(message, history)
# トークナイズ
inputs = self.tokenizer.encode(prompt, return_tensors="pt").to('cuda')
# 生成
with torch.no_grad():
outputs = self.model.generate(
inputs,
max_new_tokens=max_tokens,
temperature=temperature,
do_sample=True,
top_p=0.95,
top_k=50,
repetition_penalty=1.1,
pad_token_id=self.tokenizer.pad_token_id,
eos_token_id=self.tokenizer.eos_token_id
)
# デコード
response = self.tokenizer.decode(outputs[0][inputs.shape[1]:], skip_special_tokens=True)
# CPUに戻す(メモリ節約)
self.model.to('cpu')
torch.cuda.empty_cache()
torch.cuda.synchronize()
return response.strip()
def generate_response(self, message: str, history: List[Tuple[str, str]], model_name: str,
temperature: float = 0.7, max_tokens: int = 512) -> str:
"""メッセージに対する応答を生成"""
if IS_ZEROGPU:
# ZeroGPU環境の場合
return self._generate_response_gpu(message, history, model_name, temperature, max_tokens)
else:
# 通常環境の場合
self.load_model(model_name)
device = 'cuda' if torch.cuda.is_available() else 'cpu'
if device == 'cuda':
self.model.to(device)
prompt = self._build_prompt(message, history)
inputs = self.tokenizer.encode(prompt, return_tensors="pt").to(device)
with torch.no_grad():
outputs = self.model.generate(
inputs,
max_new_tokens=max_tokens,
temperature=temperature,
do_sample=True,
top_p=0.95,
top_k=50,
repetition_penalty=1.1,
pad_token_id=self.tokenizer.pad_token_id,
eos_token_id=self.tokenizer.eos_token_id
)
response = self.tokenizer.decode(outputs[0][inputs.shape[1]:], skip_special_tokens=True)
return response.strip()
def _build_prompt(self, message: str, history: List[Tuple[str, str]]) -> str:
"""会話履歴からプロンプトを構築"""
prompt = ""
# 履歴を追加(最新3件のみ使用 - メモリ効率のため)
for user_msg, assistant_msg in history[-3:]:
prompt += f"User: {user_msg}\nAssistant: {assistant_msg}\n\n"
# 現在のメッセージを追加
prompt += f"User: {message}\nAssistant: "
return prompt
# ChatBotインスタンス
chatbot = ChatBot()
# ZeroGPU環境の場合、GPUデコレータを適用
if IS_ZEROGPU:
chatbot._generate_response_gpu = spaces.GPU(duration=120)(chatbot._generate_response_gpu)
def respond(message: str, history: List[Tuple[str, str]], model_name: str,
temperature: float, max_tokens: int) -> Tuple[List[Tuple[str, str]], str]:
"""Gradioのコールバック関数"""
if not message:
return history, ""
try:
# 応答生成
response = chatbot.generate_response(message, history, model_name, temperature, max_tokens)
# 履歴に追加
history.append((message, response))
return history, ""
except RuntimeError as e:
if "out of memory" in str(e).lower():
error_msg = "メモリ不足エラー: より小さいモデルを使用するか、最大トークン数を減らしてください。"
else:
error_msg = f"実行時エラー: {str(e)}"
history.append((message, error_msg))
return history, ""
except Exception as e:
error_msg = f"エラーが発生しました: {str(e)}"
history.append((message, error_msg))
return history, ""
def clear_chat() -> Tuple[List, str]:
"""チャット履歴をクリア"""
return [], ""
# Gradio UI
with gr.Blocks(title="ChatGPT Clone", theme=gr.themes.Soft()) as app:
gr.Markdown("# 🤖 ChatGPT Clone")
gr.Markdown("""
日本語対応のLLMを使用したチャットボットです。
**使用可能モデル:**
- [elyza/Llama-3-ELYZA-JP-8B](https://huggingface.co/elyza/Llama-3-ELYZA-JP-8B)
- [Fugaku-LLM/Fugaku-LLM-13B](https://huggingface.co/Fugaku-LLM/Fugaku-LLM-13B)
""")
with gr.Row():
with gr.Column(scale=3):
chatbot_ui = gr.Chatbot(
label="Chat",
height=500,
show_label=False,
container=True
)
with gr.Row():
msg_input = gr.Textbox(
label="メッセージを入力",
placeholder="ここにメッセージを入力してください...",
lines=2,
scale=4,
show_label=False
)
send_btn = gr.Button("送信", variant="primary", scale=1)
with gr.Row():
clear_btn = gr.Button("🗑️ 新しい会話", variant="secondary")
with gr.Column(scale=1):
model_select = gr.Dropdown(
choices=[
"elyza/Llama-3-ELYZA-JP-8B",
"Fugaku-LLM/Fugaku-LLM-13B",
],
value="elyza/Llama-3-ELYZA-JP-8B",
label="モデル選択",
interactive=True
)
temperature = gr.Slider(
minimum=0.1,
maximum=1.0,
value=0.7,
step=0.1,
label="Temperature",
info="生成の創造性を調整"
)
max_tokens = gr.Slider(
minimum=64,
maximum=512,
value=256,
step=64,
label="最大トークン数",
info="生成する最大トークン数"
)
gr.Markdown("""
### 使い方
1. モデルを選択
2. メッセージを入力
3. 送信ボタンをクリック
### 注意事項
- 初回のモデル読み込みには時間がかかります
- ZeroGPU使用により高速推論が可能
- 1回の生成は120秒以内に完了します
- 大きなモデル使用時は、短めの応答になる場合があります
""")
# イベントハンドラ
msg_input.submit(
fn=respond,
inputs=[msg_input, chatbot_ui, model_select, temperature, max_tokens],
outputs=[chatbot_ui, msg_input]
)
send_btn.click(
fn=respond,
inputs=[msg_input, chatbot_ui, model_select, temperature, max_tokens],
outputs=[chatbot_ui, msg_input]
)
clear_btn.click(
fn=clear_chat,
outputs=[chatbot_ui, msg_input]
)
if __name__ == "__main__":
# Hugging Face Spaces環境かどうかを確認
is_hf_spaces = os.getenv("SPACE_ID") is not None
app.launch(
share=False,
show_error=True,
server_name="0.0.0.0" if is_hf_spaces else "127.0.0.1",
server_port=7860
) |