File size: 2,274 Bytes
cefdf96
07929fc
 
 
 
 
0839a80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cefdf96
07929fc
 
 
 
 
 
 
 
 
 
 
 
d7d38e4
07929fc
 
 
 
 
 
d7d38e4
 
07929fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7d38e4
07929fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
tags:
- generated
- transformers
- continuous-batching
- uv-script
dataset_info:
  features:
  - name: messages
    list:
    - name: content
      dtype: string
    - name: role
      dtype: string
  - name: chat_template_kwargs
    struct:
    - name: custom_instructions
      dtype: string
    - name: enable_thinking
      dtype: bool
    - name: python_tools
      list: string
    - name: xml_tools
      list: string
  - name: source
    dtype: string
  - name: response
    dtype: string
  splits:
  - name: OpenHermes_2.5_no_think
    num_bytes: 9646
    num_examples: 10
  download_size: 13980
  dataset_size: 9646
configs:
- config_name: default
  data_files:
  - split: OpenHermes_2.5_no_think
    path: data/OpenHermes_2.5_no_think-*
---

# Generated Responses Dataset

This dataset contains generated responses for prompts from [HuggingFaceTB/smoltalk2](https://huggingface.co/datasets/HuggingFaceTB/smoltalk2).

## Generation Details

- **Source Dataset**: [HuggingFaceTB/smoltalk2](https://huggingface.co/datasets/HuggingFaceTB/smoltalk2)
- **Input Column**: `messages` (chat messages)
- **Model**: [Qwen/Qwen3-4B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-4B-Instruct-2507)
- **Backend**: transformers continuous batching
- **Number of Examples**: 10
- **Generation Date**: 2026-03-25T12:32:41.761909

### Generation Parameters

- **Temperature**: 0.7
- **Top P**: 0.8
- **Top K**: 20
- **Max New Tokens**: 128
- **Max Batch Tokens**: 512
- **Repetition Penalty**: 1.0

### Hardware Configuration

- **GPUs**: 1
- **Attention Implementation**: paged|sdpa

## Dataset Structure

The dataset contains all columns from the source dataset plus:
- `response`: The generated response from the model

## Generation Script

Generated using the transformers continuous batching script from [uv-scripts/transformers-inference](https://huggingface.co/datasets/uv-scripts/transformers-inference).

To reproduce this generation:

```bash
uv run https://huggingface.co/datasets/uv-scripts/transformers-inference/raw/main/generate-responses.py \
    HuggingFaceTB/smoltalk2 \
    <output-dataset> \
    --model-id Qwen/Qwen3-4B-Instruct-2507 \
    --messages-column messages \
    --temperature 0.7 \
    --top-p 0.8 \
    --top-k 20 \
    --max-tokens 128
```