LuoYiSULIXAY commited on
Commit
697e7ab
·
verified ·
1 Parent(s): c0461ed

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -191
README.md CHANGED
@@ -55,194 +55,4 @@ with torch.no_grad():
55
  # Decode
56
  predicted_ids = torch.argmax(logits, dim=-1)
57
  transcription = processor.batch_decode(predicted_ids)
58
-
59
-
60
-
61
- ## Model Details
62
-
63
- ### Model Description
64
-
65
- <!-- Provide a longer summary of what this model is. -->
66
-
67
- This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
68
-
69
- - **Developed by:** [More Information Needed]
70
- - **Funded by [optional]:** [More Information Needed]
71
- - **Shared by [optional]:** [More Information Needed]
72
- - **Model type:** [More Information Needed]
73
- - **Language(s) (NLP):** [More Information Needed]
74
- - **License:** [More Information Needed]
75
- - **Finetuned from model [optional]:** [More Information Needed]
76
-
77
- ### Model Sources [optional]
78
-
79
- <!-- Provide the basic links for the model. -->
80
-
81
- - **Repository:** [More Information Needed]
82
- - **Paper [optional]:** [More Information Needed]
83
- - **Demo [optional]:** [More Information Needed]
84
-
85
- ## Uses
86
-
87
- <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
88
-
89
- ### Direct Use
90
-
91
- <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
92
-
93
- [More Information Needed]
94
-
95
- ### Downstream Use [optional]
96
-
97
- <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
98
-
99
- [More Information Needed]
100
-
101
- ### Out-of-Scope Use
102
-
103
- <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
104
-
105
- [More Information Needed]
106
-
107
- ## Bias, Risks, and Limitations
108
-
109
- <!-- This section is meant to convey both technical and sociotechnical limitations. -->
110
-
111
- [More Information Needed]
112
-
113
- ### Recommendations
114
-
115
- <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
116
-
117
- Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
118
-
119
- ## How to Get Started with the Model
120
-
121
- Use the code below to get started with the model.
122
-
123
- [More Information Needed]
124
-
125
- ## Training Details
126
-
127
- ### Training Data
128
-
129
- <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
130
-
131
- [More Information Needed]
132
-
133
- ### Training Procedure
134
-
135
- <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
136
-
137
- #### Preprocessing [optional]
138
-
139
- [More Information Needed]
140
-
141
-
142
- #### Training Hyperparameters
143
-
144
- - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
145
-
146
- #### Speeds, Sizes, Times [optional]
147
-
148
- <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
149
-
150
- [More Information Needed]
151
-
152
- ## Evaluation
153
-
154
- <!-- This section describes the evaluation protocols and provides the results. -->
155
-
156
- ### Testing Data, Factors & Metrics
157
-
158
- #### Testing Data
159
-
160
- <!-- This should link to a Dataset Card if possible. -->
161
-
162
- [More Information Needed]
163
-
164
- #### Factors
165
-
166
- <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
167
-
168
- [More Information Needed]
169
-
170
- #### Metrics
171
-
172
- <!-- These are the evaluation metrics being used, ideally with a description of why. -->
173
-
174
- [More Information Needed]
175
-
176
- ### Results
177
-
178
- [More Information Needed]
179
-
180
- #### Summary
181
-
182
-
183
-
184
- ## Model Examination [optional]
185
-
186
- <!-- Relevant interpretability work for the model goes here -->
187
-
188
- [More Information Needed]
189
-
190
- ## Environmental Impact
191
-
192
- <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
193
-
194
- 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).
195
-
196
- - **Hardware Type:** [More Information Needed]
197
- - **Hours used:** [More Information Needed]
198
- - **Cloud Provider:** [More Information Needed]
199
- - **Compute Region:** [More Information Needed]
200
- - **Carbon Emitted:** [More Information Needed]
201
-
202
- ## Technical Specifications [optional]
203
-
204
- ### Model Architecture and Objective
205
-
206
- [More Information Needed]
207
-
208
- ### Compute Infrastructure
209
-
210
- [More Information Needed]
211
-
212
- #### Hardware
213
-
214
- [More Information Needed]
215
-
216
- #### Software
217
-
218
- [More Information Needed]
219
-
220
- ## Citation [optional]
221
-
222
- <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
223
-
224
- **BibTeX:**
225
-
226
- [More Information Needed]
227
-
228
- **APA:**
229
-
230
- [More Information Needed]
231
-
232
- ## Glossary [optional]
233
-
234
- <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
235
-
236
- [More Information Needed]
237
-
238
- ## More Information [optional]
239
-
240
- [More Information Needed]
241
-
242
- ## Model Card Authors [optional]
243
-
244
- [More Information Needed]
245
-
246
- ## Model Card Contact
247
-
248
- [More Information Needed]
 
55
  # Decode
56
  predicted_ids = torch.argmax(logits, dim=-1)
57
  transcription = processor.batch_decode(predicted_ids)
58
+ ```