model documentation

#2
by nazneen - opened
Files changed (1) hide show
  1. README.md +169 -0
README.md ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - pegasus
4
+
5
+ ---
6
+ # Model Card for pegasus-fined-tuned-on-paraphrase
7
+
8
+
9
+
10
+ # Model Details
11
+
12
+ ## Model Description
13
+
14
+
15
+ - **Developed by:** GECKOS
16
+ - **Shared by [Optional]:** More information needed
17
+ - **Model type:** Text2Text Generation
18
+ - **Language(s) (NLP):** More information needed
19
+ - **License:** More information needed
20
+ - **Related Models:**
21
+ - **Parent Model:** PEGASUS
22
+ - **Resources for more information:**
23
+ - [Associated Paper](https://arxiv.org/abs/1912.08777)
24
+ - [Model Space](https://huggingface.co/spaces/BigSalmon/Paraphrase)
25
+
26
+
27
+ # Uses
28
+
29
+
30
+ ## Direct Use
31
+
32
+ This model can be used for the task of Text2Text Generation
33
+
34
+ ## Downstream Use [Optional]
35
+
36
+ More information needed
37
+
38
+ ## Out-of-Scope Use
39
+
40
+ The model should not be used to intentionally create hostile or alienating environments for people.
41
+
42
+ # Bias, Risks, and Limitations
43
+
44
+ Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al. (2021)](https://aclanthology.org/2021.acl-long.330.pdf) and [Bender et al. (2021)](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups.
45
+
46
+
47
+ ## Recommendations
48
+
49
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
50
+
51
+
52
+ # Training Details
53
+
54
+ ## Training Data
55
+
56
+ More information needed
57
+
58
+ ## Training Procedure
59
+
60
+
61
+ ### Preprocessing
62
+
63
+ More information needed
64
+
65
+ ### Speeds, Sizes, Times
66
+
67
+ More information needed
68
+
69
+ # Evaluation
70
+
71
+
72
+ ## Testing Data, Factors & Metrics
73
+
74
+ ### Testing Data
75
+
76
+ More information needed
77
+
78
+ ### Factors
79
+
80
+
81
+ ### Metrics
82
+
83
+ More information needed
84
+ ## Results
85
+
86
+ More information needed
87
+
88
+ # Model Examination
89
+
90
+ More information needed
91
+
92
+ # Environmental Impact
93
+
94
+
95
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
96
+
97
+ - **Hardware Type:** More information needed
98
+ - **Hours used:** More information needed
99
+ - **Cloud Provider:** More information needed
100
+ - **Compute Region:** More information needed
101
+ - **Carbon Emitted:** More information needed
102
+
103
+ # Technical Specifications [optional]
104
+
105
+ ## Model Architecture and Objective
106
+
107
+ More information needed
108
+
109
+ ## Compute Infrastructure
110
+
111
+ More information needed
112
+
113
+ ### Hardware
114
+
115
+ More information needed
116
+
117
+ ### Software
118
+ More information needed
119
+
120
+ # Citation
121
+
122
+
123
+ **BibTeX:**
124
+ ```
125
+ @misc{zhang2019pegasus,
126
+ title={PEGASUS: Pre-training with Extracted Gap-sentences for Abstractive Summarization},
127
+ author={Jingqing Zhang and Yao Zhao and Mohammad Saleh and Peter J. Liu},
128
+ year={2019},
129
+ eprint={1912.08777},
130
+ archivePrefix={arXiv},
131
+ primaryClass={cs.CL}
132
+ }
133
+
134
+ ```
135
+
136
+
137
+ # Glossary [optional]
138
+ More information needed
139
+
140
+ # More Information [optional]
141
+
142
+ More information needed
143
+
144
+ # Model Card Authors [optional]
145
+
146
+
147
+ GECKOS in collaboration with Ezi Ozoani and the Hugging Face team
148
+
149
+ # Model Card Contact
150
+
151
+ More information needed
152
+
153
+ # How to Get Started with the Model
154
+
155
+ Use the code below to get started with the model.
156
+
157
+ <details>
158
+ <summary> Click to expand </summary>
159
+
160
+ ```python
161
+ from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
162
+
163
+ tokenizer = AutoTokenizer.from_pretrained("geckos/pegasus-fined-tuned-on-paraphrase")
164
+
165
+ model = AutoModelForSeq2SeqLM.from_pretrained("geckos/pegasus-fined-tuned-on-paraphrase")
166
+
167
+ ```
168
+ </details>
169
+