mirror of
https://github.com/dair-ai/Prompt-Engineering-Guide
synced 2024-11-04 12:00:10 +00:00
26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
# Modelle
|
|
|
|
import { Callout } from 'nextra-theme-docs';
|
|
import { Cards, Card } from 'nextra-theme-docs';
|
|
import { FilesIcon } from 'components/icons';
|
|
|
|
In diesem Abschnitt werden wir einige der neuesten Sprachmodelle behandeln und wie sie die neuesten und fortschrittlichsten Techniken im Prompting erfolgreich anwenden. Zusätzlich gehen wir auf die Fähigkeiten dieser Modelle bei einer Reihe von Aufgaben und Prompting-Setups ein, wie etwa Few-Shot Prompting, Zero-Shot Prompting und Chain-of-Thought Prompting. Das Verständnis dieser Fähigkeiten ist wichtig, um die Grenzen dieser Modelle zu verstehen und wie man sie effektiv einsetzt.
|
|
|
|
<Cards>
|
|
<Card icon={<FilesIcon />} title="Flan" href="/models/flan" />
|
|
<Card icon={<FilesIcon />} title="ChatGPT" href="/models/chatgpt" />
|
|
<Card icon={<FilesIcon />} title="LLaMA" href="/models/llama" />
|
|
<Card icon={<FilesIcon />} title="GPT-4" href="/models/gpt-4" />
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Mistral 7B"
|
|
href="/models/mistral-7b"
|
|
/>
|
|
<Card icon={<FilesIcon />} title="Gemini" href="/models/gemini" />
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="LLM-Sammlung"
|
|
href="/models/collection"
|
|
/>
|
|
</Cards>
|