Text Classification
Adapters
Not-For-All-Audiences
LukasKorvas commited on
Commit
74c526b
1 Parent(s): 773c33c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -39
README.md CHANGED
@@ -1,6 +1,7 @@
1
  from adapters import AutoAdapterModel
2
 
3
  model_name = "dbmdz/bert-base-german-cased"
 
4
  model.load_adapter("LukasKorvas/German", set_active=True)---
5
  license: apache-2.0
6
  datasets:
@@ -26,51 +27,54 @@ This modelcard aims to be a base template for new models. It has been generated
26
 
27
  <!-- Provide a longer summary of what this model is. -->
28
 
 
29
 
30
 
31
- - **Developed by:** [More Information Needed]
32
- - **Funded by [optional]:** [More Information Needed]
33
- - **Shared by [optional]:** [More Information Needed]
34
- - **Model type:** [More Information Needed]
35
- - **Language(s) (NLP):** [More Information Needed]
36
- - **License:** [More Information Needed]
37
- - **Finetuned from model [optional]:** [More Information Needed]
38
 
39
  ### Model Sources [optional]
40
 
41
  <!-- Provide the basic links for the model. -->
42
 
43
- - **Repository:** [More Information Needed]
44
- - **Paper [optional]:** [More Information Needed]
45
- - **Demo [optional]:** [More Information Needed]
46
 
47
  ## Uses
48
 
49
  <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
50
 
 
 
51
  ### Direct Use
52
 
53
  <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
54
 
55
- [More Information Needed]
56
 
57
  ### Downstream Use [optional]
58
 
59
  <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
60
 
61
- [More Information Needed]
62
 
63
  ### Out-of-Scope Use
64
 
65
  <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
66
 
67
- [More Information Needed]
68
 
69
  ## Bias, Risks, and Limitations
70
 
71
  <!-- This section is meant to convey both technical and sociotechnical limitations. -->
72
 
73
- [More Information Needed]
74
 
75
  ### Recommendations
76
 
@@ -82,7 +86,7 @@ Users (both direct and downstream) should be made aware of the risks, biases and
82
 
83
  Use the code below to get started with the model.
84
 
85
- [More Information Needed]
86
 
87
  ## Training Details
88
 
@@ -90,15 +94,17 @@ Use the code below to get started with the model.
90
 
91
  <!-- 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. -->
92
 
93
- [More Information Needed]
94
 
95
  ### Training Procedure
96
 
97
  <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
98
 
 
 
99
  #### Preprocessing [optional]
100
 
101
- [More Information Needed]
102
 
103
 
104
  #### Training Hyperparameters
@@ -109,35 +115,35 @@ Use the code below to get started with the model.
109
 
110
  <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
111
 
112
- [More Information Needed]
113
 
114
  ## Evaluation
115
 
116
  <!-- This section describes the evaluation protocols and provides the results. -->
117
-
118
  ### Testing Data, Factors & Metrics
119
 
120
  #### Testing Data
121
 
122
  <!-- This should link to a Dataset Card if possible. -->
123
 
124
- [More Information Needed]
125
 
126
  #### Factors
127
 
128
  <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
129
 
130
- [More Information Needed]
131
 
132
  #### Metrics
133
 
134
  <!-- These are the evaluation metrics being used, ideally with a description of why. -->
135
 
136
- [More Information Needed]
137
 
138
  ### Results
139
 
140
- [More Information Needed]
141
 
142
  #### Summary
143
 
@@ -147,7 +153,7 @@ Use the code below to get started with the model.
147
 
148
  <!-- Relevant interpretability work for the model goes here -->
149
 
150
- [More Information Needed]
151
 
152
  ## Environmental Impact
153
 
@@ -155,29 +161,29 @@ Use the code below to get started with the model.
155
 
156
  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).
157
 
158
- - **Hardware Type:** [More Information Needed]
159
- - **Hours used:** [More Information Needed]
160
- - **Cloud Provider:** [More Information Needed]
161
- - **Compute Region:** [More Information Needed]
162
- - **Carbon Emitted:** [More Information Needed]
163
 
164
  ## Technical Specifications [optional]
165
 
166
  ### Model Architecture and Objective
167
 
168
- [More Information Needed]
169
 
170
  ### Compute Infrastructure
171
 
172
- [More Information Needed]
173
 
174
  #### Hardware
175
 
176
- [More Information Needed]
177
 
178
  #### Software
179
 
180
- [More Information Needed]
181
 
182
  ## Citation [optional]
183
 
@@ -185,26 +191,26 @@ Carbon emissions can be estimated using the [Machine Learning Impact calculator]
185
 
186
  **BibTeX:**
187
 
188
- [More Information Needed]
189
 
190
  **APA:**
191
 
192
- [More Information Needed]
193
 
194
  ## Glossary [optional]
195
 
196
  <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
197
 
198
- [More Information Needed]
199
 
