Missing examples in transformers/examples/language-modeling

Hi,

I have been using the scripts in transformers/examples/language-modeling like run_clm.py and run_clm_no_trainer.py in my project but they’re all gone since yesterday, instead there’s only a run_mlm_flax.py in transformers/examples/flax/language-modeling transformer now. Did anything went wrong, or were the example scripts wrong so they’re taken down? If the examples are wrong I need to fix my code too.

Thank you!

The examples have moved in backend-specific folders, so the ones you are looking for are in transformers/examples/pytorch/language-modeling.

Ah, thank you!