Upload 4 files
Browse files- README.md +55 -0
- dataset_infos.json +26 -0
- metadata_sample.jsonl +24 -0
- prepare.py +160 -0
README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
tags:
|
| 4 |
+
- dataset
|
| 5 |
+
- sports
|
| 6 |
+
- video-text
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# Sports Video Text Data Notes
|
| 10 |
+
|
| 11 |
+
## Dataset summary
|
| 12 |
+
|
| 13 |
+
Preparation notes and schema examples for **Sports** tasks using **Video Text** data. Full source material is intentionally not bundled, so provenance and licensing remain explicit.
|
| 14 |
+
|
| 15 |
+
## Included material
|
| 16 |
+
|
| 17 |
+
- `prepare.py` — loading, cleaning, and split preparation code.
|
| 18 |
+
- `dataset_infos.json` — schema and split metadata.
|
| 19 |
+
- `metadata_sample.jsonl` — small, human-readable records for checking the schema.
|
| 20 |
+
- `README.md` — data card and usage notes.
|
| 21 |
+
|
| 22 |
+
## Processing choices
|
| 23 |
+
|
| 24 |
+
| Stage | Setting |
|
| 25 |
+
|---|---|
|
| 26 |
+
| Storage format | csv |
|
| 27 |
+
| Preprocessing | auto ml |
|
| 28 |
+
| Augmentation | heavy |
|
| 29 |
+
| Split strategy | random 90 10 |
|
| 30 |
+
| Sampling | contrastive |
|
| 31 |
+
| Quality checks | adaptive |
|
| 32 |
+
| Labeling | semi auto |
|
| 33 |
+
|
| 34 |
+
## Validation checklist
|
| 35 |
+
|
| 36 |
+
Before using the prepared data, verify source licenses, duplicates across splits, missing values, label balance, and modality-specific corruption. Record the source version and every filtering rule so a later run can reproduce the same rows.
|
| 37 |
+
|
| 38 |
+
## Intended use
|
| 39 |
+
|
| 40 |
+
The repository is suitable for testing the data pipeline, adapting it to a documented source, and preparing controlled research splits. Release status: **metadata sample; full source data not bundled**. The sample is for schema inspection only and should not be reported as a full training corpus.
|
| 41 |
+
|
| 42 |
+
## Risks and limitations
|
| 43 |
+
|
| 44 |
+
The loader cannot guarantee that an external source is representative, correctly licensed, or free of sensitive information. Users remain responsible for source review, privacy checks, and bias analysis before training or redistribution.
|
| 45 |
+
|
| 46 |
+
## Files
|
| 47 |
+
|
| 48 |
+
- `prepare.py` — primary artifact
|
| 49 |
+
- `README.md` — this documentation
|
| 50 |
+
- `dataset_infos.json` — schema metadata
|
| 51 |
+
- `metadata_sample.jsonl` — schema sample
|
| 52 |
+
|
| 53 |
+
## License
|
| 54 |
+
|
| 55 |
+
Released under **cc-by-4.0**. Review the source-data terms separately when this repository is used with external datasets.
|
dataset_infos.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"description": "Metadata sample and preparation pipeline for sports / video_text data",
|
| 3 |
+
"features": {
|
| 4 |
+
"id": {
|
| 5 |
+
"dtype": "string"
|
| 6 |
+
},
|
| 7 |
+
"description": {
|
| 8 |
+
"dtype": "string"
|
| 9 |
+
},
|
| 10 |
+
"label": {
|
| 11 |
+
"dtype": "int64"
|
| 12 |
+
},
|
| 13 |
+
"domain": {
|
| 14 |
+
"dtype": "string"
|
| 15 |
+
},
|
| 16 |
+
"modality": {
|
| 17 |
+
"dtype": "string"
|
| 18 |
+
}
|
| 19 |
+
},
|
| 20 |
+
"splits": {
|
| 21 |
+
"sample": {
|
| 22 |
+
"num_examples": 24
|
| 23 |
+
}
|
| 24 |
+
},
|
| 25 |
+
"release_status": "metadata sample; full source data not bundled"
|
| 26 |
+
}
|
metadata_sample.jsonl
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"id": "sample-001", "description": "schema validation example", "label": 0, "domain": "sports", "modality": "video_text"}
|
| 2 |
+
{"id": "sample-002", "description": "quality-control example", "label": 1, "domain": "sports", "modality": "video_text"}
|
| 3 |
+
{"id": "sample-003", "description": "split inspection example", "label": 2, "domain": "sports", "modality": "video_text"}
|
| 4 |
+
{"id": "sample-004", "description": "label review example", "label": 3, "domain": "sports", "modality": "video_text"}
|
| 5 |
+
{"id": "sample-005", "description": "deduplication example", "label": 0, "domain": "sports", "modality": "video_text"}
|
| 6 |
+
{"id": "sample-006", "description": "format conversion example", "label": 1, "domain": "sports", "modality": "video_text"}
|
| 7 |
+
{"id": "sample-007", "description": "schema validation example", "label": 2, "domain": "sports", "modality": "video_text"}
|
| 8 |
+
{"id": "sample-008", "description": "quality-control example", "label": 3, "domain": "sports", "modality": "video_text"}
|
| 9 |
+
{"id": "sample-009", "description": "split inspection example", "label": 0, "domain": "sports", "modality": "video_text"}
|
| 10 |
+
{"id": "sample-010", "description": "label review example", "label": 1, "domain": "sports", "modality": "video_text"}
|
| 11 |
+
{"id": "sample-011", "description": "deduplication example", "label": 2, "domain": "sports", "modality": "video_text"}
|
| 12 |
+
{"id": "sample-012", "description": "format conversion example", "label": 3, "domain": "sports", "modality": "video_text"}
|
| 13 |
+
{"id": "sample-013", "description": "schema validation example", "label": 0, "domain": "sports", "modality": "video_text"}
|
| 14 |
+
{"id": "sample-014", "description": "quality-control example", "label": 1, "domain": "sports", "modality": "video_text"}
|
| 15 |
+
{"id": "sample-015", "description": "split inspection example", "label": 2, "domain": "sports", "modality": "video_text"}
|
| 16 |
+
{"id": "sample-016", "description": "label review example", "label": 3, "domain": "sports", "modality": "video_text"}
|
| 17 |
+
{"id": "sample-017", "description": "deduplication example", "label": 0, "domain": "sports", "modality": "video_text"}
|
| 18 |
+
{"id": "sample-018", "description": "format conversion example", "label": 1, "domain": "sports", "modality": "video_text"}
|
| 19 |
+
{"id": "sample-019", "description": "schema validation example", "label": 2, "domain": "sports", "modality": "video_text"}
|
| 20 |
+
{"id": "sample-020", "description": "quality-control example", "label": 3, "domain": "sports", "modality": "video_text"}
|
| 21 |
+
{"id": "sample-021", "description": "split inspection example", "label": 0, "domain": "sports", "modality": "video_text"}
|
| 22 |
+
{"id": "sample-022", "description": "label review example", "label": 1, "domain": "sports", "modality": "video_text"}
|
| 23 |
+
{"id": "sample-023", "description": "deduplication example", "label": 2, "domain": "sports", "modality": "video_text"}
|
| 24 |
+
{"id": "sample-024", "description": "format conversion example", "label": 3, "domain": "sports", "modality": "video_text"}
|
prepare.py
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import json, os, hashlib, logging
|
| 2 |
+
from typing import List, Dict, Optional
|
| 3 |
+
|
| 4 |
+
log = logging.getLogger(__name__)
|
| 5 |
+
|
| 6 |
+
# --- real data source: sports ---
|
| 7 |
+
TV_DATASET = 'UCF101'
|
| 8 |
+
HF_CANDIDATES = []
|
| 9 |
+
IMAGE_FIELD = None
|
| 10 |
+
TEXT_FIELD = None
|
| 11 |
+
LABEL_FIELD = 'label'
|
| 12 |
+
PROMPT_TEMPLATE = 'a sports scene of {label}'
|
| 13 |
+
DATASET_URL = 'https://www.crcv.ucf.edu/data/UCF101.php'
|
| 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 |
+
class SportsDataset:
|
| 77 |
+
def __init__(self, data_dir: str, output_dir: str, img_size: int = 224):
|
| 78 |
+
self.data_dir = data_dir
|
| 79 |
+
self.output_dir = output_dir
|
| 80 |
+
self.img_size = img_size
|
| 81 |
+
self.samples = []
|
| 82 |
+
self.processed = []
|
| 83 |
+
|
| 84 |
+
def load(self) -> List[Dict]:
|
| 85 |
+
|
| 86 |
+
from pathlib import Path
|
| 87 |
+
for f in Path(self.data_dir).glob('*.jsonl'):
|
| 88 |
+
with open(f, encoding="utf-8") as fp:
|
| 89 |
+
for line in fp:
|
| 90 |
+
if line.strip():
|
| 91 |
+
self.samples.append(json.loads(line))
|
| 92 |
+
log.info(f'Loaded {len(self.samples)} samples')
|
| 93 |
+
return self.samples
|
| 94 |
+
|
| 95 |
+
def filter(self) -> List[Dict]:
|
| 96 |
+
|
| 97 |
+
filtered = []
|
| 98 |
+
for s in self.samples:
|
| 99 |
+
text = s.get('sports', s.get('text', ''))
|
| 100 |
+
if len(text.split()) >= 3:
|
| 101 |
+
filtered.append(s)
|
| 102 |
+
self.samples = filtered
|
| 103 |
+
return filtered
|
| 104 |
+
|
| 105 |
+
def deduplicate(self) -> List[Dict]:
|
| 106 |
+
seen = set()
|
| 107 |
+
result = []
|
| 108 |
+
for s in self.samples:
|
| 109 |
+
fp = s.get('image', s.get('audio', ''))
|
| 110 |
+
if fp and os.path.exists(fp):
|
| 111 |
+
h = hashlib.md5(open(fp, 'rb').read()).hexdigest()
|
| 112 |
+
if h in seen:
|
| 113 |
+
continue
|
| 114 |
+
seen.add(h)
|
| 115 |
+
result.append(s)
|
| 116 |
+
self.samples = result
|
| 117 |
+
return result
|
| 118 |
+
|
| 119 |
+
def process(self) -> List[Dict]:
|
| 120 |
+
os.makedirs(self.output_dir, exist_ok=True)
|
| 121 |
+
for s in self.samples:
|
| 122 |
+
item = {}
|
| 123 |
+
if 'image' in s:
|
| 124 |
+
try:
|
| 125 |
+
from PIL import Image
|
| 126 |
+
img = Image.open(s['image']).convert('RGB')
|
| 127 |
+
img = img.resize((self.img_size, self.img_size))
|
| 128 |
+
p = os.path.join(self.output_dir, os.path.basename(s['image']))
|
| 129 |
+
img.save(p, 'JPEG', quality=95)
|
| 130 |
+
item['image'] = p
|
| 131 |
+
except Exception as e:
|
| 132 |
+
log.warning(f'Failed: {e}')
|
| 133 |
+
continue
|
| 134 |
+
item['text'] = s.get('sports', s.get('text', ''))
|
| 135 |
+
item['domain'] = 'sports'
|
| 136 |
+
self.processed.append(item)
|
| 137 |
+
return self.processed
|
| 138 |
+
|
| 139 |
+
def save(self):
|
| 140 |
+
path = os.path.join(self.output_dir, 'dataset.jsonl')
|
| 141 |
+
with open(path, 'w', encoding="utf-8") as f:
|
| 142 |
+
for d in self.processed:
|
| 143 |
+
f.write(json.dumps(d, ensure_ascii=False) + '\n')
|
| 144 |
+
log.info(f'Saved {len(self.processed)} samples to {path}')
|
| 145 |
+
|
| 146 |
+
def run(self):
|
| 147 |
+
self.load()
|
| 148 |
+
if not self.samples:
|
| 149 |
+
self.samples = fetch_real_samples()
|
| 150 |
+
self.filter()
|
| 151 |
+
self.deduplicate()
|
| 152 |
+
self.process()
|
| 153 |
+
self.save()
|
| 154 |
+
|
| 155 |
+
|
| 156 |
+
if __name__ == '__main__':
|
| 157 |
+
import sys
|
| 158 |
+
ds = SportsDataset(sys.argv[1] if len(sys.argv) > 1 else './data',
|
| 159 |
+
sys.argv[2] if len(sys.argv) > 2 else './output')
|
| 160 |
+
ds.run()
|