"vscode:/vscode.git/clone" did not exist on "f4a0d6ff867e8a82a33d7a653e7d45372a463271"
Commit ce2f4227 authored by Lysandre's avatar Lysandre Committed by Lysandre Debut
Browse files

Fix failing FlauBERT test

parent f0a4fc6c
...@@ -68,6 +68,7 @@ CONFIG_MAPPING = OrderedDict( ...@@ -68,6 +68,7 @@ CONFIG_MAPPING = OrderedDict(
("camembert", CamembertConfig,), ("camembert", CamembertConfig,),
("xlm-roberta", XLMRobertaConfig,), ("xlm-roberta", XLMRobertaConfig,),
("roberta", RobertaConfig,), ("roberta", RobertaConfig,),
("flaubert", FlaubertConfig,),
("bert", BertConfig,), ("bert", BertConfig,),
("openai-gpt", OpenAIGPTConfig,), ("openai-gpt", OpenAIGPTConfig,),
("gpt2", GPT2Config,), ("gpt2", GPT2Config,),
...@@ -75,7 +76,6 @@ CONFIG_MAPPING = OrderedDict( ...@@ -75,7 +76,6 @@ CONFIG_MAPPING = OrderedDict(
("xlnet", XLNetConfig,), ("xlnet", XLNetConfig,),
("xlm", XLMConfig,), ("xlm", XLMConfig,),
("ctrl", CTRLConfig,), ("ctrl", CTRLConfig,),
("flaubert", FlaubertConfig,),
] ]
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment