From a7d3d021948409c71f95f7c8df33237fa6283a8f Mon Sep 17 00:00:00 2001 From: Alexander Borzunov Date: Mon, 13 Mar 2023 06:21:09 +0400 Subject: [PATCH] Fix invalid author email in setup.cfg (#287) --- .github/workflows/run-tests.yaml | 4 ++-- README.md | 2 +- setup.cfg | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index c1a01e8..5e71dba 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -18,7 +18,7 @@ jobs: id: cache-model uses: actions/cache@v3 with: - path: ~/.dummy + path: ~/converted_ok key: model-v1-${{ hashFiles('setup.cfg', 'src/petals/cli/convert_model.py') }} - name: Set up Python if: steps.cache-model.outputs.cache-hit != 'true' @@ -52,7 +52,7 @@ jobs: export HF_TAG=${{ hashFiles('setup.cfg', 'src/petals/cli/convert_model.py') }} python -m petals.cli.convert_model --model bigscience/bloom-560m --output_path ./converted_model \ --output_repo bloom-testing/test-bloomd-560m-$HF_TAG --use_auth_token $BLOOM_TESTING_WRITE_TOKEN \ - --resize_token_embeddings 50000 + --resize_token_embeddings 50000 && touch ~/converted_ok run-tests: runs-on: ubuntu-latest diff --git a/README.md b/README.md index 182be65..15e27ce 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ If you don't use Anaconda, you can install PyTorch in [any other way](https://py See the instructions for macOS and Windows, the full requirements, and troubleshooting advice in our [FAQ](https://github.com/bigscience-workshop/petals/wiki/FAQ:-Frequently-asked-questions#running-a-client). -## ⏱️ Benchmarks +## Benchmarks diff --git a/setup.cfg b/setup.cfg index a05ae6b..03335a2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ name = petals version = attr: petals.__version__ author = Petals Developers -author_email = petals-dev@googlegroups.com +author_email = petals-devs@googlegroups.com description = Easy way to efficiently run 100B+ language models without high-end GPUs long_description = file: README.md long_description_content_type = text/markdown