Update README.md
Browse filesUpdate model organization
README.md
CHANGED
@@ -35,7 +35,7 @@ The model is fine-tuned based on [BLOOMZ-560M](https://huggingface.co/bigscience
|
|
35 |
import torch
|
36 |
from transformers import AutoTokenizer, AutoModelForCausalLM, AutoModel
|
37 |
|
38 |
-
model_name_or_path = '
|
39 |
tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
|
40 |
model = AutoModelForCausalLM.from_pretrained(model_name_or_path)
|
41 |
tokenizer.padding_side = 'left'
|
|
|
35 |
import torch
|
36 |
from transformers import AutoTokenizer, AutoModelForCausalLM, AutoModel
|
37 |
|
38 |
+
model_name_or_path = 'DAMO-NLP/SeqGPT-560M'
|
39 |
tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
|
40 |
model = AutoModelForCausalLM.from_pretrained(model_name_or_path)
|
41 |
tokenizer.padding_side = 'left'
|