-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_loader.py
91 lines (65 loc) · 2.47 KB
/
data_loader.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
from datetime import datetime
import io
from helpers import tone_map
from tsp_manager import TSPManager
def get_tsp_manager(filename, shifts_allowed, result_file):
data_loader = DataLoader(filename, shifts_allowed, result_file)
return data_loader.load()
class DataLoader(object):
def __init__(self, filename, shifts_allowed, result_file):
"""Constructor for Dataloader
Arguments:
filename {string} -- string of the file containing initial data
shifts_allowed {int} -- amount of shifts we allow before applying TSP
"""
self.filename = filename
self.shifts_allowed = shifts_allowed
self.result_file = result_file
def load(self):
"""
Performs loading of the data
Returns:
TSPManager -- Manager that will perform TSP resolution
"""
data = io.open(self.filename, "r", encoding='utf-16-le').readlines()
songs = []
for line in data[1:]:
song_dict = self.get_song_dict(line[:-1])
songs.append(song_dict)
manager = TSPManager(songs, self.shifts_allowed, self.result_file)
return manager
def get_song_dict(self, l):
"""
Transforms a line of a file into a song dictionnary
Arguments:
l {string} -- string of one line of data
Returns:
dict -- song dictionary
"""
result = {}
song_list = l.split(" ")
result["id"] = int(song_list[0])
result["name"] = song_list[2]
result["bpm"] = float(song_list[6].replace(',', '.'))
result["track_length"] = self.get_track_length(song_list[7])
result["key_tone"] = self.get_key_tone(song_list[8])
return result
def get_track_length(self, s):
"""
Returns the track length of a song gevin the length string
Arguments:
s {string} -- length string
Returns:
int -- amount of seconds the track lasts
"""
time_object = datetime.strptime(s, "%M:%S")
return 60*time_object.minute + time_object.second
def get_key_tone(self, s):
"""
Returns the key tone of the song (given camelot format)
Arguments:
s {string} -- camelot format of the track
Returns:
list -- rekordbox format of the track
"""
return tone_map[s]