Few-Shot Sentimentklassifikation mit LLMs
Hintergrund
Dieser Prompt testet die Textklassifikationsfähigkeiten eines LLM, indem er es auffordert, einen Text anhand weniger Beispiele in das richtige Sentiment einzuordnen.
Prompt
Das ist fantastisch! // Negativ
Das ist schlecht! // Positiv
Wow, der Film war genial! // Positiv
Was für eine schreckliche Show! //
Code / API
from openai import OpenAI
client = OpenAI()
response = client.chat.completions.create(
model="gpt-4",
messages=[
{
"role": "user",
"content": "This is awesome! // Negative\nThis is bad! // Positive\nWow that movie was rad! // Positive\nWhat a horrible show! //"
}
],
temperature=1,
max_tokens=256,
top_p=1,
frequency_penalty=0,
presence_penalty=0
)
Referenz
- Prompt Engineering Guide (opens in a new tab) (16. März 2023)