-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update tests for transformers 4.36 #10858
Changes from 61 commits
f9d0107
a86c35f
8a6e0f2
d658968
66639dc
e77cee4
f1d6944
c2fa88b
b255ac5
a82199a
7e7d09c
8f1c355
0e7f73a
e0c4407
c51b7ea
a442768
5563f28
b575c48
cc0ed30
04333ae
8ecdeac
49a6933
e52180c
9217662
3ad25b7
8ee92d2
45d2383
e968252
d59f68c
f44e9a4
f9ece00
bf8aece
98789db
d459a82
51134d4
39c104b
5d32b59
da72111
687ba8b
8099a2c
270ecb8
bc847bf
0fcaa40
26aa194
22d0bf6
65ea875
4f98a38
c64ec33
9c9e92d
4b04c45
8638cea
a533ae8
4af1445
1f91353
0696491
6922dc7
6417726
e30a397
ec2cd5e
bc1fec0
55fee3b
dcd8115
936fafe
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,14 @@ repo_id: | |
- 'databricks/dolly-v1-6b' | ||
- 'databricks/dolly-v2-7b' | ||
- 'databricks/dolly-v2-12b' | ||
- 'internlm/internlm-chat-7b-8k' | ||
- 'internlm/internlm-chat-7b' | ||
- 'Qwen/Qwen-7B-Chat' | ||
- 'BAAI/AquilaChat-7B' | ||
- 'baichuan-inc/Baichuan2-7B-Chat' | ||
- 'baichuan-inc/Baichuan2-13B-Chat-4bit' | ||
- 'bigscience/bloomz-7b1' | ||
- 'fnlp/moss-moon-003-sft-4bit' | ||
# - 'fnlp/moss-moon-003-sft-4bit' # moss-moon-003-sft cannot work on transformers 4.34+ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this supposed to be fixed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the tokenizer issue of moss-moon-003-sft model, because moss-moon-003-sft haven't fix the tokenizer issue to compatible with transformers 4.34+, we can not fix it. See the issue: https://github.com/analytics-zoo/nano/issues/1145 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Then shall we keep transformers 4.31 in the test as well for this model? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know whether we need to keep such test for transformers 4.31 since ipex-llm would be updated to support transformers 4.36. @jason-dai Do we need to keep tests which only works on transformers 4.31? |
||
- 'mistralai/Mistral-7B-v0.1' | ||
local_model_hub: '/mnt/disk1/models' | ||
warm_up: 1 | ||
num_trials: 3 | ||
|
@@ -31,7 +32,7 @@ test_api: | |
- "transformer_int4_gpu" # on Intel GPU | ||
cpu_embedding: False # whether put embedding to CPU (only avaiable now for gpu win related test_api) | ||
exclude: | ||
- 'fnlp/moss-moon-003-sft-4bit:1024' | ||
- 'fnlp/moss-moon-003-sft-4bit:2048' | ||
# - 'fnlp/moss-moon-003-sft-4bit:1024' | ||
# - 'fnlp/moss-moon-003-sft-4bit:2048' | ||
- 'baichuan-inc/Baichuan2-13B-Chat-4bit:2048' | ||
- 'bigscience/bloomz-7b1:2048' |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the reason for this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replit-code-v1-3b cannot run with transformers 4.36, so another code generation model is used here instead :)