DarwinAnim8or commited on
Commit
830160c
·
1 Parent(s): e09b645

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,27 @@
1
  ---
2
  license: other
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: other
3
  ---
4
+ # OPT-1.3b-Chat
5
+
6
+ This is a text generation model based on the [OPT-1.3B](https://huggingface.co/facebook/opt-1.3b) model from Meta, trained using the Deepspeed library. The model can generate natural and engaging conversational responses given a user input.
7
+
8
+ ## Model Details
9
+
10
+ - The base model is [OPT-1.3B](https://huggingface.co/facebook/opt-1.3b), a decoder-only transformer with 1.3 billion parameters, pre-trained on a large text corpus using the causal language modeling objective.
11
+ - The model was trained on a single NVIDIA A100 GPU using the Deepspeed pipeline parallelism and ZeRO optimizer.
12
+
13
+ ## Usage
14
+
15
+ You can use this model directly with the Hugging Face pipeline for text generation:
16
+
17
+ ```python
18
+ from transformers import pipeline
19
+ generator = pipeline('text-generation', model='your-model-name')
20
+ generator("Hello, how are you?")
21
+ ```
22
+
23
+ ## License
24
+ This model is licensed under the [OPT-175B license](https://github.com/facebookresearch/metaseq/blob/main/projects/OPT/MODEL_LICENSE.md), which is a non-commercial research license. Please read the full license terms before using this model.
25
+
26
+ ## Ethical Considerations
27
+ This model is intended for research purposes only and should not be used for any malicious or harmful applications. The model may generate offensive or inappropriate content that does not reflect the views or opinions of the authors or Microsoft. Users are responsible for ensuring that the generated content complies with ethical and legal standards.