transformers/examples/research_projects/performer
Sylvain Gugger 6f79d26442
Update quality tooling for formatting (#21480)
* Result of black 23.1

* Update target to Python 3.7

* Switch flake8 to ruff

* Configure isort

* Configure isort

* Apply isort with line limit

* Put the right black version

* adapt black in check copies

* Fix copies
2023-02-06 18:10:56 -05:00
..
full_script.sh Adding performer fine-tuning research exampke (#9239) 2020-12-21 21:19:41 +01:00
modeling_flax_performer_utils.py Update quality tooling for formatting (#21480) 2023-02-06 18:10:56 -05:00
modeling_flax_performer.py Update quality tooling for formatting (#21480) 2023-02-06 18:10:56 -05:00
README.md Adding performer fine-tuning research exampke (#9239) 2020-12-21 21:19:41 +01:00
run_mlm_performer.py Update quality tooling for formatting (#21480) 2023-02-06 18:10:56 -05:00
sanity_script.sh Adding performer fine-tuning research exampke (#9239) 2020-12-21 21:19:41 +01:00

Performer fine-tuning

Example authors: @TevenLeScao, @Patrickvonplaten

Paper authors: Krzysztof Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane, Tamas Sarlos, Peter Hawkins, Jared Davis, Afroz Mohiuddin, Lukasz Kaiser, David Belanger, Lucy Colwell, Adrian Weller

Requirements

datasets, flax and jax. wandb integration is built-in if you want to use it.

Examples

sanity_script.sh will launch performer fine-tuning from the bert-base-cased checkpoint on the Simple Wikipedia dataset (a small, easy-language English Wikipedia) from datasets. full_script.sh will launch performer fine-tuning from the bert-large-cased checkpoint on the English Wikipedia dataset from datasets.

Here are a few key arguments:

  • Remove the --performer argument to use a standard Bert model.

  • Add --reinitialize to start from a blank model rather than a Bert checkpoint.

  • You may change the Bert size by passing a different checkpoint to the --model_name_or_path argument.

  • Passing your user name to the --wandb_user_name argument will trigger weights and biases logging.

  • You can choose a dataset with --dataset_name and --dataset_config. Our viewer will help you find what you need.