Skip to content

Commit

Permalink
OV configurations alignment (#787)
Browse files Browse the repository at this point in the history
* Align with genai

* Added stable-code-3b

* Change order

* Update configuration.py
  • Loading branch information
KodiaqQ authored Jul 1, 2024
1 parent 1d29904 commit eeb1df0
Showing 1 changed file with 35 additions and 6 deletions.
41 changes: 35 additions & 6 deletions optimum/intel/openvino/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,47 @@
"dataset": "wikitext2",
"awq": True,
},
"meta-llama/Llama-2-7b": {"bits": 4, "sym": True, "group_size": 128, "ratio": 0.7},
"meta-llama/Llama-2-7b": {"bits": 4, "sym": True, "group_size": 128, "ratio": 0.6},
"meta-llama/Llama-2-7b-chat": {"bits": 4, "sym": True, "group_size": 128, "ratio": 0.8},
"meta-llama/Llama-2-13b-chat": {"bits": 4, "sym": True, "group_size": 64, "ratio": 0.8},
"stabilityai/stablelm-3b-4e1t": {"bits": 4, "sym": True, "group_size": 64, "ratio": 0.8},
"stablelm-epoch-3b-preview": {"bits": 4, "sym": True, "group_size": 64, "ratio": 0.8},
"stabilityai/stablelm-zephyr-3b": {"bits": 4, "sym": False, "group_size": 128, "ratio": 1.0},
"stabilityai/stablelm-3b-4e1t": {
"bits": 4,
"sym": True,
"group_size": 64,
"ratio": 0.8,
"dataset": "wikitext2",
"awq": True,
},
"stabilityai/stablelm-zephyr-3b": {
"bits": 4,
"sym": False,
"group_size": 128,
"ratio": 1.0,
"dataset": "wikitext2",
"awq": True,
},
"stabilityai/stable-code-3b": {"bits": 4, "sym": True, "group_size": 64, "ratio": 0.8},
"pansophic/rocket-3B": {"bits": 4, "sym": True, "group_size": 128, "ratio": 0.8},
"THUDM/chatglm2-6b": {"bits": 4, "sym": True, "group_size": 128, "ratio": 0.72},
"Qwen/Qwen-7B-Chat": {"bits": 4, "sym": True, "group_size": 128, "ratio": 0.6},
"openlm-research/open_llama_3b": {"bits": 4, "sym": True, "group_size": 64, "all_layers": True},
"tiiuae/falcon-7b": {"bits": 4, "sym": True, "group_size": 64, "all_layers": True},
"psmathur/orca_mini_3b": {"bits": 4, "sym": True, "group_size": 64, "all_layers": True},
"tiiuae/falcon-7b-instruct": {"bits": 4, "sym": True, "group_size": 64, "all_layers": True},
"psmathur/orca_mini_3b": {
"bits": 4,
"sym": True,
"group_size": 64,
"all_layers": True,
"dataset": "wikitext2",
"awq": True,
},
"bigscience/bloomz-560m": {
"bits": 4,
"sym": True,
"group_size": 64,
"ratio": 0.8,
"dataset": "wikitext2",
"awq": True,
},
"mistralai/Mixtral-8x7B-v0.1": {"bits": 4, "sym": True, "group_size": 128, "ratio": 0.8},
"facebook/opt-2.7b": {"bits": 4, "sym": True, "group_size": 128, "ratio": 0.7},
"togethercomputer/RedPajama-INCITE-Chat-3B-v1": {"bits": 4, "sym": False, "group_size": 128, "ratio": 0.8},
Expand Down

0 comments on commit eeb1df0

Please sign in to comment.