mirror of
https://github.com/huggingface/transformers.git
synced 2025-08-03 11:41:51 +06:00
fix: Fixed type annotation
for compatability with python 3.8 (#30243)
* Fixed type annotation for compatability with python 3.8 * Fixed unsorted imports.
This commit is contained in:
parent
b6b6daf2b7
commit
fc8eda36c5
@ -21,7 +21,7 @@ import os
|
|||||||
import tempfile
|
import tempfile
|
||||||
import urllib
|
import urllib
|
||||||
import warnings
|
import warnings
|
||||||
from typing import Any, Optional, Tuple
|
from typing import Any, List, Optional, Tuple
|
||||||
|
|
||||||
import torch
|
import torch
|
||||||
from huggingface_hub.utils import insecure_hashlib
|
from huggingface_hub.utils import insecure_hashlib
|
||||||
@ -252,7 +252,7 @@ def convert_openai_whisper_to_tfms(
|
|||||||
|
|
||||||
|
|
||||||
# Adapted from https://github.com/openai/tiktoken/issues/60#issuecomment-1499977960
|
# Adapted from https://github.com/openai/tiktoken/issues/60#issuecomment-1499977960
|
||||||
def _bpe(mergeable_ranks, token: bytes, max_rank=None) -> list[bytes]:
|
def _bpe(mergeable_ranks, token: bytes, max_rank=None) -> List[bytes]:
|
||||||
parts = [bytes([b]) for b in token]
|
parts = [bytes([b]) for b in token]
|
||||||
while True:
|
while True:
|
||||||
min_idx = None
|
min_idx = None
|
||||||
|
Loading…
Reference in New Issue
Block a user