model documentation

#1
by nazneen - opened
Files changed (1) hide show
  1. README.md +169 -0
README.md ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - question-answering
4
+ - bert
5
+ ---
6
+
7
+ # Model Card for qa_financial_v2
8
+
9
+ # Model Details
10
+
11
+ ## Model Description
12
+
13
+ More information needed
14
+
15
+ - **Developed by:** Ana Blasi
16
+ - **Shared by [Optional]:** Ana Blasi
17
+ - **Model type:** Question Answering
18
+ - **Language(s) (NLP):** More information needed
19
+ - **License:** More information needed
20
+ - **Parent Model:** BERT
21
+ - **Resources for more information:** More information needed
22
+
23
+
24
+ # Uses
25
+
26
+
27
+ ## Direct Use
28
+ This model can be used for the task of question answering.
29
+
30
+ ## Downstream Use [Optional]
31
+
32
+ More information needed.
33
+
34
+ ## Out-of-Scope Use
35
+
36
+ The model should not be used to intentionally create hostile or alienating environments for people.
37
+
38
+ # Bias, Risks, and Limitations
39
+
40
+
41
+ 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.
42
+
43
+
44
+
45
+ ## Recommendations
46
+
47
+
48
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
49
+
50
+ # Training Details
51
+
52
+ ## Training Data
53
+
54
+ More information needed
55
+
56
+ ## Training Procedure
57
+
58
+
59
+ ### Preprocessing
60
+
61
+ More information needed
62
+
63
+
64
+
65
+ ### Speeds, Sizes, Times
66
+
67
+ More information needed
68
+
69
+
70
+
71
+ # Evaluation
72
+
73
+
74
+ ## Testing Data, Factors & Metrics
75
+
76
+ ### Testing Data
77
+
78
+ More information needed
79
+
80
+ ### Factors
81
+ More information needed
82
+
83
+ ### Metrics
84
+
85
+ More information needed
86
+
87
+
88
+ ## Results
89
+
90
+ More information needed
91
+
92
+
93
+ # Model Examination
94
+
95
+ More information needed
96
+
97
+ # Environmental Impact
98
+
99
+ 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).
100
+
101
+ - **Hardware Type:** More information needed
102
+ - **Hours used:** More information needed
103
+ - **Cloud Provider:** More information needed
104
+ - **Compute Region:** More information needed
105
+ - **Carbon Emitted:** More information needed
106
+
107
+ # Technical Specifications [optional]
108
+
109
+ ## Model Architecture and Objective
110
+
111
+ More information needed
112
+
113
+ ## Compute Infrastructure
114
+
115
+ More information needed
116
+
117
+ ### Hardware
118
+
119
+
120
+ More information needed
121
+
122
+ ### Software
123
+
124
+ More information needed.
125
+
126
+ # Citation
127
+
128
+
129
+ **BibTeX:**
130
+
131
+ More information needed
132
+
133
+
134
+
135
+
136
+ **APA:**
137
+
138
+ More information needed
139
+
140
+ # Glossary [optional]
141
+
142
+ More information needed
143
+
144
+ # More Information [optional]
145
+ More information needed
146
+
147
+ # Model Card Authors [optional]
148
+
149
+ Ana Blasi in collaboration with Ezi Ozoani and the Hugging Face team
150
+
151
+ # Model Card Contact
152
+
153
+ More information needed
154
+
155
+ # How to Get Started with the Model
156
+
157
+ Use the code below to get started with the model.
158
+
159
+ <details>
160
+ <summary> Click to expand </summary>
161
+
162
+ ```python
163
+ from transformers import AutoTokenizer, AutoModelForQuestionAnswering
164
+
165
+ tokenizer = AutoTokenizer.from_pretrained("anablasi/qa_financial_v2")
166
+
167
+ model = AutoModelForQuestionAnswering.from_pretrained("anablasi/qa_financial_v2")
168
+ ```
169
+ </details>