예제 #1
0
파일: __init__.py 프로젝트: StevenLOL/pimpy
    def list_features(self):
        u"""
        Return list of available features

        :rtype: list of string
        """
	return FeatureFactory.list()
예제 #2
0
파일: __init__.py 프로젝트: StevenLOL/pimpy
    def get_feature(self,name,**kwargs):
        u"""
        compute feature

        :param name: feature name 
        :type string: 
        :param kwargs : optional pyofile
        (string) to produce pynocchio file (hdf5 file format
        """
	f = FeatureFactory.get_feature(name,**kwargs)
	return f.get(self)