xinchen9 commited on
Commit
84d6337
1 Parent(s): 2bf069c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -2
README.md CHANGED
@@ -6,7 +6,20 @@ license: apache-2.0
6
  Introducing xinchen9/llama3-b8-ft, an advanced language model comprising 8 billion parameters. It has been fine-trained based on
7
  [Meta-Llama-3-8](https://huggingface.co/meta-llama/Meta-Llama-3-8B).
8
 
9
- Fine-tuning on dataset [SlimOrca](https://huggingface.co/datasets/Open-Orca/SlimOrca).
10
-
11
 
 
 
 
 
 
 
12
 
 
 
 
 
 
 
 
 
 
6
  Introducing xinchen9/llama3-b8-ft, an advanced language model comprising 8 billion parameters. It has been fine-trained based on
7
  [Meta-Llama-3-8](https://huggingface.co/meta-llama/Meta-Llama-3-8B).
8
 
9
+ The llama3-b8 model was fine-tuning on dataset [SlimOrca](https://huggingface.co/datasets/Open-Orca/SlimOrca).
 
10
 
11
+ ### 2. How to Use
12
+ Here give some examples of how to use our model.
13
+ #### Text Completion
14
+ ```python
15
+ import torch
16
+ from transformers import AutoTokenizer, AutoModelForCausalLM, GenerationConfig
17
 
18
+ model_name = "deepseek-ai/deepseek-llm-7b-base"
19
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
20
+ model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.bfloat16, device_map="auto")
21
+ model.generation_config = GenerationConfig.from_pretrained(model_name)
22
+ model.generation_config.pad_token_id = model.generation_config.eos_token_id
23
+ ```
24
+ ### 3 Disclaimer
25
+ The license on this model does not constitute legal advice. We are not responsible for the actions of third parties who use this model. Please cosult an attorney before using this model for commercial purposes.