Clone your transformers fork to your local disk, and add the base repository as a remote: | |
git clone https://github.com/[your Github handle]/transformers.git | |
cd transformers | |
git remote add upstream https://github.com/huggingface/transformers.git | |
Set up a development environment, for instance by running the following command: | |
python -m venv .env | |
source .env/bin/activate | |
pip install -e ". |