Skip to content

Commit

Permalink
Add fix to preserve order
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-tuli committed Jul 18, 2024
1 parent 50642a6 commit 41c9c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/llmcompressor/recipe/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ def create_recipe_string_from_modifiers(
}
}
}
recipe_str: str = yaml.dump(recipe_dict)
recipe_str: str = yaml.dump(recipe_dict, sort_keys=False)
return recipe_str


Expand Down

0 comments on commit 41c9c5e

Please sign in to comment.