|
39 | 39 | ("bart", "BartModel"), |
40 | 40 | ("camembert", "CamembertModel"), |
41 | 41 | ("mvp", "MvpModel"), |
| 42 | + ("convbert", "ConvBertModel"), |
42 | 43 | ("bit", "BitModel"), |
43 | 44 | ("blip", "BlipModel"), |
44 | 45 | ("blip-2", "Blip2Model"), |
|
143 | 144 | ("bert", "BertForMaskedLM"), |
144 | 145 | ("deberta", "DebertaForMaskedLM"), |
145 | 146 | ("deberta-v2", "DebertaV2ForMaskedLM"), |
| 147 | + ("convbert", "ConvBertForMaskedLM"), |
146 | 148 | ("gpt2", "GPT2LMHeadModel"), |
147 | 149 | ("led", "LEDForConditionalGeneration"), |
148 | 150 | ("camembert", "CamembertForMaskedLM"), |
|
285 | 287 | ("mvp", "MvpForConditionalGeneration"), |
286 | 288 | ("albert", "AlbertForMaskedLM"), |
287 | 289 | ("bart", "BartForConditionalGeneration"), |
| 290 | + ("convbert", "ConvBertForMaskedLM"), |
288 | 291 | ("bert", "BertForMaskedLM"), |
289 | 292 | ("roberta", "RobertaForMaskedLM"), |
290 | 293 | ("camembert", "CamembertForMaskedLM"), |
|
371 | 374 | ("llama", "LlamaForSequenceClassification"), |
372 | 375 | ("persimmon", "PersimmonForSequenceClassification"), |
373 | 376 | ("mobilebert", "MobileBertForSequenceClassification"), |
| 377 | + ("convbert", "ConvBertForSequenceClassification"), |
374 | 378 | ("mt5", "MT5ForSequenceClassification"), |
375 | 379 | ("megatron-bert", "MegatronBertForSequenceClassification"), |
376 | 380 | ("mistral", "MistralForSequenceClassification"), |
|
398 | 402 | ("deberta", "DebertaForQuestionAnswering"), |
399 | 403 | ("deberta-v2", "DebertaV2ForQuestionAnswering"), |
400 | 404 | ("led", "LEDForQuestionAnswering"), |
| 405 | + ("convbert", "ConvBertForQuestionAnswering"), |
401 | 406 | ("llama", "LlamaForQuestionAnswering"), |
402 | 407 | ("mobilebert", "MobileBertForQuestionAnswering"), |
403 | 408 | ("megatron-bert", "MegatronBertForQuestionAnswering"), |
|
446 | 451 | ("qwen2", "Qwen2ForTokenClassification"), |
447 | 452 | ("roberta", "RobertaForTokenClassification"), |
448 | 453 | ("rembert", "RemBertForTokenClassification"), |
| 454 | + ("convbert", "ConvBertForTokenClassification"), |
449 | 455 | ("t5", "T5ForTokenClassification"), |
450 | 456 | ("umt5", "UMT5ForTokenClassification"), |
451 | 457 | ("xlm-roberta", "XLMRobertaForTokenClassification"), |
|
458 | 464 | # Model for Multiple Choice mapping |
459 | 465 | ("camembert", "CamembertForMultipleChoice"), |
460 | 466 | ("albert", "AlbertForMultipleChoice"), |
| 467 | + ("convbert", "ConvBertForMultipleChoice"), |
461 | 468 | ("bert", "BertForMultipleChoice"), |
462 | 469 | ("roberta", "RobertaForMultipleChoice"), |
463 | 470 | ("deberta-v2", "DebertaV2ForMultipleChoice"), |
|
0 commit comments