nazneen commited on
Commit
c82594c
1 Parent(s): ff14521

model documentation

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