-
Notifications
You must be signed in to change notification settings - Fork 2
/
split_data.py
executable file
·128 lines (104 loc) · 4.73 KB
/
split_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Copyright 2018 California Institute of Technology.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
import os
import random
import numpy as np
from shutil import copyfile
from PIL import Image
from tqdm import tqdm
from gibs_layer import GIBSLayer
from datetime import datetime, time, timedelta, date
from dateutil.relativedelta import relativedelta
from utils import daterange
###############################################################################
# Constants
###############################################################################
layer_name = 'VIIRS_SNPP_CorrectedReflectance_BandsM3_I3_M11' # 'MODIS_Terra_CorrectedReflectance_Bands367' # 'MODIS_Terra_CorrectedReflectance_TrueColor' # MODIS_Terra_CorrectedReflectance_Bands367, VIIRS_SNPP_CorrectedReflectance_TrueColor
# Start and end dates for the labels
start_date = None
end_date = datetime(2018, 6, 27)
# train-val-test split (60-20-20)
TRAIN_CUTOFF = 0.60
VAL_CUTOFF = 0.80
# directory pointing to date subdirectories
data_dir = 'data/4326'
labels_file = os.path.join(data_dir, layer_name + ".txt")
split_labels_file = os.path.join(data_dir, "split_" + layer_name + ".txt")
###############################################################################
# Argument checking
###############################################################################
# Check the layer name
layer = GIBSLayer.get_gibs_layer(layer_name)
if layer is None:
print("Invalid GIBS layer name")
exit()
print("Downloading GIBS Layer: {}".format(layer.layer_name))
# Parse the start date (inclusive) information
if start_date is None:
start_date = datetime.strptime(layer.date_min,"%Y-%m-%d")
else:
if datetime.strptime(start_date,"%Y-%m-%d") < datetime.strptime(layer.date_min,"%Y-%m-%d"):
print("No layer data from {}. Will begin from {} instead".format(datetime.strptime(start_date,"%Y-%m-%d"), datetime.strptime(layer.date_min,"%Y-%m-%d")))
start_date = datetime.strptime(layer.date_min,"%Y-%m-%d")
print("From {} to {}".format(start_date.strftime("%Y-%m-%d"), end_date.strftime("%Y-%m-%d")))
###############################################################################
# File checking
###############################################################################
assert os.path.isdir(data_dir), "Couldn't find the dataset at {}".format(data_dir)
# Generate labels file if non-existent
if not os.path.exists(labels_file):
print("Making labels file: {}".format(labels_file))
with open(labels_file, "w") as f:
# Loop through dates
for single_date in daterange(start_date, end_date):
datestring = single_date.strftime("%Y-%m-%d")
f.write(datestring + " \n")
###############################################################################
# Add split to the labels file
###############################################################################
# Count the number of examples in the dataset
N = sum(1 for line in open(labels_file))
print("There are {} total examples in the dataset".format(N))
# Split the dataset into train-val-test
first_split = int(TRAIN_CUTOFF * N)
second_split = int(VAL_CUTOFF * N)
split_names = [""] * N
for idx in range(N):
if idx < first_split:
split_names[idx] = "train"
elif idx < second_split:
split_names[idx] = "val"
else:
split_names[idx] = "test"
#Make sure to always shuffle with a fixed seed so that the split is reproducible
random.seed(999)
split_names.sort()
random.shuffle(split_names)
with open(labels_file, "r") as f:
with open(split_labels_file, "w") as split_f:
for idx, line in enumerate(f):
split_f.write(split_names[idx] + " " + line)
print("Done updating labels file")
# # Pre-process train and validation sets
# for split in ['train', 'val']:
# output_dir_split = os.path.join(output_directory, '{}'.format(split))
# if not os.path.exists(output_dir_split):
# os.mkdir(output_dir_split)
# else:
# print("Warning: dir {} already exists".format(output_dir_split))
# print("Processing {} data, saving preprocessed data to {}".format(split, output_dir_split))
# for filename in tqdm(filenames[split]):
# img_name = os.path.split(filename)[-1]
# copyfile(filename, os.path.join(output_dir_split, img_name))