wassemgtk commited on
Commit
73a63c5
1 Parent(s): aa0d877

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -11
README.md CHANGED
@@ -29,16 +29,19 @@ img {
29
 
30
  ## Model Description
31
 
32
- Palmyra was primarily pretrained with English text, 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 is a member of the same family of models that only contain a decoder. As a result, it was pretrained utilizing the objective of self-supervised causal language modeling. Palmyra uses the prompts and general experimental setup from GPT-3 in order to conduct its evaluation in accordance with GPT-3. Read the official paper if you want more information about this.
 
 
 
33
 
34
 
35
  ## Training data
36
 
37
- Palmyra-small 128M was trained on Writer custom dataset
38
 
39
  ## Intended Use and Limitations
40
 
41
- Palmyra-small learns an inner representation of the English language that can be used to extract features useful for downstream tasks. The model is best at what it was pretrained for however, which is generating text from a prompt.
42
 
43
  ### How to use
44
 
@@ -59,15 +62,9 @@ tokenizer = AutoTokenizer.from_pretrained("Writer/palmyra-small", use_fast=False
59
 
60
  ### Limitations and Biases
61
 
62
- Palmyra'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, keep in mind that the statistically most likely next token is not always the token that produces the most "accurate" text. Never rely on Palmyra to produce factually correct results.
63
-
64
- Palmyra was trained on Writer custom data. As with all language models, it is difficult to predict how Palmyra 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.
65
-
66
- ## Use case
67
- The fastest model and can perform tasks such as text parsing, address correction, and certain types of classification tasks that do not require a lot of nuance. More context can frequently improve Palmyra-small performance.
68
-
69
- Good at: Text parsing, simple classification, and keyword recognition are all strengths.
70
 
 
71
 
72
 
73
  ## Citation and Related Information
 
29
 
30
  ## Model Description
31
 
32
+ Palmyra Small 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 Small 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 Small uses the prompts and general experimental setup from GPT-3 in order to conduct its evaluation per GPT-3.
33
+
34
+ ## Use case
35
+ Palmyra Small is the fastest of Writer’s LLMs and can perform important tasks such as text parsing, simple classification, address correction, and keyword recognition. Providing more context drives even better performance.
36
 
37
 
38
  ## Training data
39
 
40
+ Palmyra Small (128M) was trained on Writer’s custom dataset.
41
 
42
  ## Intended Use and Limitations
43
 
44
+ Palmyra Small learns an inner representation of the English language that can be used to extract features useful for downstream tasks. However, the model is best at what it was pre-trained for which is generating text from a prompt.
45
 
46
  ### How to use
47
 
 
62
 
63
  ### Limitations and Biases
64
 
65
+ Palmyra Small’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, keep in mind that the next statistically likely token is not always the token that produces the most "accurate" text. Never rely on Palmyra Small to produce factually correct results.
 
 
 
 
 
 
 
66
 
67
+ Palmyra Small was trained on Writer’s custom data. As with all language models, it is difficult to predict how Palmyra Small 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.
68
 
69
 
70
  ## Citation and Related Information