Jelajahi Sumber

Fix invalid author email in setup.cfg (#287)

Alexander Borzunov 2 tahun lalu
induk
melakukan
a7d3d02194
3 mengubah file dengan 4 tambahan dan 4 penghapusan
  1. 2 2
      .github/workflows/run-tests.yaml
  2. 1 1
      README.md
  3. 1 1
      setup.cfg

+ 2 - 2
.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

+ 1 - 1
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
 
 <table align="center">
   <tr>

+ 1 - 1
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