nave cohen commited on
Commit
23d81ae
1 Parent(s): 617fccf

add parquet

Browse files
README.md CHANGED
@@ -3,18 +3,11 @@ configs:
3
  - config_name: default
4
  data_files:
5
  - split: train
6
- path: "data/train/metadata.csv"
7
  - split: validation
8
- path: "data/validation/metadata.csv"
9
  - split: test
10
- path: "data/test/metadata.csv"
11
- features:
12
- image:
13
- dtype: image
14
- description: High-resolution input images of urban environments.
15
- mask:
16
- dtype: image
17
- description: Binary segmentation masks corresponding to each input image.
18
  ---
19
 
20
  # Urban Climate Dataset
 
3
  - config_name: default
4
  data_files:
5
  - split: train
6
+ path: "data/train.parquet"
7
  - split: validation
8
+ path: "data/validation.parquet"
9
  - split: test
10
+ path: "data/test.parquet"
 
 
 
 
 
 
 
11
  ---
12
 
13
  # Urban Climate Dataset
data/{test/metadata.csv → test.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f03eb39a936bb2da28c2fbb14a1b13d670fbf65cc08bf519fd52b22e9e0e1539
3
- size 63872
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f805830c1a43bdebaff04ef67fa43f1b9a5c1217300459aaf8b54ffda34c7f64
3
+ size 785318981
data/{validation/metadata.csv → train.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d04ab420a459f0f6c61021686ff949b683e73fd773769dae04d069c42e99d5cd
3
- size 62636
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdf6ed4e2a5a7b71e37f2d3361474795aab68feb1411fba4dbdf8efd10a81d4f
3
+ size 10868106153
data/{train/metadata.csv → validation.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b8d3d19baf725ff7132bdc82ee7fb38fae31530328a77a9455b9cefd7453ce7e
3
- size 317378
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b2397d994e8ae12dc2153adf80c8df48a14e1742b5a25395fc284de8fa44c6f
3
+ size 1992539392
dataset.py DELETED
@@ -1,61 +0,0 @@
1
- import os
2
- import pandas as pd
3
- from datasets import GeneratorBasedBuilder, DatasetInfo, Features, Image, Value, SplitGenerator
4
-
5
- class UrbanClimateDataset(GeneratorBasedBuilder):
6
- """Urban Climate Dataset for building detection."""
7
-
8
- VERSION = "1.0.0"
9
-
10
- def _info(self):
11
- return DatasetInfo(
12
- description="Dataset for building detection in urban environments using image segmentation.",
13
- features=Features({
14
- "file_name": Value("string"),
15
- "image": Image(),
16
- "mask": Image(),
17
- "type": Value("string"),
18
- }),
19
- supervised_keys=None,
20
- homepage="https://huggingface.co/datasets/nave1616/urban_climate_dataset",
21
- license="CC BY-SA 4.0",
22
- citation="""@article{your_citation}"""
23
- )
24
-
25
- def _split_generators(self, dl_manager):
26
- """Specify data splits."""
27
- base_path = dl_manager.download_and_extract(self.config.data_dir)
28
-
29
- return [
30
- SplitGenerator(
31
- name="train",
32
- gen_kwargs={"files_dir": os.path.join(base_path, "train")},
33
- ),
34
- SplitGenerator(
35
- name="validation",
36
- gen_kwargs={"files_dir": os.path.join(base_path, "validation")},
37
- ),
38
- SplitGenerator(
39
- name="test",
40
- gen_kwargs={"files_dir": os.path.join(base_path, "test")},
41
- ),
42
- ]
43
-
44
- def _generate_examples(self, files_dir):
45
- """Generate examples from metadata CSV files."""
46
- metadata_path = os.path.join(files_dir, 'metadata.csv')
47
- df = pd.read_csv(metadata_path)
48
- for idx, row in df.iterrows():
49
- image_path = os.path.join(files_dir, row["file_name"])
50
- # Assume that mask images are in the same directory and have the same name with a different prefix
51
- if row['type'] == 'image':
52
- mask_path = image_path.replace('image', 'mask') # Replace to get the corresponding mask path
53
- else:
54
- mask_path = image_path
55
-
56
- yield idx, {
57
- "file_name": row["file_name"],
58
- "image": image_path if row['type'] == 'image' else None,
59
- "mask": mask_path if row['type'] == 'mask' else None,
60
- "type": row["type"],
61
- }