LLaMA-Factory-Mirror/tests/model/test_base.py

54 lines
1.5 KiB
Python
Raw Normal View History

2024-06-15 17:54:33 +08:00
# Copyright 2024 the LlamaFactory team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2024-06-15 04:05:54 +08:00
import os
2024-06-15 20:06:17 +08:00
import pytest
2024-06-15 04:05:54 +08:00
2024-07-19 01:06:27 +08:00
from llamafactory.train.test_utils import (
compare_model,
load_infer_model,
load_reference_model,
patch_valuehead_model,
)
2024-06-15 04:05:54 +08:00
TINY_LLAMA = os.environ.get("TINY_LLAMA", "llamafactory/tiny-random-Llama-3")
2024-06-15 19:51:20 +08:00
TINY_LLAMA_VALUEHEAD = os.environ.get("TINY_LLAMA_VALUEHEAD", "llamafactory/tiny-random-Llama-3-valuehead")
2024-06-15 04:05:54 +08:00
INFER_ARGS = {
"model_name_or_path": TINY_LLAMA,
"template": "llama3",
"infer_dtype": "float16",
}
2024-06-15 20:06:17 +08:00
@pytest.fixture
def fix_valuehead_cpu_loading():
2024-07-19 01:06:27 +08:00
patch_valuehead_model()
2024-06-15 19:51:20 +08:00
2024-06-15 04:05:54 +08:00
def test_base():
2024-07-19 01:06:27 +08:00
model = load_infer_model(**INFER_ARGS)
ref_model = load_reference_model(TINY_LLAMA)
2024-06-15 19:51:20 +08:00
compare_model(model, ref_model)
2024-06-15 20:06:17 +08:00
@pytest.mark.usefixtures("fix_valuehead_cpu_loading")
2024-06-15 19:51:20 +08:00
def test_valuehead():
2024-07-19 01:06:27 +08:00
model = load_infer_model(add_valuehead=True, **INFER_ARGS)
ref_model = load_reference_model(TINY_LLAMA_VALUEHEAD, add_valuehead=True)
2024-06-15 04:05:54 +08:00
compare_model(model, ref_model)