in ar-cnn/data_generator.py [0:0]
def __init__(self, sample_list, batch_size, bars, samples_per_data_item,
beat_resolution, number_of_pitches, number_of_channels,
beats_per_bar, sampling_lower_bound_remove,
sampling_upper_bound_remove, sampling_lower_bound_add,
sampling_upper_bound_add):
self.sample_list = sample_list
self.batch_size = batch_size
self.bars = bars
self.number_of_pitches = number_of_pitches
self.number_of_channels = number_of_channels
self.samples_per_data_item = samples_per_data_item
self.sample_index = 0
self.beat_resolution = beat_resolution
self.beats_per_bar = beats_per_bar
self.sampling_lower_bound_remove = sampling_lower_bound_remove
self.sampling_upper_bound_remove = sampling_upper_bound_remove
self.sampling_lower_bound_add = sampling_lower_bound_add
self.sampling_upper_bound_add = sampling_upper_bound_add