metadata.py 852 Bytes
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
from dataclasses import dataclass
4
from typing import Dict, List, Optional, Set
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

import torch


@dataclass
class SamplingMetadata:

    temperature: torch.Tensor
    all_greedy: bool
    all_random: bool

    top_p: torch.Tensor
    top_k: torch.Tensor
    no_top_p: bool
    no_top_k: bool
20
21
    min_p: torch.Tensor
    no_min_p: bool
22

23
    generators: Dict[int, torch.Generator]
24

25
26
    # None means no logprobs, 0 means sampled token logprobs only
    max_num_logprobs: Optional[int]
27
28
29
30
31
32
33
34
35
36

    no_penalties: bool
    prompt_token_ids: Optional[torch.Tensor]
    frequency_penalties: torch.Tensor
    presence_penalties: torch.Tensor
    repetition_penalties: torch.Tensor

    output_token_ids: List[List[int]]
    min_tokens: List[int]
    stop_token_ids: List[Set[int]]
37
38

    logit_bias: List[Optional[Dict[int, float]]]