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

pull/292/head
Alexander Borzunov 1 year ago committed by GitHub
parent 8dab37c1a9
commit a7d3d02194
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

@ -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>

@ -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

Loading…
Cancel
Save