Remove leftover scaled_fp8 key. (#11603)
This commit is contained in:
parent
f2fda021ab
commit
9a552df898
|
|
@ -1230,6 +1230,8 @@ def convert_old_quants(state_dict, model_prefix="", metadata={}):
|
|||
out_sd = {}
|
||||
layers = {}
|
||||
for k in list(state_dict.keys()):
|
||||
if k == scaled_fp8_key:
|
||||
continue
|
||||
if not k.startswith(model_prefix):
|
||||
out_sd[k] = state_dict[k]
|
||||
continue
|
||||
|
|
|
|||
Loading…
Reference in New Issue