2024-08-29|閱讀時間 ‧ 約 23 分鐘

AI說書 - 從0開始 - 154 | 製作預測文法正確與否的聊天介面

我想要一天分享一點「LLM從底層堆疊的技術」,並且每篇文章長度控制在三分鐘以內,讓大家不會壓力太大,但是又能夠每天成長一點。


回顧一下目前手上有的素材:


應用 AI說書 - 從0開始 - 153 | 製作文法正確與否的預測函數 的函數,來做一個聊天介面,首先定義 Interface 函數:

!pip install ipywidgets
import ipywidgets as widgets
from IPython.display import display

def model_predict_interface(sentence):
prediction = predict(sentence, model, tokenizer)
if prediction == 0:
return "Grammatically Incorrect"
elif prediction == 1:
return "Grammatically Correct"
else:
return f"Label: {prediction}"


接著進入主題介面設定:

text_input = widgets.Textarea(placeholder = 'Type something', 
description = 'Sentence:',
disabled = False,
layout = widgets.Layout(width = '100%', height = '50px'))


output_label = widgets.Label(value = '',
layout = widgets.Layout(width = '100%', height = '25px'),
style = {'description_width': 'initial'})


def on_text_submit(change):
output_label.value = model_predict_interface(change.new)


text_input.observe(on_text_submit, names = 'value')


display(text_input, output_label)


分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.