Spaces:
Running
Running
| # pip install -U transformers gradio pillow torchvision | |
| import torch | |
| import gradio as gr | |
| from transformers import AutoProcessor, AutoModelForImageTextToText | |
| # โโ ่ผๅ ฅๆจกๅ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ | |
| MODEL_ID = "google/gemma-4-12B" | |
| print(f"่ผๅ ฅๆจกๅ๏ผ{MODEL_ID} ...") | |
| processor = AutoProcessor.from_pretrained(MODEL_ID) | |
| model = AutoModelForImageTextToText.from_pretrained( | |
| MODEL_ID, | |
| dtype=torch.float16, # torch_dtype ๅทฒๆฃ็จ๏ผๆน็จ dtype | |
| device_map="auto", | |
| ) | |
| model.eval() | |
| print("ๆจกๅ่ผๅ ฅๅฎๆ๏ผ") | |
| # โโ ๆจ่ซๅฝๅผ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ | |
| def build_messages(history: list, user_text: str, image=None) -> list: | |
| """ๅฐ Gradio tuples ๆญทๅฒ่ฝๆๆ HuggingFace messages ๆ ผๅผใ""" | |
| messages = [] | |
| for user_turn, assistant_turn in history: | |
| messages.append({"role": "user", "content": [{"type": "text", "text": user_turn or ""}]}) | |
| messages.append({"role": "assistant", "content": [{"type": "text", "text": assistant_turn or ""}]}) | |
| user_content = [] | |
| if image is not None: | |
| user_content.append({"type": "image", "image": image}) | |
| user_content.append({"type": "text", "text": user_text}) | |
| messages.append({"role": "user", "content": user_content}) | |
| return messages | |
| def chat(user_message, image, history, max_new_tokens, temperature, top_p): | |
| """ไธปๅฐ่ฉฑๅฝๅผใhistory ็บ list of [user, assistant] tuplesใ""" | |
| if not (user_message and user_message.strip()) and image is None: | |
| return history, history, "", None | |
| messages = build_messages(history, user_message, image) | |
| pil_images = [image] if image is not None else None | |
| inputs = processor.apply_chat_template( | |
| messages, | |
| add_generation_prompt=True, | |
| tokenize=True, | |
| return_tensors="pt", | |
| return_dict=True, | |
| images=pil_images, | |
| ).to(model.device, dtype=torch.float16) | |
| with torch.inference_mode(): | |
| output_ids = model.generate( | |
| **inputs, | |
| max_new_tokens=int(max_new_tokens), | |
| do_sample=temperature > 0, | |
| temperature=float(temperature) if temperature > 0 else 1.0, | |
| top_p=float(top_p), | |
| ) | |
| input_len = inputs["input_ids"].shape[-1] | |
| response = processor.decode( | |
| output_ids[0, input_len:], skip_special_tokens=True | |
| ).strip() | |
| history = history + [[user_message, response]] | |
| return history, history, "", None | |
| def clear_history(): | |
| return [], [], "", None | |
| # โโ Gradio UI๏ผGradio 6 ็ธๅฎน๏ผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ | |
| CSS = """ | |
| #chatbot { height: 550px; } | |
| .send-btn { background: #10b981 !important; color: white !important; } | |
| footer { display: none !important; } | |
| """ | |
| with gr.Blocks(title="Gemma-4 Chat") as demo: | |
| gr.Markdown( | |
| """ | |
| # ๐ค Gemma-4 ๅคๆจกๆ ๅฐ่ฉฑๅฉ็ | |
| ๆฏๆด็ดๆๅญๅฐ่ฉฑ๏ผไบฆๅฏไธๅณๅ็้ฒ่กๅๆๅ็ญใ | |
| """ | |
| ) | |
| state = gr.State([]) | |
| with gr.Row(): | |
| with gr.Column(scale=3): | |
| chatbot = gr.Chatbot( | |
| elem_id="chatbot", | |
| label="ๅฐ่ฉฑ่ฆ็ช", | |
| # Gradio 6 ไธๆฏๆด type="messages"๏ผไฝฟ็จ้ ่จญ tuples ๆ ผๅผ | |
| ) | |
| with gr.Row(): | |
| user_input = gr.Textbox( | |
| placeholder="่ผธๅ ฅ่จๆฏ๏ผๆ Enter ๆ้ปๆ้ๅบโฆ", | |
| show_label=False, | |
| lines=2, | |
| scale=5, | |
| ) | |
| send_btn = gr.Button("้ๅบ โถ", elem_classes="send-btn", scale=1) | |
| with gr.Column(scale=1): | |
| image_input = gr.Image( | |
| label="ไธๅณๅ็๏ผ้ธๅกซ๏ผ", | |
| type="pil", | |
| height=220, | |
| ) | |
| gr.Markdown("### โ๏ธ ็ๆๅๆธ") | |
| max_new_tokens = gr.Slider(64, 2048, value=512, step=64, label="ๆๅคง็ๆ้ทๅบฆ") | |
| temperature = gr.Slider(0.0, 2.0, value=0.7, step=0.05, label="Temperature๏ผ0 = ็ขบๅฎๆง๏ผ") | |
| top_p = gr.Slider(0.1, 1.0, value=0.9, step=0.05, label="Top-p") | |
| clear_btn = gr.Button("๐๏ธ ๆธ ้คๅฐ่ฉฑ", variant="secondary") | |
| send_inputs = [user_input, image_input, state, max_new_tokens, temperature, top_p] | |
| send_outputs = [chatbot, state, user_input, image_input] | |
| send_btn.click(chat, inputs=send_inputs, outputs=send_outputs) | |
| user_input.submit(chat, inputs=send_inputs, outputs=send_outputs) | |
| clear_btn.click(clear_history, outputs=[chatbot, state, user_input, image_input]) | |
| # โโ ๅๅ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ | |
| if __name__ == "__main__": | |
| demo.launch( | |
| server_name="0.0.0.0", | |
| server_port=7860, | |
| share=False, # Colab ่ซๆน True | |
| inbrowser=True, | |
| theme=gr.themes.Soft(primary_hue="emerald"), # Gradio 6: theme ็งปๅฐ launch() | |
| css=CSS, | |
| ) |