iamirulofficial commited on
Commit
c99cf4c
·
verified ·
1 Parent(s): 60b66b6

Delete loading script

Browse files
Files changed (1) hide show
  1. OpenHumnoidDataset.py +0 -117
OpenHumnoidDataset.py DELETED
@@ -1,117 +0,0 @@
1
- # TestNew.py
2
- import json
3
- import random
4
- from datasets import (
5
- BuilderConfig,
6
- DatasetInfo,
7
- DownloadManager,
8
- GeneratorBasedBuilder,
9
- SplitGenerator,
10
- Split,
11
- Features,
12
- Image,
13
- Sequence,
14
- Value,
15
- )
16
- from huggingface_hub import hf_hub_url
17
-
18
-
19
- _REPO_ID = "iamirulofficial/OpenHumnoidDataset" # change if you ever fork the repo
20
-
21
-
22
- class ImageSubsetConfig(BuilderConfig):
23
- """BuilderConfig for full dataset vs. small random sample."""
24
- def __init__(self, name, sample_size=None, **kwargs):
25
- super().__init__(
26
- name=name,
27
- version="1.0.1",
28
- description=kwargs.get("description", "")
29
- )
30
- self.sample_size = sample_size
31
-
32
-
33
- class MyImageDataset(GeneratorBasedBuilder):
34
- """Images + 2‑D actuated_angle labels stored in metadata.json."""
35
- BUILDER_CONFIGS = [
36
- ImageSubsetConfig(
37
- name="full",
38
- sample_size=None, # all images
39
- description="Entire dataset (≈100 GB)"
40
- ),
41
- ImageSubsetConfig(
42
- name="small",
43
- sample_size=2, # tiny sample for quick tests
44
- description="Two random images"
45
- ),
46
- ]
47
- DEFAULT_CONFIG_NAME = "small"
48
-
49
- def _info(self) -> DatasetInfo:
50
- return DatasetInfo(
51
- description="Images with a 2‑D actuated_angle from metadata.json",
52
- features=Features(
53
- {
54
- "image": Image(), # PIL.Image will be returned
55
- "actuated_angle": {
56
- "0": Value("int32"),
57
- "1": Value("int32"),
58
- }, # [angle0, angle1]
59
- }
60
- ),
61
- supervised_keys=None,
62
- )
63
-
64
- # --------------------------------------------------------------------- #
65
- # Download phase #
66
- # --------------------------------------------------------------------- #
67
- def _split_generators(self, dl_manager: DownloadManager):
68
- # 1️⃣ Download metadata.json (tiny text file)
69
- meta_path = dl_manager.download(
70
- hf_hub_url(_REPO_ID, "metadata.json", repo_type="dataset")
71
- )
72
-
73
- # 2️⃣ Decide which filenames we need
74
- with open(meta_path, encoding="utf-8") as f:
75
- metadata = json.load(f) # {"frame_000.png": {"0":…, …}, …}
76
-
77
- all_fnames = list(metadata)
78
- if self.config.sample_size: # small‑config branch
79
- random.seed(42)
80
- selected = sorted(random.sample(all_fnames, self.config.sample_size))
81
- else:
82
- selected = sorted(all_fnames) # full dataset
83
-
84
- # 3️⃣ Build URLs → dl_manager.download() → local paths
85
- url_dict = {
86
- fname: hf_hub_url(
87
- _REPO_ID, f"images/{fname}", repo_type="dataset"
88
- )
89
- for fname in selected
90
- }
91
- img_paths = dl_manager.download(url_dict) # same keys, but local files
92
-
93
- return [
94
- SplitGenerator(
95
- name=Split.TRAIN,
96
- gen_kwargs={
97
- "img_paths": img_paths,
98
- "metadata": metadata,
99
- },
100
- )
101
- ]
102
-
103
- # --------------------------------------------------------------------- #
104
- # Generate examples #
105
- # --------------------------------------------------------------------- #
106
- def _generate_examples(self, img_paths: dict, metadata: dict):
107
- """
108
- Yields (key, example) where example =
109
- { "image": <local‑file‑path>, "actuated_angle": [int, int] }
110
- """
111
- for idx, (fname, local_path) in enumerate(img_paths.items()):
112
- meta = metadata.get(fname, {})
113
- angles = [int(meta.get("0", 0)), int(meta.get("1", 0))]
114
- yield idx, {"image": local_path, "actuated_angle": { # 👈 dict, not list
115
- "0": int(meta.get("0", 0)),
116
- "1": int(meta.get("1", 0)),
117
- }}