Add (empty) paper link (#1)
Browse files- Add (empty) paper link (2cf750f738f0c2ee1a20c69c29617b92a333aaec)
Co-authored-by: Niels Rogge <[email protected]>
README.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
configs:
|
3 |
- config_name: Live-CC-5M for Dataset Viewer
|
4 |
data_files:
|
@@ -6,13 +13,6 @@ configs:
|
|
6 |
path: live_cc_100_for_preview.json
|
7 |
- split: full_5m
|
8 |
path: live_cc_5m_with_seeks.jsonl
|
9 |
-
license: apache-2.0
|
10 |
-
task_categories:
|
11 |
-
- video-text-to-text
|
12 |
-
language:
|
13 |
-
- en
|
14 |
-
size_categories:
|
15 |
-
- 1M<n<10M
|
16 |
---
|
17 |
|
18 |
# Dataset Card for Live-CC-5M
|
@@ -28,6 +28,7 @@ size_categories:
|
|
28 |
This dataset is used for [LiveCC-7B-Base](https://huggingface.co/chenjoya/LiveCC-7B-Instruct) model pre-training. We only allow the use of this dataset for academic research and educational purposes. For OpenAI GPT-4o generated user prompts, we recommend users check the [OpenAI Usage Policy](https://openai.com/policies/usage-policies/).
|
29 |
|
30 |
- **Project Page**: https://showlab.github.io/livecc
|
|
|
31 |
|
32 |
### Live-CC-5M Dataset
|
33 |
|
@@ -61,8 +62,10 @@ This dataset is used for [LiveCC-7B-Base](https://huggingface.co/chenjoya/LiveCC
|
|
61 |
# read the last line of jsonl
|
62 |
def readlastline(path: str):
|
63 |
with open(path, "rb") as f:
|
64 |
-
f.seek(-2, 2) # avoid last
|
65 |
-
|
|
|
|
|
66 |
f.seek(-2, 1)
|
67 |
return f.readline()
|
68 |
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license: apache-2.0
|
5 |
+
size_categories:
|
6 |
+
- 1M<n<10M
|
7 |
+
task_categories:
|
8 |
+
- video-text-to-text
|
9 |
configs:
|
10 |
- config_name: Live-CC-5M for Dataset Viewer
|
11 |
data_files:
|
|
|
13 |
path: live_cc_100_for_preview.json
|
14 |
- split: full_5m
|
15 |
path: live_cc_5m_with_seeks.jsonl
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
---
|
17 |
|
18 |
# Dataset Card for Live-CC-5M
|
|
|
28 |
This dataset is used for [LiveCC-7B-Base](https://huggingface.co/chenjoya/LiveCC-7B-Instruct) model pre-training. We only allow the use of this dataset for academic research and educational purposes. For OpenAI GPT-4o generated user prompts, we recommend users check the [OpenAI Usage Policy](https://openai.com/policies/usage-policies/).
|
29 |
|
30 |
- **Project Page**: https://showlab.github.io/livecc
|
31 |
+
- **Paper**: https://huggingface.co/papers/2504.16030
|
32 |
|
33 |
### Live-CC-5M Dataset
|
34 |
|
|
|
62 |
# read the last line of jsonl
|
63 |
def readlastline(path: str):
|
64 |
with open(path, "rb") as f:
|
65 |
+
f.seek(-2, 2) # avoid last
|
66 |
+
|
67 |
+
while f.read(1) != b"
|
68 |
+
":
|
69 |
f.seek(-2, 1)
|
70 |
return f.readline()
|
71 |
|