forked from aws/amazon-sagemaker-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_utils.py
43 lines (31 loc) · 1.28 KB
/
data_utils.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
import bz2
import random
import tempfile
import urllib.request
import boto3
def load_abalone(train_split=0.8, seed=42):
if not (0 < train_split <= 1):
raise ValueError("'train_split' must be between 0 and 1.")
url = "https://www.csie.ntu.edu.tw/~cjlin/libsvmtools/datasets/regression/abalone"
response = urllib.request.urlopen(url).read().decode("utf-8")
lines = response.strip().split('\n')
n = sum(1 for line in lines)
indices = list(range(n))
random.seed(seed)
random.shuffle(indices)
train_indices = set(indices[:int(n * 0.8)])
with tempfile.NamedTemporaryFile(mode='w', delete=False) as train_file:
with tempfile.NamedTemporaryFile(mode='w', delete=False) as valid_file:
for idx, line in enumerate(lines):
if idx in train_indices:
train_file.write(line + '\n')
else:
valid_file.write(line + '\n')
return train_file.name, valid_file.name
def write_to_s3(fobj, bucket, key):
return boto3.Session().resource('s3').Bucket(bucket).Object(key).upload_fileobj(fobj)
def upload_to_s3(filename, bucket, key):
url = f"s3://{bucket}/{key}"
print(f"Writing to {url}")
with open(filename, "rb") as fobj:
write_to_s3(fobj, bucket, key)