lihaoxin2020 commited on
Commit
f3e316e
·
verified ·
1 Parent(s): 97875aa

Add/refresh README with load instructions

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # lihaoxin2020/Eurus-7B-PRIME-global_step_116
2
+
3
+ This repository was uploaded programmatically.
4
+
5
+ ## Usage
6
+
7
+ Load with transformers (or your library) using from_pretrained():
8
+
9
+ ```python
10
+ from transformers import AutoModel, AutoTokenizer
11
+
12
+ model = AutoModel.from_pretrained("lihaoxin2020/Eurus-7B-PRIME-global_step_116")
13
+ tokenizer = AutoTokenizer.from_pretrained("lihaoxin2020/Eurus-7B-PRIME-global_step_116")
14
+ ```
15
+
16
+ If you're using a custom library, ensure your loader expects the same files
17
+ (`config.json`, weight files like `pytorch_model.bin` or `model.safetensors`,
18
+ and any tokenizer assets) at the repository root.