--- license: apache-2.0 --- **License**: Must comply with license of Llama2 since it's a model derived from Llama2. --- Pruned-LLaMA-2.7B is a model pruned and further pre-trained from [meta-llama/Llama-2-7b-hf](https://huggingface.co/meta-llama/Llama-2-7b-hf). ## Usage ```python from transformers import AutoModelForCausalLM, AutoTokenizer model = AutoModelForCausalLM.from_pretrained("minhchuxuan/pruned-2.7b") tokenizer = AutoTokenizer.from_pretrained("minhchuxuan/pruned-2.7b") ```