From 921f4cb8f65569c2977bd854d25f189c76f4ef7f Mon Sep 17 00:00:00 2001 From: Jong Wook Kim Date: Mon, 6 Nov 2023 10:07:27 -0800 Subject: [PATCH] remove unused path --- whisper/tokenizer.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/whisper/tokenizer.py b/whisper/tokenizer.py index 49eda0f..6484fa2 100644 --- a/whisper/tokenizer.py +++ b/whisper/tokenizer.py @@ -6,12 +6,6 @@ from functools import cached_property, lru_cache from typing import Dict, List, Optional, Tuple import tiktoken -from tiktoken.load import load_tiktoken_bpe - -ENCODINGS_BASE = os.environ.get( - "OPENAI_ENCODINGS_BASE", - "az://oaiappliedai/encodings/applied-encodings", -) LANGUAGES = { "en": "english",