def select_utils()

in model_clf.py [0:0]


def select_utils(text):
	text = text.replace('|', ' |')
	r = []
	for w in text.split():
		if w[0].isalpha() and w != 'ARG':
			w = w.strip(')')
			r.append(w)
	return ' '.join(r)