การทำงานกับ Llama 3
Imtihan Ahmed
Machine Learning Engineer
from llama_cpp import Llama
llm = Llama(model_path="path/to/model.gguf")
output = llm("What are some ways to improve customer retention?")


→ ควรกระชับและตรงไปตรงมา

→ ควรน่าสนใจและสร้างสรรค์
$$
$$
$$

$$
$$

ค่าโดยทั่วไปอยู่ระหว่าง 0 ถึง 1
Temperature ต่ำ (เช่น ใกล้ 0):
A smartwatch with a heart rate monitor, GPS, and a long-lasting battery
for all-day tracking.
Your personal fitness coach on your wrist - track every heartbeat, every step,
and every adventure without limits.
จำกัดจำนวนคำที่ Llama สามารถเลือกได้จากตัวเลือกที่น่าจะเป็นมากที่สุด
ค่า k ต่ำ (เช่น 1):
Track fitness, stream music, and receive notifications with our sleek smartwatch.
ค่า k สูง (เช่น 50):
Experience the future with our cutting-edge smartwatch, featuring fitness tracking, music streaming, customizable notifications, personalized insights, and seamless smartphone integration always.
ควบคุมการเลือกคำในผลลัพธ์ตามระดับความมั่นใจ
ค่า top-p สูง (เช่น ใกล้ 1):
Stay connected with our sleek smartwatch, featuring fitness tracking,
music, and customizable notifications, perfect for fitness
enthusiasts and busy professionals.
ค่า top-p ต่ำ (เช่น ใกล้ 0):
Smartwatch with fitness tracking and music control, perfect for workouts.
นับจำนวน token ซึ่งเป็นหน่วยของคำในคำตอบ
ค่า max_tokens ต่ำ:
Stay connected with our sleek smartwatch, featuring fitness tracking
and music control.
Stay connected with our sleek smartwatch, featuring fitness tracking,
music control, customizable notifications, and seamless smartphone
integration. Monitor your health, track your progress, and receive
alerts on your wrist. Perfect for fitness enthusiasts.
llm = Llama(model_path="path/to/model.gguf") output_concise = llm( "Describe an electric car.",temperature=0.2,top_k=1,top_p=0.4,max_tokens=20)
A fast, eco-friendly electric car with a long range and cutting-edge technology.
output_creative = llm( "Describe an electric car.",temperature=0.8,top_k=10,top_p=0.9,max_tokens=100)
Glide into the future with an electric car that blends speed, luxury,
and sustainability. Silent yet powerful, it redefines the road ...
การทำงานกับ Llama 3