metadata.py 809 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
20

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

21
    generators: Dict[int, torch.Generator]
22

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

    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]]
35
36

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