MiniGPT-4/MiniGPTv2_Train.md

25 lines
1.0 KiB
Markdown
Raw Normal View History

2023-10-25 04:52:44 +00:00
## Finetune of MiniGPT-4
2023-10-25 05:30:47 +00:00
You firstly need to prepare the dataset. you can follow this step to prepare the dataset.
our [dataset preparation](dataset/README_MINIGPTv2_FINETUNE.md).
2023-10-25 05:36:31 +00:00
In the train_configs/minigptv2_finetune.yaml, you need to set up the following paths:
2023-10-25 05:32:56 +00:00
2023-10-25 05:30:47 +00:00
llama_model checkpoint path: "/path/to/llama_checkpoint"
2023-10-25 05:32:56 +00:00
2023-10-25 05:30:47 +00:00
ckpt: "/path/to/pretrained_checkpoint"
2023-10-25 05:32:56 +00:00
2023-10-25 05:30:47 +00:00
ckpt save path: "/path/to/save_checkpoint"
For ckpt, you may load from our pretrained model checkpoints:
2023-10-25 05:36:31 +00:00
| MiniGPT-v2 (after stage-2) | MiniGPT-v2 (after stage-3) | MiniGPT-v2 (online developing demo) |
2023-10-25 05:30:47 +00:00
|------------------------------|------------------------------|------------------------------|
2023-12-13 11:12:08 +00:00
| [Download](https://drive.google.com/file/d/1Vi_E7ZtZXRAQcyz4f8E6LtLh2UXABCmu/view?usp=sharing) |[Download](https://drive.google.com/file/d/1HkoUUrjzFGn33cSiUkI-KcT-zysCynAz/view?usp=sharing) | [Download](https://drive.google.com/file/d/1aVbfW7nkCSYx99_vCRyP1sOlQiWVSnAl/view?usp=sharing) |
2023-10-25 04:52:44 +00:00
```bash
2023-10-25 05:30:47 +00:00
torchrun --nproc-per-node NUM_GPU train.py --cfg-path train_configs/minigptv2_finetune.yaml
2023-10-25 04:52:44 +00:00
```