--- license: gpl --- Sharded version of [This model](https://huggingface.co/NousResearch/Nous-Hermes-13b). Use the tokenizer from there ``` from transformers import LlamaTokenizer, AutoModelForCausalLM tokenizer = LlamaTokenizer.from_pretrained("NousResearch/Nous-Hermes-13b") model = AutoModelForCausalLM.from_pretrained("simsim314/Hermes-13b-hf-shards") ```