hongzoh commited on
Commit
05c6d47
1 Parent(s): 3096318

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - garage-bAInd/Open-Platypus
5
+ ---
6
+
7
+ ## Base Model
8
+ - beomi/Yi-Ko-6B
9
+
10
+ ## Train Dataset
11
+ - garage-bAInd/Open-Platypus
12
+
13
+ ## Usage
14
+ ```
15
+ from transformers import AutoConfig, AutoModel, AutoTokenizer
16
+
17
+ model_name = 'hongzoh/Yi-Ko-6B_Open-Platypus'
18
+
19
+ config = AutoConfig.from_pretrained("model_name")
20
+ model = AutoModel.from_pretrained("model_name")
21
+ tokenizer = AutoTokenizer.from_pretrained("model_name")
22
+ ```