Upload folder using huggingface_hub
Browse files- .gitattributes +8 -0
- reconstruct_task1_exec.py +30 -0
- task1_exec.part000.jsonl +3 -0
- task1_exec.part001.jsonl +3 -0
- task1_exec.part002.jsonl +3 -0
- task1_exec.part003.jsonl +3 -0
- task1_exec.part004.jsonl +3 -0
- task1_gen.jsonl +3 -0
- task1_gen.parquet +3 -0
- task2_exec.jsonl +3 -0
- task2_gen.jsonl +3 -0
- task2_gen.parquet +3 -0
.gitattributes
CHANGED
@@ -57,3 +57,11 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
60 |
+
task1_exec.part000.jsonl filter=lfs diff=lfs merge=lfs -text
|
61 |
+
task1_exec.part001.jsonl filter=lfs diff=lfs merge=lfs -text
|
62 |
+
task1_exec.part002.jsonl filter=lfs diff=lfs merge=lfs -text
|
63 |
+
task1_exec.part003.jsonl filter=lfs diff=lfs merge=lfs -text
|
64 |
+
task1_exec.part004.jsonl filter=lfs diff=lfs merge=lfs -text
|
65 |
+
task1_gen.jsonl filter=lfs diff=lfs merge=lfs -text
|
66 |
+
task2_exec.jsonl filter=lfs diff=lfs merge=lfs -text
|
67 |
+
task2_gen.jsonl filter=lfs diff=lfs merge=lfs -text
|
reconstruct_task1_exec.py
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python3
|
2 |
+
# 重组文件 task1_exec.jsonl 的脚本
|
3 |
+
|
4 |
+
import os
|
5 |
+
from pathlib import Path
|
6 |
+
|
7 |
+
def reconstruct_file():
|
8 |
+
output_file = "task1_exec.jsonl"
|
9 |
+
chunk_files = [
|
10 |
+
"task1_exec.part000.jsonl",
|
11 |
+
"task1_exec.part001.jsonl",
|
12 |
+
"task1_exec.part002.jsonl",
|
13 |
+
"task1_exec.part003.jsonl",
|
14 |
+
"task1_exec.part004.jsonl",
|
15 |
+
]
|
16 |
+
|
17 |
+
print(f"重组文件: {output_file}")
|
18 |
+
with open(output_file, 'wb') as outfile:
|
19 |
+
for chunk_file in chunk_files:
|
20 |
+
if os.path.exists(chunk_file):
|
21 |
+
print(f"添加分片: {chunk_file}")
|
22 |
+
with open(chunk_file, 'rb') as infile:
|
23 |
+
outfile.write(infile.read())
|
24 |
+
else:
|
25 |
+
print(f"警告: 分片文件不存在 {chunk_file}")
|
26 |
+
|
27 |
+
print(f"重组完成: {output_file}")
|
28 |
+
|
29 |
+
if __name__ == "__main__":
|
30 |
+
reconstruct_file()
|
task1_exec.part000.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1f176b848d357072fa259384c9b99f193d706536888d79f4aa29e7412503bf65
|
3 |
+
size 10737418240
|
task1_exec.part001.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1ff587208c199153a60b5a91f2ad6ea4e49c52b33ee7852cd3a44176d06f534f
|
3 |
+
size 10737418240
|
task1_exec.part002.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c6fb72880b0f0296fd560dd8e04181ed6af7fb3aef243a688373639457f1623f
|
3 |
+
size 10737418240
|
task1_exec.part003.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aa22bfc5cb0c2fd4eaa155a4e04d55e93037e35876fcf24317441cc259f5330c
|
3 |
+
size 10737418240
|
task1_exec.part004.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f6143c8e0db9c2fa08d9aa12aa3d54711cc1799f6ca7fdc52df74fd178a5ea40
|
3 |
+
size 1285813556
|
task1_gen.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4bebdd1e3e8637143b8323fbde7d7372316377e11616df805d0a543086d81d91
|
3 |
+
size 35513756
|
task1_gen.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3bd6592a004e4ebd6ac17655a0242df76bbdf15649081d70cc7c3ac0c28b21cd
|
3 |
+
size 1631396
|
task2_exec.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e6e5cd3b00d8d275276b5009314a7076554e411365bd1d0f017f8c729497a414
|
3 |
+
size 541897265
|
task2_gen.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8fc06c6310d829a76567004acb99750602384531e6be48b07556c96a1c60098e
|
3 |
+
size 62491892
|
task2_gen.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2333a63815aa27a4ef758ad7d961d3c6560e16c5f10336101ff0fac75654e674
|
3 |
+
size 14457528
|