Co-authored-by: cy <chenyang08056032@163.com> Co-authored-by: Cherry_ming <136634645@qq.com>
30 lines
828 B
Python
30 lines
828 B
Python
import os
|
|
import unittest
|
|
|
|
from sglang.test.ascend.gsm8k_ascend_mixin import GSM8KAscendMixin
|
|
from sglang.test.ascend.test_ascend_utils import INTERNLM2_7B_WEIGHTS_PATH
|
|
from sglang.test.ci.ci_register import register_npu_ci
|
|
from sglang.test.test_utils import CustomTestCase
|
|
|
|
register_npu_ci(
|
|
est_time=400,
|
|
suite="nightly-1-npu-a3",
|
|
nightly=True,
|
|
)
|
|
|
|
|
|
class TestInternlm2(GSM8KAscendMixin, CustomTestCase):
|
|
"""Testcase: Verify that the inference accuracy of the Shanghai_AI_Laboratory/internlm2-7b model on the GSM8K dataset is no less than 0.585.
|
|
|
|
[Test Category] Model
|
|
[Test Target] Shanghai_AI_Laboratory/internlm2-7b
|
|
"""
|
|
|
|
os.environ["PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION"] = "python"
|
|
model = INTERNLM2_7B_WEIGHTS_PATH
|
|
accuracy = 0.585
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|