Previously there was an issue with tests which resulted in test yaml paths being read incorrectly. The current behavior is that the path string is parsed as if it was a yaml. This returns a str type which is not only wrong content but leads to type conflicts downstream.
Now the user gets a clean error
Could not parse recipe from string tests/llmcompressor/transformers/obcq/recipes/quant_and_sparse.yaml. If you meant load from a file, please make sure that the specified file path exists
Previously there was an issue with tests which resulted in test yaml paths being read incorrectly. The current behavior is that the path string is parsed as if it was a yaml. This returns a
str
type which is not only wrong content but leads to type conflicts downstream.Now the user gets a clean error