Training in progress, step 300
Browse files- model-00001-of-00004.safetensors +1 -1
- model-00002-of-00004.safetensors +1 -1
- model-00003-of-00004.safetensors +1 -1
- model-00004-of-00004.safetensors +1 -1
- push.py +15 -0
model-00001-of-00004.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4902257696
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e1204ec1b192adad96317451cb3fd213d076e265a88cd507d8e9f9bbc23f851d
|
3 |
size 4902257696
|
model-00002-of-00004.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4915960368
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0f422ad515a880daa40dfe8ad4046e77a9ad05ebd553faead247207e314ccdee
|
3 |
size 4915960368
|
model-00003-of-00004.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4983068496
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dbb4ca5fcb327702d887e93c63829e14130c46cfdbc5f96240d8188347ed7000
|
3 |
size 4983068496
|
model-00004-of-00004.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 1580230264
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b652261dc35952ad76a6c0e0baad8f57ca88ad81f4f9bcc3a77e63a048b908bc
|
3 |
size 1580230264
|
push.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
2 |
+
from huggingface_hub import HfApi, HfFolder
|
3 |
+
import torch
|
4 |
+
import os
|
5 |
+
import glob
|
6 |
+
from tqdm import tqdm
|
7 |
+
|
8 |
+
output_dir = "./checkpoint-200"
|
9 |
+
model = AutoModelForCausalLM.from_pretrained(output_dir, torch_dtype=torch.bfloat16)
|
10 |
+
print(model)
|
11 |
+
tokenizer = AutoTokenizer.from_pretrained(output_dir)
|
12 |
+
|
13 |
+
# # Save the updated model and tokenizer locally
|
14 |
+
model.push_to_hub("homebrewltd/Ichigo-Qwen2.5-32B-s-base")
|
15 |
+
tokenizer.push_to_hub("homebrewltd/Ichigo-Qwen2.5-32B-s-base")
|