Example #1
0
def converter_localitypreservingprojections_modular(data, k):
    from shogun.Features import RealFeatures
    from shogun.Converter import LocalityPreservingProjections

    features = RealFeatures(data)

    converter = LocalityPreservingProjections()
    converter.set_target_dim(1)
    converter.set_k(k)
    converter.set_tau(2.0)
    converter.apply(features)

    return features
Example #2
0
def converter_localitypreservingprojections_modular(data, k):
    try:
        from shogun.Features import RealFeatures
        from shogun.Converter import LocalityPreservingProjections

        features = RealFeatures(data)
        converter = LocalityPreservingProjections()
        converter.set_target_dim(1)
        converter.set_k(k)
        converter.set_tau(2.0)
        converter.apply(features)

        return features
    except ImportError:
        print('No Eigen3 available')
def converter_localitypreservingprojections_modular(data,k):
	from shogun.Features import RealFeatures
	from shogun.Converter import LocalityPreservingProjections
	
	features = RealFeatures(data)
		
	converter = LocalityPreservingProjections()
	converter.set_target_dim(1)
	converter.set_k(k)
	converter.set_tau(2.0)
	converter.apply(features)

	return features
def converter_localitypreservingprojections_modular (data,k):
	try:
		from shogun.Features import RealFeatures
		from shogun.Converter import LocalityPreservingProjections
		
		features = RealFeatures(data)
		converter = LocalityPreservingProjections()
		converter.set_target_dim(1)
		converter.set_k(k)
		converter.set_tau(2.0)
		converter.apply(features)

		return features
	except ImportError:
		print('No Eigen3 available')