From 7ecea08b9b94a8427fd4d1b16e8caa32829f5668 Mon Sep 17 00:00:00 2001 From: hoshi-hiyouga Date: Tue, 16 Apr 2024 17:27:25 +0800 Subject: [PATCH] Update parser.py Former-commit-id: 898239883afc79f03abd0dc276eef901662a9591 --- src/llmtuner/hparams/parser.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/llmtuner/hparams/parser.py b/src/llmtuner/hparams/parser.py index baa65978..a9f8ffd7 100644 --- a/src/llmtuner/hparams/parser.py +++ b/src/llmtuner/hparams/parser.py @@ -82,9 +82,6 @@ def _check_extra_dependencies( if model_args.use_unsloth: require_version("unsloth", "Please install unsloth: https://github.com/unslothai/unsloth") - if model_args.mixture_of_depths: - require_version("mixture-of-depth", "To fix: pip install mixture-of-depth") - if model_args.infer_backend == "vllm": require_version("vllm>=0.3.3", "To fix: pip install vllm>=0.3.3")