Skip to content

Commit

Permalink
Fix wrong AWQ option
Browse files Browse the repository at this point in the history
  • Loading branch information
KodiaqQ committed Jul 15, 2024
1 parent 132cd8f commit 7e8177b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions optimum/intel/openvino/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"group_size": 128,
"ratio": 0.8,
"dataset": "wikitext2",
"awq": True,
"quant_method": "awq",
},
"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},
Expand All @@ -54,15 +54,15 @@
"group_size": 64,
"ratio": 0.8,
"dataset": "wikitext2",
"awq": True,
"quant_method": "awq",
},
"stabilityai/stablelm-zephyr-3b": {
"bits": 4,
"sym": False,
"group_size": 128,
"ratio": 1.0,
"dataset": "wikitext2",
"awq": True,
"quant_method": "awq",
},
"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},
Expand All @@ -77,15 +77,15 @@
"group_size": 64,
"all_layers": True,
"dataset": "wikitext2",
"awq": True,
"quant_method": "awq",
},
"bigscience/bloomz-560m": {
"bits": 4,
"sym": True,
"group_size": 64,
"ratio": 0.8,
"dataset": "wikitext2",
"awq": True,
"quant_method": "awq",
},
"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},
Expand Down

0 comments on commit 7e8177b

Please sign in to comment.