Commit Graph

89 Commits

Author SHA1 Message Date
Alexander Borzunov
5c0b4286b2
Suggest commands for Docker first (#304) 2023-04-13 00:00:35 +04:00
Alexander Borzunov
a7d3d02194
Fix invalid author email in setup.cfg (#287) 2023-03-13 06:21:09 +04:00
Alexander Borzunov
8dab37c1a9
Add benchmarks to readme (#284) 2023-03-13 05:55:27 +04:00
Alexander Borzunov
42594e5173
Link FAQ in readme (#260) 2023-02-17 07:54:02 +04:00
Alexander Borzunov
5d7395e1b5
Prompt-tuning notebooks: suggest to use a smaller model for faster prototyping (#234) 2023-01-24 10:01:31 +04:00
Muhtasham Oblokulov
0ebf6de117
Add citation to readme (#219)
Co-authored-by: Alexander Borzunov <borzunov.alexander@gmail.com>
2023-01-21 07:05:41 +04:00
Alexander Borzunov
fa5ac6e3b4
Mention BLOOMZ in readme (#221) 2023-01-18 03:23:21 +04:00
Alexander Borzunov
e651d73f11
Add one more link to the "Getting started" tutorial (#218)
Some people miss the "Try now in Colab" link or don't understand that it leads to the comprehensive tutorial, so I added one more explicit link.
2023-01-16 04:35:06 +04:00
Alexander Borzunov
37373a66c3 Update Anaconda installation commands (#205) 2023-01-11 21:45:54 +00:00
Alexander Borzunov
391c855208
Add readme subsections (#185) 2023-01-08 09:59:07 +04:00
Alexander Borzunov
f344c7801b
Add link to health.petals.ml to readme (#184) 2023-01-08 08:41:47 +04:00
Alexander Borzunov
27406a9377
Add more links to BLOOM to readme (#183) 2023-01-07 10:48:51 +04:00
Alexander Borzunov
e27706358c
Use slightly less memory in .generate() (#177) 2023-01-05 09:34:03 +04:00
Alexander Borzunov
356e099c3d
Make Docker command more visible (#175) 2023-01-04 02:18:45 +04:00
Alexander Borzunov
779959bc70
Add link to PyPI (#173) 2022-12-31 02:51:52 +04:00
Alexander Borzunov
cdc3b6a25a
Add PyPI badge, update instructions and links in readme (#172) 2022-12-31 02:22:40 +04:00
justheuristic
4014442a0f
Fix instruction for developers (#170) 2022-12-30 23:42:07 +04:00
Alexander Borzunov
26e6120288
Fix code example in readme (#169)
Makes it closer to runnable code, except for imports and defining tokenizer & data loader.
2022-12-30 19:50:38 +04:00
Alexander Borzunov
0b0277ed6f
Add link to chat.petals.ml (#168) 2022-12-30 07:58:33 +04:00
Vadim Peretokin
50fb8205de
Correct grammar in readme (#166) 2022-12-29 16:46:23 +03:00
Alexander Borzunov
714da529e6
Update wording in readme (#165) 2022-12-27 02:40:36 +04:00
Alexander Borzunov
523a7cad33
Fix issues related to petals as a module (#159)
1. Added `from petals.client import *` to `petals/__init__.py`, so you can write just that:

    ```python
    from petals import DistributedBloomForCausalLM
    ```

    I didn't do the same with server, since its classes are supposed to by used by `petals.cli.run_server`, not end-users. Though it's still possible to do `from petals.server.smth import smth` if necessary.

2. Fixed one more logging issue: log lines from hivemind were shown twice due to a bug in #156.

3. Removed unused `runtime.py`, since the server actually uses `hivemind.moe.Runtime`, and `runtime.py` has no significant changes comparing to it.
2022-12-16 09:09:06 +04:00
Aleksandr Borzunov
f42e559c77 Update README.md 2022-12-09 17:54:00 +00:00
Alexander Borzunov
6beb686909
Add link to privacy & security Wiki (#144) 2022-12-09 21:40:29 +04:00
Alexander Borzunov
e99bf36647
Use common folder for all caches, make it a volume in Dockerfile (#141) 2022-12-09 03:54:57 +04:00
Alexander Borzunov
5f50ea9c79
Update Anaconda instructions (#140) 2022-12-09 01:16:33 +04:00
Alexander Borzunov
4cb0ac4718
Update texts in "Terms of use" and "Privacy and security" sections (#138) 2022-12-08 04:41:02 +04:00
Alexander Borzunov
a94c91d870
Add Docker commands, use permanent Discord links (#137) 2022-12-08 01:54:22 +04:00
Alexander Borzunov
66f1799d32
Set default --step_timeout to 5 min (#133) 2022-12-05 13:44:18 +04:00
Alexander Borzunov
b873d92ffa
Update README.md 2022-12-04 22:48:51 +04:00
Alexander Borzunov
5d5d2666b8
Mention parallel inference 2022-12-04 22:48:32 +04:00
Alexander Borzunov
955eae30b3
Mention 1 sec/token explicitly 2022-12-04 22:10:15 +04:00
Alexander Borzunov
33c210b973
Update Colab notebook 2022-12-03 20:38:18 +04:00
Max Ryabinin
3ca8b4f082
Fix typos with codespell (#126) 2022-12-03 14:19:37 +03:00
Alexander Borzunov
d29ef70c85
Update README.md 2022-12-03 01:14:02 +04:00
Alexander Borzunov
1d9aa77697
Update README.md 2022-12-03 00:46:52 +04:00
Alexander Borzunov
da36470a4b
Update README.md 2022-12-03 00:46:08 +04:00
Alexander Borzunov
81b94df14b
Rework readme, move code example to the top, link draft of Colab (#118) 2022-12-03 00:17:57 +04:00
Alexander Borzunov
7bd5916744
Make Petals a pip-installable package (attempt 2) (#102)
1. Petals can be now installed using `pip install git+https://github.com/bigscience-workshop/petals`
    - In case if you already cloned the repo, you can do `pip install .` or `pip install .[dev]`
2. Moved `src` => `src/petals`
    - Replaced `from src.smth import smth` with `from petals.smth import smth`
3. Moved `cli` => `src/petals/cli`
    - Replaced `python -m cli.run_smth` with `python -m petals.cli.run_smth` (all utilities are now available right after pip installation)
4. Moved the `requirements*.txt` contents to `setup.cfg` (`requirements.txt` for packages is not supported well by modern packaging utils)
5. Increased the package version from `0.2` to `1.0alpha1`
2022-11-30 10:41:13 +04:00
Alexander Borzunov
0c3781a89c
Shorten bullet points in readme 2022-11-30 07:20:27 +04:00
Alexander Borzunov
898f614515
Fix floating point issues in block_selection.py (#89) 2022-11-25 02:17:59 +04:00
Alexander Borzunov
c07a7e0812
Add "Terms of Use" 2022-11-21 18:54:07 +04:00
Artem Chumachenko
0d9c7de0bd
Add sst-2 ipynb example (#86)
- Add sst-2 example of a prompt-based training
- Have some enhancement in the persona-chat example
2022-11-07 13:55:00 +04:00
Alexander Borzunov
640bbc38a9
Make even smaller readability changes 2022-09-20 15:03:57 +04:00
Alexander Borzunov
d1b012b479
Make small readability & style changes to the instructions (#77) 2022-09-20 15:00:59 +04:00
justheuristic
fef48d7d99
Use bitsandbytes==0.34.0, update readme (#76)
* unlock bnb backward
* Fix bnb version in README
* Update requirements.txt
2022-09-20 13:07:34 +03:00
justheuristic
8caf1145a8
Quality of life changes: update readme, simplify run_server interface (#75)
- run_server now accepts model name as both positional and keyword argument
- changed names in README to account for interface updates
- moved model conversion from README to a separate wiki page
- updated requirements.txt
2022-09-20 03:51:57 +03:00
Alexander Borzunov
54ad745bed
Warn that current instructions involve 6B model but we will replace them soon (#63) 2022-09-05 15:05:59 +04:00
Alexander Borzunov
5f0c5329d4
Update readme with arxiv link and more discussions (#62)
Co-authored-by: justheuristic <justheuristic@gmail.com>
2022-09-05 12:04:50 +04:00
Alexander Borzunov
9bea7b9ea8
Update bullet points with feedback from Tim and other people (#61)
Co-authored-by: Tim Dettmers <tim.dettmers@gmail.com>
2022-09-03 06:38:18 +04:00