--- language: - en datasets: - English tags: - text generation - pytorch - causal-lm - Writer-data - gpt - NeMo pipeline_tag: text-generation library_name: transformers --- license: cc-by-4.0 # Palmyra Large 20B |[![Model architecture](https://img.shields.io/badge/Model%20Arch-Transformer%20Decoder-green)](#model-architecture)|[![Model size](https://img.shields.io/badge/Params-20B-green)](#model-architecture)|[![Language](https://img.shields.io/badge/Language-en--US-lightgrey#model-badge)](#datasets) ## Model Description Palmyra Large 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 Large 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 Large uses the prompts and general experimental setup from GPT-3 in order to conduct its evaluation per GPT-3. ### Use case Palmyra Large is extremely powerful while being extremely fast. This model excels at many nuanced tasks such as sentiment classification and summarization. ## Training data Palmyra Large (20b) was trained on Writer’s custom dataset. ## Intended Use and Limitations Palmyra Large 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. ### How to use This model can be easily loaded using the `AutoModelForCausalLM` functionality: ```python import os from transformers import AutoModelForCausalLM, AutoTokenizer # set HF environment variable auth_token = os.environ.get("HF_TOKEN", True) model = AutoModelForCausalLM.from_pretrained( "Writer/palmyra-large", device_map="auto", torch_dtype=torch.float16, use_auth_token=auth_token, ) tokenizer = AutoTokenizer.from_pretrained( "Writer/palmyra-large", use_auth_token=auth_token ) ``` ### Limitations and Biases Palmyra Large’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 Large, keep in mind that the next statistically likely token is not always the token that produces the most "accurate" text. Never rely on Palmyra Large to produce factually correct results. Palmyra Large was trained on Writer’s custom data. As with all language models, it is difficult to predict how Palmyra Large 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. ## Citation and Related Information To cite this model: ``` @misc{Palmyra, author = {Writer Engineering team}, title = {{Palmyra-Large Parameter Autoregressive Language Model}}, howpublished = {\url{https://dev.writer.com}}, year = 2023, month = March } ```