simsim314 commited on
Commit
6656638
1 Parent(s): d4cccc7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -2,4 +2,12 @@
2
  license: gpl
3
  ---
4
 
5
- Sharded version of [This model](https://huggingface.co/NousResearch/Nous-Hermes-13b). Use the tokenizer from there.
 
 
 
 
 
 
 
 
 
2
  license: gpl
3
  ---
4
 
5
+ Sharded version of [This model](https://huggingface.co/NousResearch/Nous-Hermes-13b). Use the tokenizer from there
6
+
7
+
8
+ ```
9
+ from transformers import AutoTokenizer, AutoModelForCausalLM
10
+
11
+ tokenizer = AutoTokenizer.from_pretrained("NousResearch/Nous-Hermes-13b")
12
+ model = AutoModelForCausalLM.from_pretrained("simsim314/Hermes-13b-hf-shards")
13
+ ```