qhduan commited on
Commit
37c5cfd
·
1 Parent(s): 548f14a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -1,3 +1,36 @@
1
  ---
2
  license: apache-2.0
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ language:
4
+ - zh
5
  ---
6
+
7
+ # Model Card for Model ID
8
+
9
+ <!-- Provide a quick summary of what the model is/does. -->
10
+
11
+ This modelcard aims to be a base template for new models. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/modelcard_template.md?plain=1).
12
+
13
+ ## Model Details
14
+
15
+ ### Model Description
16
+
17
+ <!-- Provide a longer summary of what this model is. -->
18
+
19
+ - **Developed by:** 知未智能KDF
20
+ - **Model type:** JIANG
21
+ - **Language(s) (NLP):** Chinese
22
+ - **License:** apache-2.0
23
+
24
+ ## How to Get Started with the Model
25
+
26
+ Use the code below to get started with the model.
27
+
28
+ ```python
29
+ from transformers import AutoModelForCausalLM, AutoTokenizer
30
+
31
+ model_id = 'kdf/jiang-base'
32
+ model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True)
33
+ tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
34
+ ret = model.generate(**tokenizer('今天天气不错', return_tensors='pt'), max_new_tokens=50, top_k=1)
35
+ print(tokenizer.decode(ret[0]))
36
+ ```