Mehdi

Results 3 comments of Mehdi

Added PR https://github.com/amazon-science/mm-cot/pull/12

You may also check [this](https://github.com/meta-llama/llama-recipes/issues/711) issue.

I was able to merge it without any issue. Here is my code that might help: ```python from peft import PeftModel base_model = MllamaForConditionalGeneration.from_pretrained( model_id, torch_dtype=torch.bfloat16, device_map="auto", ) processor =...