本文整理汇总了Python中shogun.Features.SparseRealFeatures.write_svmlight_file方法的典型用法代码示例。如果您正苦于以下问题:Python SparseRealFeatures.write_svmlight_file方法的具体用法?Python SparseRealFeatures.write_svmlight_file怎么用?Python SparseRealFeatures.write_svmlight_file使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类shogun.Features.SparseRealFeatures
的用法示例。
在下文中一共展示了SparseRealFeatures.write_svmlight_file方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: features_read_svmlight_format_modular
# 需要导入模块: from shogun.Features import SparseRealFeatures [as 别名]
# 或者: from shogun.Features.SparseRealFeatures import write_svmlight_file [as 别名]
def features_read_svmlight_format_modular(fname):
import os
from shogun.Features import SparseRealFeatures
f=SparseRealFeatures()
lab=f.load_svmlight_file(fname)
f.write_svmlight_file('testwrite.light', lab)
os.unlink('testwrite.light')
示例2:
# 需要导入模块: from shogun.Features import SparseRealFeatures [as 别名]
# 或者: from shogun.Features.SparseRealFeatures import write_svmlight_file [as 别名]
import os
from shogun.Features import SparseRealFeatures
f=SparseRealFeatures()
lab=f.load_svmlight_file('../data/train_sparsereal.light')
f.write_svmlight_file('testwrite.light', lab)
os.unlink('testwrite.light')