chiarabia99 commited on
Commit
aba840f
·
verified ·
1 Parent(s): 7fb9bbb

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +42 -0
  2. dataset_020184879_security_video_text.py +152 -0
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: bsd-3-clause
3
+ tags:
4
+ - auto-ml
5
+ - csv
6
+ - mixup-cutmix
7
+ - pseudo-label
8
+ - random-90-10
9
+ - security
10
+ - strict
11
+ - video-text
12
+ - weighted
13
+ ---
14
+
15
+ # dataset_020184879_security_video_text.py
16
+
17
+ ## Dataset Summary
18
+
19
+ A **security** dataset with **video text** modality, stored in **csv** format.
20
+
21
+ ## Preprocessing & Augmentation
22
+
23
+ - **Preprocessing**: auto ml
24
+ - **Augmentation**: mixup cutmix
25
+
26
+ ## Splits & Sampling
27
+
28
+ - **Split strategy**: random 90 10
29
+ - **Sampling**: weighted
30
+
31
+ ## Quality & Labeling
32
+
33
+ - **Quality filtering**: strict
34
+ - **Labeling**: pseudo label
35
+
36
+ ## Files
37
+
38
+ - `dataset_020184879_security_video_text.py` — main artifact of this repository
39
+
40
+ ## License
41
+
42
+ See the license field above.
dataset_020184879_security_video_text.py ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json, os, hashlib, logging
2
+ from pathlib import Path
3
+
4
+ log = logging.getLogger(__name__)
5
+
6
+ # --- real data source: security ---
7
+ TV_DATASET = 'UCF101'
8
+ HF_CANDIDATES = []
9
+ IMAGE_FIELD = None
10
+ TEXT_FIELD = None
11
+ LABEL_FIELD = 'label'
12
+ PROMPT_TEMPLATE = 'a surveillance scene showing {label}'
13
+ DATASET_URL = 'https://www.crcv.ucf.edu/projects/real-world/'
14
+
15
+ def fetch_real_samples(max_samples=5000, cache_dir='./_cache'):
16
+ # 本地没有数据时自动下载真实公开数据集: torchvision -> HuggingFace -> 手动说明
17
+ out = []
18
+ if TV_DATASET is not None:
19
+ try:
20
+ import torchvision
21
+ ctor = getattr(torchvision.datasets, TV_DATASET)
22
+ try:
23
+ ds = ctor(root=cache_dir, split='train', download=True)
24
+ except TypeError:
25
+ try:
26
+ ds = ctor(root=cache_dir, train=True, download=True)
27
+ except TypeError:
28
+ ds = ctor(root=cache_dir, download=True)
29
+ classes = getattr(ds, 'classes', None)
30
+ os.makedirs(os.path.join(cache_dir, 'tv'), exist_ok=True)
31
+ for i, item in enumerate(ds):
32
+ if len(out) >= max_samples:
33
+ break
34
+ img, label = item[0], item[1]
35
+ name = classes[label] if classes else str(label)
36
+ p = os.path.join(cache_dir, 'tv', str(i) + '.png')
37
+ try:
38
+ img.save(p)
39
+ except Exception:
40
+ continue
41
+ out.append({'image': p, 'text': PROMPT_TEMPLATE.format(label=name)})
42
+ if out:
43
+ return out
44
+ except Exception as e:
45
+ print('torchvision load failed:', e)
46
+ for repo in HF_CANDIDATES:
47
+ try:
48
+ from datasets import load_dataset
49
+ try:
50
+ ds = load_dataset(repo, split='train', streaming=True)
51
+ except Exception:
52
+ ds = load_dataset(repo, split='train')
53
+ img_dir = os.path.join(cache_dir, 'hf_images')
54
+ os.makedirs(img_dir, exist_ok=True)
55
+ for i, ex in enumerate(ds):
56
+ if len(out) >= max_samples:
57
+ break
58
+ txt = None
59
+ if TEXT_FIELD is not None and TEXT_FIELD in ex:
60
+ v = ex[TEXT_FIELD]
61
+ txt = v if isinstance(v, str) else ' '.join(map(str, v if isinstance(v, (list, tuple)) else [v]))
62
+ if txt is None and LABEL_FIELD in ex:
63
+ txt = PROMPT_TEMPLATE.format(label=ex[LABEL_FIELD])
64
+ if txt is None:
65
+ continue
66
+ out.append({'text': txt})
67
+ if out:
68
+ return out
69
+ except Exception as e:
70
+ print('HF load failed for', repo, ':', e)
71
+ print('Automatic download failed. Please get the data manually from:')
72
+ print(' ' + DATASET_URL)
73
+ return out
74
+
75
+
76
+ def load(data_dir):
77
+ # 加载原始数据
78
+ files = list(Path(data_dir).glob('*.jsonl'))
79
+ if not files:
80
+ files = list(Path(data_dir).glob('*.json'))
81
+ samples = []
82
+ for f in files:
83
+ with open(f) as fp:
84
+ if f.suffix == '.json':
85
+ d = json.load(fp)
86
+ samples.extend(d if isinstance(d, list) else [d])
87
+ else:
88
+ samples.extend(json.loads(l) for l in fp if l.strip())
89
+ return samples
90
+
91
+ def filter_quality(samples, min_score=0.5):
92
+ # 质量过滤
93
+ results = []
94
+ for s in samples:
95
+ text = s.get("security", s.get("text", ""))
96
+ if len(text.split()) >= 3:
97
+ results.append(s)
98
+ return results
99
+
100
+ def dedup(samples):
101
+ seen = set()
102
+ out = []
103
+ for s in samples:
104
+ fp = s.get("image", s.get("audio", ""))
105
+ if fp and os.path.exists(fp):
106
+ h = hashlib.md5(open(fp, 'rb').read()).hexdigest()
107
+ if h in seen:
108
+ continue
109
+ seen.add(h)
110
+ out.append(s)
111
+ return out
112
+
113
+ def preprocess(samples, out_dir, img_size=224):
114
+
115
+ os.makedirs(out_dir, exist_ok=True)
116
+ processed = []
117
+ for s in samples:
118
+ item = {}
119
+ if "image" in s:
120
+ try:
121
+ from PIL import Image as IM
122
+ img = IM.open(s["image"]).convert("RGB")
123
+ img = img.resize((img_size, img_size))
124
+ p = os.path.join(out_dir, os.path.basename(s["image"]))
125
+ img.save(p, "JPEG", quality=95)
126
+ item["image"] = p
127
+ except Exception:
128
+ continue
129
+ text = s.get("security", s.get("text", ""))
130
+ item["text"] = text
131
+ item["domain"] = "security"
132
+ processed.append(item)
133
+ return processed
134
+
135
+ def save_jsonl(data, path):
136
+ with open(path, 'w') as f:
137
+ for d in data:
138
+ f.write(json.dumps(d, ensure_ascii=False) + '\n')
139
+
140
+ def main():
141
+ import sys
142
+ data_dir = sys.argv[1] if len(sys.argv) > 1 else './data'
143
+ out = sys.argv[2] if len(sys.argv) > 2 else './output'
144
+ samples = load(data_dir) or fetch_real_samples()
145
+ samples = filter_quality(samples)
146
+ samples = dedup(samples)
147
+ result = preprocess(samples, out)
148
+ save_jsonl(result, os.path.join(out, 'dataset.jsonl'))
149
+ print(f'Done: {len(result)} samples')
150
+
151
+ if __name__ == '__main__':
152
+ main()