{"id":19054675,"url":"https://github.com/ssbuild/llava_finetuning","last_synced_at":"2025-11-12T02:02:47.166Z","repository":{"id":242111353,"uuid":"808633637","full_name":"ssbuild/llava_finetuning","owner":"ssbuild","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-31T17:00:38.000Z","size":14003,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-02-22T01:19:51.246Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ssbuild.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-31T13:30:48.000Z","updated_at":"2024-05-31T17:00:41.000Z","dependencies_parsed_at":"2024-05-31T18:40:13.389Z","dependency_job_id":null,"html_url":"https://github.com/ssbuild/llava_finetuning","commit_stats":null,"previous_names":["ssbuild/llava_finetuning"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ssbuild/llava_finetuning","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssbuild%2Fllava_finetuning","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssbuild%2Fllava_finetuning/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssbuild%2Fllava_finetuning/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssbuild%2Fllava_finetuning/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ssbuild","download_url":"https://codeload.github.com/ssbuild/llava_finetuning/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssbuild%2Fllava_finetuning/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":283961755,"owners_count":26923662,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-12T02:00:06.336Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T23:39:20.614Z","updated_at":"2025-11-12T02:02:47.135Z","avatar_url":"https://github.com/ssbuild.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## update information\r\n   - [deep_training](https://github.com/ssbuild/deep_training)\r\n\r\n```text\r\n    2024-06-01 initial\r\n```\r\n   \r\n\r\n## install\r\n  - pip install -U -r requirements.txt\r\n  - 如果无法安装， 可以切换官方源 pip install -i https://pypi.org/simple -U -r requirements.txt\r\n\r\n\r\n\r\n## weigtht select one is suitable for you\r\n支持且不限于以下权重    \r\n- [Yi-VL-6B](https://huggingface.co/01-ai/Yi-VL-6B)\r\n- [Yi-VL-34B](https://huggingface.co/01-ai/Yi-VL-34B)\r\n\r\n## data sample\r\n   open_data https://github.com/ssbuild/open_data\r\n   \r\n单条数据示例\r\n```text\r\np prefix optional\r\ntext  must\r\nimg   must\r\n\r\n```\r\n\r\n```json\r\n{\"id\": 1, \"p\": \"\", \"text\": \"图中是一只拉布拉多犬\", \"img\": \"../assets/demo.jpeg\"}\r\n```\r\n\r\n\r\n## infer\r\n    # infer_finetuning.py 推理微调模型\r\n    # infer_lora_finetuning.py 推理微调模型\r\n    # infer_ptuning.py 推理p-tuning-v2微调模型\r\n     python infer_finetuning.py\r\n\r\n\r\n\r\n## training\r\n```text\r\n    # 制作数据\r\n    cd scripts\r\n    bash train_full.sh -m dataset \r\n    or\r\n    bash train_lora.sh -m dataset \r\n    or\r\n    bash train_ptv2.sh -m dataset \r\n    \r\n    注: num_process_worker 为多进程制作数据 ， 如果数据量较大 ， 适当调大至cpu数量\r\n    dataHelper.make_dataset_with_args(data_args.train_file,mixed_data=False, shuffle=True,mode='train',num_process_worker=0)\r\n    \r\n    # 全参数训练 \r\n        bash train_full.sh\r\n        \r\n    # lora adalora ia3 \r\n        bash train_lora.sh\r\n        \r\n    # ptv2\r\n        bash train_ptv2.sh\r\n```\r\n   \r\n## 训练参数\r\n[训练参数](args.MD)\r\n\r\n## 友情链接\r\n\r\n- [pytorch-task-example](https://github.com/ssbuild/pytorch-task-example)\r\n- [tf-task-example](https://github.com/ssbuild/tf-task-example)\r\n- [chatmoss_finetuning](https://github.com/ssbuild/chatmoss_finetuning)\r\n- [chatglm_finetuning](https://github.com/ssbuild/chatglm_finetuning)\r\n- [t5_finetuning](https://github.com/ssbuild/t5_finetuning)\r\n- [llm_finetuning](https://github.com/ssbuild/llm_finetuning)\r\n- [llm_rlhf](https://github.com/ssbuild/llm_rlhf)\r\n- [chatglm_rlhf](https://github.com/ssbuild/chatglm_rlhf)\r\n- [t5_rlhf](https://github.com/ssbuild/t5_rlhf)\r\n- [rwkv_finetuning](https://github.com/ssbuild/rwkv_finetuning)\r\n- [baichuan_finetuning](https://github.com/ssbuild/baichuan_finetuning)\r\n\r\n## \r\n    纯粹而干净的代码\r\n\r\n## Star History\r\n\r\n[![Star History Chart](https://api.star-history.com/svg?repos=ssbuild/llava_finetuning\u0026type=Date)](https://star-history.com/#ssbuild/llava_finetuning\u0026Date)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssbuild%2Fllava_finetuning","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fssbuild%2Fllava_finetuning","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssbuild%2Fllava_finetuning/lists"}