Text Generation
Transformers
PyTorch
English
gptj
mike-conover-db commited on
Commit
0e76388
·
1 Parent(s): 61a4e86

Updating Model Card

Browse files
Files changed (1) hide show
  1. README.md +4 -6
README.md CHANGED
@@ -17,7 +17,7 @@ artificial intelligence technologies is vastly more accessible than previously r
17
 
18
  Databricks is committed to ensuring that every organization and individual benefits from the transformative power of artificial intelligence. The Dolly model family represents our first steps along this journey, and we’re excited to share this technology with the world.
19
 
20
- ***Version**: `dolly-v1-6b` **Owner**: Databricks, Inc.*
21
 
22
  ## Model Overview
23
  `dolly-v1-6b` is a 6 billion parameter causal language model created by [Databricks](https://databricks.com/) that is derived from
@@ -57,7 +57,7 @@ Databricks is committed to ongoing research and development efforts to develop h
57
  maximize the potential of all individuals and organizations.
58
 
59
  ## Intended Uses
60
- **`dolly-v1-6b` is intended exclusively for research purposes. We do not recommend using dolly-6b in high-risk applications
61
  (e.g., educational or vocational training, product safety components, or other uses that may impact the well-being of individuals.)**
62
 
63
  `dolly-v1-6b` is differentiated from its predecessor, GPT-J, in the extent to which it exhibits coherent responses to natural language
@@ -136,10 +136,8 @@ from transformers import (
136
  PreTrainedTokenizer
137
  )
138
 
139
- tokenizer = AutoTokenizer.from_pretrained("TODO_name_of_model", padding_side="left")
140
- model = AutoModelForCausalLM.from_pretrained(
141
- pretrained_model_name_or_path, device_map="auto", trust_remote_code=True
142
- )
143
  ```
144
 
145
  ### Generate Text
 
17
 
18
  Databricks is committed to ensuring that every organization and individual benefits from the transformative power of artificial intelligence. The Dolly model family represents our first steps along this journey, and we’re excited to share this technology with the world.
19
 
20
+ **Owner**: Databricks, Inc.
21
 
22
  ## Model Overview
23
  `dolly-v1-6b` is a 6 billion parameter causal language model created by [Databricks](https://databricks.com/) that is derived from
 
57
  maximize the potential of all individuals and organizations.
58
 
59
  ## Intended Uses
60
+ **`dolly-v1-6b` is intended exclusively for research purposes. We do not recommend using `dolly-v1-6b` in high-risk applications
61
  (e.g., educational or vocational training, product safety components, or other uses that may impact the well-being of individuals.)**
62
 
63
  `dolly-v1-6b` is differentiated from its predecessor, GPT-J, in the extent to which it exhibits coherent responses to natural language
 
136
  PreTrainedTokenizer
137
  )
138
 
139
+ tokenizer = AutoTokenizer.from_pretrained("databricks/dolly-v1-6b", padding_side="left")
140
+ model = AutoModelForCausalLM.from_pretrained("databricks/dolly-v1-6b", device_map="auto", trust_remote_code=True)
 
 
141
  ```
142
 
143
  ### Generate Text