ref: e76eaf171d6d3e9245a6a2ccd8c5a62c38ba9729
dir: /python/tests/utils.py/
#! /usr/bin/env python def array_from_text_file(filename, dtype = 'float'): import os.path from numpy import array filename = os.path.join(os.path.dirname(__file__), filename) return array([line.split() for line in open(filename).readlines()], dtype = dtype)