saiteja33 commited on
Commit
b928837
·
verified ·
1 Parent(s): 32980f9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - polyalign
5
+ - hdpo
6
+ - chinese
7
+ - checkpoint-archive
8
+ ---
9
+
10
+ # PolyAlign Qwen2.5-3B Chinese HDPO
11
+
12
+ This repository stores the PolyAlign Qwen2.5-3B Chinese HDPO checkpoint as an archive.
13
+
14
+ The checkpoint may be stored in one of these forms:
15
+
16
+ - Single archive:
17
+ - checkpoint_archive/qwen3_zh_hdpo.tar
18
+
19
+ - Split archive:
20
+ - checkpoint_archive/split/qwen3_zh_hdpo.tar.part-*
21
+
22
+ To restore from a single archive:
23
+
24
+ tar -xf checkpoint_archive/qwen3_zh_hdpo.tar
25
+
26
+ To restore from split parts:
27
+
28
+ cat checkpoint_archive/split/qwen3_zh_hdpo.tar.part-* > qwen3_zh_hdpo.tar
29
+ tar -xf qwen3_zh_hdpo.tar
30
+
31
+ Important: this repository is an archive-format checkpoint store. It is not directly loadable with from_pretrained() unless the archive is reconstructed/extracted and the model files are placed at repository root.