当前位置: 首页>>代码示例>>Python>>正文


Python Post.features方法代码示例

本文整理汇总了Python中post.Post.features方法的典型用法代码示例。如果您正苦于以下问题:Python Post.features方法的具体用法?Python Post.features怎么用?Python Post.features使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在post.Post的用法示例。


在下文中一共展示了Post.features方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: int

# 需要导入模块: from post import Post [as 别名]
# 或者: from post.Post import features [as 别名]
  	count_bigrams.update(terms_bigram)
  	count_trigrams.update(terms_trigram)
  	count_fourgrams.update(terms_fourgram)
  	count_fivegrams.update(terms_fivegram)
  	count_sixgrams.update(terms_sixgram)
  	count_sevengrams.update(terms_sevengram)
  	count_eightgrams.update(terms_eightgram)
  	count_ninegrams.update(terms_ninegram)
  	
  	#Progress Bar:
  	counter = counter + 1
  	percentage = int((counter*100/limit))
  	percentageBar = int(percentage/5)
  	missingPercentageBar = 20 - percentageBar
  	
  	post.features = terms_all
  	post.hashtags = terms_hashtags
  	post.bigrams = terms_bigram
  	#sys.stdout.write("\r %d %d %d %d " % (counter,limit,percentage,missingPercentage))
  	sys.stderr.write("\r‌‌¦|%s|¦%d%%. Examinated %d of %d" % (("░")*percentageBar+" "*missingPercentageBar, percentage, counter, limit) )
  	sys.stderr.flush()
  	
print("\n")


wordsTopNum = minValue(opts.wordsTopNum,4000)
hashtagTopNum = minValue(opts.hashtagTopNum,3000)
ngramsTopNum = minValue(opts.ngramsTopNum,2000)

#sys.exit(0)
开发者ID:desoss,项目名称:clustering,代码行数:32,代码来源:script_preprocessing.py


注:本文中的post.Post.features方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。