Skip to content

Commit

Permalink
Merge pull request kubeagi#987 from 0xff-dev/remove-modelscope-test
Browse files Browse the repository at this point in the history
fix: remove modelscope test
  • Loading branch information
bjwswang authored Apr 8, 2024
2 parents f259628 + 6c158c8 commit 5525fc8
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions apiserver/pkg/forwardrepo/modelscope_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ package forwardrepo

import (
"context"
"reflect"
"testing"
)

const (
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"
modelID = "qwen/Qwen1.5-0.5B"
)

Expand All @@ -37,19 +35,13 @@ var (
func TestModelScope(t *testing.T) {
m := NewModelScope(WithModelID(modelID))
ctx := context.Background()
r, err := m.Summary(ctx)
_, err := m.Summary(ctx)
if err != nil {
t.Fatal(err)
}
if r != README {
t.Fatalf("expect %s get %s", README, r)
}

revisions, err := m.Revisions(ctx)
_, err = m.Revisions(ctx)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(revisions, Revisions) {
t.Fatalf("expect %v get %v", Revisions, revisions)
}
}

0 comments on commit 5525fc8

Please sign in to comment.