Skip to content

Commit 5525fc8

Browse files
authored
Merge pull request #987 from 0xff-dev/remove-modelscope-test
fix: remove modelscope test
2 parents f259628 + 6c158c8 commit 5525fc8

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

apiserver/pkg/forwardrepo/modelscope_test.go

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@ package forwardrepo
1717

1818
import (
1919
"context"
20-
"reflect"
2120
"testing"
2221
)
2322

2423
const (
25-
README = "\n# Qwen1.5-0.5B\n\n\n## Introduction\n\nQwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen, the improvements include:\n\n* 6 model sizes, including 0.5B, 1.8B, 4B, 7B, 14B, and 72B;\n* Significant performance improvement in Chat models;\n* Multilingual support of both base and chat models;\n* Stable support of 32K context length for models of all sizes\n* No need of `trust_remote_code`.\n\nFor more details, please refer to our [blog post](https://qwenlm.github.io/blog/qwen1.5/) and [GitHub repo](https://github.com/QwenLM/Qwen1.5).\n\n\n## Model Details\nQwen1.5 is a language model series including decoder language models of different model sizes. For each size, we release the base language model and the aligned chat model. It is based on the Transformer architecture with SwiGLU activation, attention QKV bias, group query attention, mixture of sliding window attention and full attention, etc. Additionally, we have an improved tokenizer adaptive to multiple natural languages and codes. For the beta version, temporarily we did not include GQA and the mixture of SWA and full attention.\n\n## Requirements\nThe code of Qwen1.5 has been in the latest Hugging face transformers and we advise you to install `transformers\u003e=4.37.0`, or you might encounter the following error:\n```\nKeyError: 'qwen2'.\n```\n\n\n## Usage\n\nWe do not advise you to use base language models for text generation. Instead, you can apply post-training, e.g., SFT, RLHF, continued pretraining, etc., on this model.\n\n\n## Citation\n\nIf you find our work helpful, feel free to give us a cite.\n\n```\n@article{qwen,\n title={Qwen Technical Report},\n author={Jinze Bai and Shuai Bai and Yunfei Chu and Zeyu Cui and Kai Dang and Xiaodong Deng and Yang Fan and Wenbin Ge and Yu Han and Fei Huang and Binyuan Hui and Luo Ji and Mei Li and Junyang Lin and Runji Lin and Dayiheng Liu and Gao Liu and Chengqiang Lu and Keming Lu and Jianxin Ma and Rui Men and Xingzhang Ren and Xuancheng Ren and Chuanqi Tan and Sinan Tan and Jianhong Tu and Peng Wang and Shijie Wang and Wei Wang and Shengguang Wu and Benfeng Xu and Jin Xu and An Yang and Hao Yang and Jian Yang and Shusheng Yang and Yang Yao and Bowen Yu and Hongyi Yuan and Zheng Yuan and Jianwei Zhang and Xingxuan Zhang and Yichang Zhang and Zhenru Zhang and Chang Zhou and Jingren Zhou and Xiaohuan Zhou and Tianhang Zhu},\n journal={arXiv preprint arXiv:2309.16609},\n year={2023}\n}\n```\n"
2624
modelID = "qwen/Qwen1.5-0.5B"
2725
)
2826

@@ -37,19 +35,13 @@ var (
3735
func TestModelScope(t *testing.T) {
3836
m := NewModelScope(WithModelID(modelID))
3937
ctx := context.Background()
40-
r, err := m.Summary(ctx)
38+
_, err := m.Summary(ctx)
4139
if err != nil {
4240
t.Fatal(err)
4341
}
44-
if r != README {
45-
t.Fatalf("expect %s get %s", README, r)
46-
}
4742

48-
revisions, err := m.Revisions(ctx)
43+
_, err = m.Revisions(ctx)
4944
if err != nil {
5045
t.Fatal(err)
5146
}
52-
if !reflect.DeepEqual(revisions, Revisions) {
53-
t.Fatalf("expect %v get %v", Revisions, revisions)
54-
}
5547
}

0 commit comments

Comments
 (0)