update readme.md
Browse files
README.md
CHANGED
@@ -4,9 +4,9 @@ language:
|
|
4 |
- en
|
5 |
---
|
6 |
|
7 |
-
# RedPajama-Instruct-
|
8 |
|
9 |
-
RedPajama-Instruct-
|
10 |
|
11 |
## Model Details
|
12 |
- **Developed by**: Together Computer.
|
@@ -34,8 +34,8 @@ MIN_TRANSFORMERS_VERSION = '4.25.1'
|
|
34 |
assert transformers.__version__ >= MIN_TRANSFORMERS_VERSION, f'Please upgrade transformers to version {MIN_TRANSFORMERS_VERSION} or higher.'
|
35 |
|
36 |
# init
|
37 |
-
tokenizer = AutoTokenizer.from_pretrained("togethercomputer/RedPajama-Instruct-
|
38 |
-
model = AutoModelForCausalLM.from_pretrained("togethercomputer/RedPajama-Instruct-
|
39 |
model = model.to('cuda:0')
|
40 |
# infer
|
41 |
prompt = "Q: The capital of France is?\nA:"
|
@@ -76,8 +76,8 @@ MIN_TRANSFORMERS_VERSION = '4.25.1'
|
|
76 |
assert transformers.__version__ >= MIN_TRANSFORMERS_VERSION, f'Please upgrade transformers to version {MIN_TRANSFORMERS_VERSION} or higher.'
|
77 |
|
78 |
# init
|
79 |
-
tokenizer = AutoTokenizer.from_pretrained("togethercomputer/RedPajama-Instruct-
|
80 |
-
model = AutoModelForCausalLM.from_pretrained("togethercomputer/RedPajama-Instruct-
|
81 |
|
82 |
# infer
|
83 |
prompt = "Q: The capital of France is?\nA:"
|
@@ -107,8 +107,8 @@ MIN_TRANSFORMERS_VERSION = '4.25.1'
|
|
107 |
assert transformers.__version__ >= MIN_TRANSFORMERS_VERSION, f'Please upgrade transformers to version {MIN_TRANSFORMERS_VERSION} or higher.'
|
108 |
|
109 |
# init
|
110 |
-
tokenizer = AutoTokenizer.from_pretrained("togethercomputer/RedPajama-Instruct-
|
111 |
-
model = AutoModelForCausalLM.from_pretrained("togethercomputer/RedPajama-Instruct-
|
112 |
# infer
|
113 |
prompt = "Q: The capital of France is?\nA:"
|
114 |
inputs = tokenizer(prompt, return_tensors='pt').to(model.device)
|
@@ -147,13 +147,13 @@ It is the responsibility of the end user to ensure that the model is used in a r
|
|
147 |
|
148 |
#### Out-of-Scope Use
|
149 |
|
150 |
-
RedPajama-Instruct-
|
151 |
For example, it may not be suitable for use in safety-critical applications or for making decisions that have a significant impact on individuals or society.
|
152 |
It is important to consider the limitations of the model and to only use it for its intended purpose.
|
153 |
|
154 |
#### Misuse and Malicious Use
|
155 |
|
156 |
-
RedPajama-Instruct-
|
157 |
Misuse of the model, such as using it to engage in illegal or unethical activities, is strictly prohibited and goes against the principles of the OpenChatKit community project.
|
158 |
|
159 |
Using the model to generate content that is cruel to individuals is a misuse of this model. This includes, but is not limited to:
|
@@ -170,7 +170,7 @@ Using the model to generate content that is cruel to individuals is a misuse of
|
|
170 |
|
171 |
## Limitations
|
172 |
|
173 |
-
RedPajama-Instruct-
|
174 |
For example, the model may not always provide accurate or relevant answers, particularly for questions that are complex, ambiguous, or outside of its training data.
|
175 |
We therefore welcome contributions from individuals and organizations, and encourage collaboration towards creating a more robust and inclusive chatbot.
|
176 |
|
|
|
4 |
- en
|
5 |
---
|
6 |
|
7 |
+
# RedPajama-INCITE-Instruct-7B-v0.1
|
8 |
|
9 |
+
RedPajama-INCITE-Instruct-7B-v0.1, is a large transformer-based language model developed by Together Computer and trained on the RedPajama-Data-1T dataset.
|
10 |
|
11 |
## Model Details
|
12 |
- **Developed by**: Together Computer.
|
|
|
34 |
assert transformers.__version__ >= MIN_TRANSFORMERS_VERSION, f'Please upgrade transformers to version {MIN_TRANSFORMERS_VERSION} or higher.'
|
35 |
|
36 |
# init
|
37 |
+
tokenizer = AutoTokenizer.from_pretrained("togethercomputer/RedPajama-INCITE-Instruct-7B-v0.1")
|
38 |
+
model = AutoModelForCausalLM.from_pretrained("togethercomputer/RedPajama-INCITE-Instruct-7B-v0.1", torch_dtype=torch.float16)
|
39 |
model = model.to('cuda:0')
|
40 |
# infer
|
41 |
prompt = "Q: The capital of France is?\nA:"
|
|
|
76 |
assert transformers.__version__ >= MIN_TRANSFORMERS_VERSION, f'Please upgrade transformers to version {MIN_TRANSFORMERS_VERSION} or higher.'
|
77 |
|
78 |
# init
|
79 |
+
tokenizer = AutoTokenizer.from_pretrained("togethercomputer/RedPajama-INCITE-Instruct-7B-v0.1")
|
80 |
+
model = AutoModelForCausalLM.from_pretrained("togethercomputer/RedPajama-INCITE-Instruct-7B-v0.1", device_map='auto', torch_dtype=torch.float16, load_in_8bit=True)
|
81 |
|
82 |
# infer
|
83 |
prompt = "Q: The capital of France is?\nA:"
|
|
|
107 |
assert transformers.__version__ >= MIN_TRANSFORMERS_VERSION, f'Please upgrade transformers to version {MIN_TRANSFORMERS_VERSION} or higher.'
|
108 |
|
109 |
# init
|
110 |
+
tokenizer = AutoTokenizer.from_pretrained("togethercomputer/RedPajama-INCITE-Instruct-7B-v0.1")
|
111 |
+
model = AutoModelForCausalLM.from_pretrained("togethercomputer/RedPajama-INCITE-Instruct-7B-v0.1", torch_dtype=torch.bfloat16)
|
112 |
# infer
|
113 |
prompt = "Q: The capital of France is?\nA:"
|
114 |
inputs = tokenizer(prompt, return_tensors='pt').to(model.device)
|
|
|
147 |
|
148 |
#### Out-of-Scope Use
|
149 |
|
150 |
+
RedPajama-INCITE-Instruct-7B-v0.1 is a language model and may not perform well for other use cases outside of its intended scope.
|
151 |
For example, it may not be suitable for use in safety-critical applications or for making decisions that have a significant impact on individuals or society.
|
152 |
It is important to consider the limitations of the model and to only use it for its intended purpose.
|
153 |
|
154 |
#### Misuse and Malicious Use
|
155 |
|
156 |
+
RedPajama-INCITE-Instruct-7B-v0.1 is designed for language modeling.
|
157 |
Misuse of the model, such as using it to engage in illegal or unethical activities, is strictly prohibited and goes against the principles of the OpenChatKit community project.
|
158 |
|
159 |
Using the model to generate content that is cruel to individuals is a misuse of this model. This includes, but is not limited to:
|
|
|
170 |
|
171 |
## Limitations
|
172 |
|
173 |
+
RedPajama-INCITE-Instruct-7B-v0.1, like other language models, has limitations that should be taken into consideration.
|
174 |
For example, the model may not always provide accurate or relevant answers, particularly for questions that are complex, ambiguous, or outside of its training data.
|
175 |
We therefore welcome contributions from individuals and organizations, and encourage collaboration towards creating a more robust and inclusive chatbot.
|
176 |
|