data = [data]
// get data types
dtypes = list(map(check_dtype, data))
// if all data are vectorizer objects and have the same vocab, skip vectorizing
if all([dtype is "vecobj" for dtype in dtypes]):
if all_vocabs_same(data):
vectorizer=None
warnings.warn("Skipping vectorization step. Vectorizer objects "