-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7c4530
commit 841e296
Showing
2 changed files
with
35 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,23 @@ | ||
Документация проекта `impruver` | ||
# Impruver | ||
|
||
Набор скриптов и конфигураций для самостоятельного обучения Больших Языковых Моделей (БЯМ) или же на английском Large | ||
Language Models (LLM). | ||
|
||
Вдохновлён проектами: [saiga](https://github.com/IlyaGusev/saiga), | ||
[torchtune](https://github.com/pytorch/torchtune), | ||
[nanoGPT](https://github.com/karpathy/nanoGPT). | ||
|
||
Обладает следующими возможностями: | ||
|
||
- Единая конфигурация для подготовки датасетов, запуска обучения и инференса в формате YAML | ||
- Возможно указать отдельно токенизатор и модель | ||
- При необходимости можно описать конфигурацию модели from scratch | ||
- Гибкая система подготовки датасетов, позволяющая скомбинировать несколько датасетов, каждый из них индивидуально | ||
нарезать и преобразовать, после чего выполнить слияние и дедупликацию | ||
- Можно использовать датасеты типа `instruct` или `chat` произвольного формата, система преобразует их в | ||
OpenAI-подобный chat типа messages | ||
- Можно обучать function call модели с ролями function_call и function_response | ||
- Предусмотрены возможности обучения моделей с нуля (from scratch), full-train дообучения и LoRA/Peft дообучения | ||
- В отличие от иных реализаций использует классы из пакета `transformers`, однако, можно указать путь до любого другого | ||
класса описывающего модель и/или токенизатор и `impruver` будет использовать уже их | ||
- Поддерживает возможность распределённого обучения при помощи `accelerate` |