def load_quotations()

in utils.py [0:0]


def load_quotations(filepath):
	quotations = []
	with open(filepath, 'r') as f:
		for line in f:
			line = line.strip().split('\t')
			sent = line[0]
			label = line[1]
			if len(line) > 2: attrib = line[2]
			else: attrib = ''
			quotations.append((sent, label, attrib))
	return quotations