Skip to content

Update datasets.md #158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/datasets.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ GuideLLM supports several types of datasets, each with its own advantages and us

Synthetic datasets allow you to generate data on the fly with customizable parameters. This is useful for controlled experiments, stress testing, and simulating specific scenarios. For example, you might want to evaluate how a model handles long prompts or generates outputs with specific characteristics.

For different use cases, here are the recommended dataset profiles to pass as arguments in GuideLLM:

- **Chat**: `--data "prompt_tokens=512,output_tokens=256"`
- **RAG**: `--data "prompt_tokens=4096,output_tokens=512"`
- **Summarization**: `--data "prompt_tokens=1024,output_tokens=256"`
- **Code Generation**: `--data "prompt_tokens=512,output_tokens=512"`


#### Example Commands

```bash
Expand Down
Loading