jan-hq commited on
Commit
faabbd4
·
verified ·
1 Parent(s): 433c3f7

Training in progress, step 300

Browse files
model-00001-of-00004.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:835e33c20c762dc0880ec4da133838f5eff74cafd2a5d4e9caa8c94c968ba55f
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:e0d74635237f97c4d39c9e8e7d87de097e7d087528a9fa22967cc27db8dd6fe0
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:f7a4ef2e578a10ac8f53f26da7363ffeb6e70582ff14a2e709a2eceeb0766dc8
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:2b755870d1de43043527e6255cd555a4ae887a8cf141e9a1c286f09fce9c5c95
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")