mirror of
https://github.com/exo-explore/exo.git
synced 2025-10-23 02:57:14 +03:00
add exception for mlx-community/DeepSeek-R1-3bit and mlx-community/DeepSeek-V3-3bit in tokenizers test
This commit is contained in:
@@ -37,6 +37,6 @@ verbose = os.environ.get("VERBOSE", "0").lower() == "1"
|
||||
for m in models:
|
||||
# TODO: figure out why use_fast=False is giving inconsistent behaviour (no spaces decoding invididual tokens) for Mistral-Large-Instruct-2407-4bit
|
||||
# test_tokenizer(m, AutoProcessor.from_pretrained(m, use_fast=False), verbose)
|
||||
if m not in ["mlx-community/DeepSeek-R1-4bit", "mlx-community/DeepSeek-V3-4bit"]:
|
||||
if m not in ["mlx-community/DeepSeek-R1-4bit", "mlx-community/DeepSeek-R1-3bit", "mlx-community/DeepSeek-V3-4bit", "mlx-community/DeepSeek-V3-3bit"]:
|
||||
test_tokenizer(m, AutoProcessor.from_pretrained(m, use_fast=True, trust_remote_code=True), verbose)
|
||||
test_tokenizer(m, AutoTokenizer.from_pretrained(m, trust_remote_code=True), verbose)
|
||||
|
||||
Reference in New Issue
Block a user