-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from FederatedAI/dev-2.0.0
Update 2.0.0
- Loading branch information
Showing
57 changed files
with
3,721 additions
and
3,833 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Builtin PELLM Models | ||
FATE-LLM provide some builtin pellm models, users can use them simply to efficiently train their language models. | ||
To use these models, please read the using tutorial of [ChatGLM-6B Training Guide](./ChatGLM-6B_ds.ipynb). | ||
After reading the training tutorial above, it's easy to use other models listing in the following tabular by changing `module_name`, `class_name`, `dataset` list below. | ||
|
||
|
||
|
||
| Model | ModuleName | ClassName | DataSetName | | ||
| -------------- | ----------------- | --------------| --------------- | | ||
| Qwen2 | pellm.qwen | Qwen | prompt_dataset | | ||
| Bloom-7B1 | pellm.bloom | Bloom | prompt_dataset | | ||
| LLaMA-2-7B | pellm.llama | LLaMa | prompt_dataset | | ||
| LLaMA-7B | pellm.llama | LLaMa | prompt_dataset | | ||
| ChatGLM3-6B | pellm.chatglm | ChatGLM | prompt_dataset | | ||
| GPT-2 | pellm.gpt2 | GPT2 | seq_cls_dataset | | ||
| ALBERT | pellm.albert | Albert | seq_cls_dataset | | ||
| BART | pellm.bart | Bart | seq_cls_dataset | | ||
| BERT | pellm.bert | Bert | seq_cls_dataset | | ||
| DeBERTa | pellm.deberta | Deberta | seq_cls_dataset | | ||
| DistilBERT | pellm.distilbert | DistilBert | seq_cls_dataset | | ||
| RoBERTa | pellm.roberta | Roberta | seq_cls_dataset | |
Oops, something went wrong.