Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【开源实习】bloom模型微调 #1907

Merged
merged 12 commits into from
Feb 27, 2025
Prev Previous commit
Next Next commit
  • Loading branch information
coisini-x1 committed Jan 17, 2025
commit 0f42dfe85399e492718a80cfc5c55ca75fd05b50
602 changes: 602 additions & 0 deletions llm/finetune/bert_generation/cifar100_eval.ipynb

Large diffs are not rendered by default.

789 changes: 789 additions & 0 deletions llm/finetune/bert_generation/cifar10_eval.ipynb

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions llm/finetune/bert_generation/data_load.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from download import download

url = "https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/notebook/datasets/cifar-10-binary.tar.gz"
path_10 = download(url, "./", kind="tar.gz", replace=True)
url = "https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/notebook/datasets/cifar-100-binary.tar.gz"
path_100 = download(url, "data", kind="tar.gz", replace=True)
Loading