200
  ## More Information [optional]
201
 
202
- [More Information Needed]
203
 
204
  ## Model Card Authors [optional]
205
 
206
- [More Information Needed]
207
 
208
  ## Model Card Contact
209
 
210
- [More Information Needed]
 
1
  from adapters import AutoAdapterModel
2
 
3
  model_name = "dbmdz/bert-base-german-cased"
4
+ model = AutoAdapterModel.from_pretrained(model_name)
5
  model.load_adapter("LukasKorvas/German", set_active=True)---
6
  license: apache-2.0
7
  datasets:
 
27
 
28
  <!-- Provide a longer summary of what this model is. -->
29
 
30
+ Tento model je prispôsobený pre úlohy spracovania prirodzeného jazyka v nemčine, ako je klasifikácia textu a generovanie konverzačného obsahu.
31
 
32
 
33
+ - **Developed by:** [Lukas]
34
+ - **Funded by [optional]:** [Korvas]
35
+ - **Shared by [optional]:** [Nemčina pre Samoukov]
36
+ - **Model type:** [text a video]
37
+ - **Language(s) (NLP):** [Slovak, German]
38
+ - **License:** [no]
39
+ - **Finetuned from model [optional]:** [no]
40
 
41
  ### Model Sources [optional]
42
 
43
  <!-- Provide the basic links for the model. -->
44
 
45
+ - **Repository:** [no]
46
+ - **Paper [optional]:** [no]
47
+ - **Demo [optional]:** [no]
48
 
49
  ## Uses
50
 
51
  <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
52
 
53
+ Tento model môže byť použitý na konverzačné AI aplikácie, učenie jazykov, automatizáciu zákazníckych služieb a podobne.
54
+
55
  ### Direct Use
56
 
57
  <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
58
 
59
+ [Learn german]
60
 
61
  ### Downstream Use [optional]
62
 
63
  <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
64
 
65
+ [try]
66
 
67
  ### Out-of-Scope Use
68
 
69
  <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
70
 
71
+ [no]
72
 
73
  ## Bias, Risks, and Limitations
74
 
75
  <!-- This section is meant to convey both technical and sociotechnical limitations. -->
76
 
77
+ [no risk]
78
 
79
  ### Recommendations
80
 
 
86
 
87
  Use the code below to get started with the model.
88
 
89
+ [zaklady nemeckého jazyka]
90
 
91
  ## Training Details
92
 
 
94
 
95
  <!-- 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. -->
96
 
97
+ [kniha nemčina pre samoukov]
98
 
99
  ### Training Procedure
100
 
101
  <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
102
 
103
+ Skúška
104
+
105
  #### Preprocessing [optional]
106
 
107
+ [book]
108
 
109
 
110
  #### Training Hyperparameters
 
115
 
116
  <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
117
 
118
+ [co to je]
119
 
120
  ## Evaluation
121
 
122
  <!-- This section describes the evaluation protocols and provides the results. -->
123
+ co to je
124
  ### Testing Data, Factors & Metrics
125
 
126
  #### Testing Data
127
 
128
  <!-- This should link to a Dataset Card if possible. -->
129
 
130
+ [co to je]
131
 
132
  #### Factors
133
 
134
  <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
135
 
136
+ [nerozumiem ti]
137
 
138
  #### Metrics
139
 
140
  <!-- These are the evaluation metrics being used, ideally with a description of why. -->
141
 
142
+ [ako na to]
143
 
144
  ### Results
145
 
146
+ [ idem skusit]
147
 
148
  #### Summary
149
 
 
153
 
154
  <!-- Relevant interpretability work for the model goes here -->
155
 
156
+ [uz to pusti]
157
 
158
  ## Environmental Impact
159
 
 
161
 
162
  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).
163
 
164
+ - **Hardware Type:** [neviem]
165
+ - **Hours used:** [dve]
166
+ - **Cloud Provider:** [ano]
167
+ - **Compute Region:** [neviem]
168
+ - **Carbon Emitted:** [asi]
169
 
170
  ## Technical Specifications [optional]
171
 
172
  ### Model Architecture and Objective
173
 
174
+ [neviem]
175
 
176
  ### Compute Infrastructure
177
 
178
+ [neviem]
179
 
180
  #### Hardware
181
 
182
+ [neviem]
183
 
184
  #### Software
185
 
186
+ [neviem]
187
 
188
  ## Citation [optional]
189
 
 
191
 
192
  **BibTeX:**
193
 
194
+ [neviem]
195
 
196
  **APA:**
197
 
198
+ [neviem]
199
 
200
  ## Glossary [optional]
201
 
202
  <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
203
 
204
+ [neviem]
205
 
206
  ## More Information [optional]
207
 
208
+ [kolko este]
209
 
210
  ## Model Card Authors [optional]
211
 
212
+ [dobre ]
213
 
214
  ## Model Card Contact
215
 
216
+ [koniec]