wassemgtk commited on
Commit
e338cb0
1 Parent(s): 0a47f3a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -1
README.md CHANGED
@@ -5,10 +5,26 @@ language:
5
  tags:
6
  - llama
7
  - InstructGPT
8
- - hf,
9
  ---
10
 
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  ## usage :
14
  ```python
@@ -65,4 +81,34 @@ clean_output = output_text.split("### Response:")[1].strip()
65
 
66
  print(clean_output)
67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  ```
 
5
  tags:
6
  - llama
7
  - InstructGPT
8
+ - hf
9
  ---
10
 
11
 
12
+ # Camel 🐪 5B
13
+
14
+ <style>
15
+ img {
16
+ display: inline;
17
+ }
18
+ </style>
19
+
20
+ |[![Model architecture](https://img.shields.io/badge/Model%20Arch-Transformer%20Decoder-green)](#model-architecture)|[![Model size](https://img.shields.io/badge/Params-5B-green)](#model-architecture)|[![Language](https://img.shields.io/badge/Language-en--US-lightgrey#model-badge)](#datasets)
21
+
22
+
23
+ ## Model Description
24
+
25
+ Palmyra Base was primarily pre-trained with English text. Note that there is still a trace amount of non-English data present within the training corpus that was accessed through CommonCrawl. A causal language modeling (CLM) objective was utilized during the process of the model's pretraining. Similar to GPT-3, Palmyra Base is a member of the same family of models that only contain a decoder. As a result, it was pre-trained utilizing the objective of self-supervised causal language modeling. Palmyra Base uses the prompts and general experimental setup from GPT-3 in order to conduct its evaluation per GPT-3.
26
+
27
+
28
 
29
  ## usage :
30
  ```python
 
81
 
82
  print(clean_output)
83
 
84
+ ```
85
+
86
+ `
87
+
88
+ ### Limitations and Biases
89
+
90
+ Palmyra Base’s core functionality is to take a string of text and predict the next token. While language models are widely used for other tasks, there are many unknowns in this work. When prompting Palmyra Base, keep in mind that the next statistically likely token is not always the token that produces the most "accurate" text. Never rely on Palmyra Base to produce factually correct results.
91
+
92
+ Palmyra Base was trained on Writer’s custom data. As with all language models, it is difficult to predict how Palmyra Base will respond to specific prompts, and offensive content may appear unexpectedly. We recommend that the outputs be curated or filtered by humans before they are released, both to censor undesirable content and to improve the quality of the results.
93
+
94
+
95
+ ## Evaluation results
96
+
97
+ Evaluation of Palmyra-base model on the benchmark
98
+
99
+ Coming Soon
100
+
101
+
102
+ ## Citation and Related Information
103
+
104
+
105
+ To cite this model:
106
+ ```
107
+ @misc{Camel,
108
+ author = {Writer Engineering team},
109
+ title = {{Camel-5B InstructGPT}},
110
+ howpublished = {\url{https://dev.writer.com}},
111
+ year = 2023,
112
+ month = April
113
+ }
114
  ```