本文整理汇总了Python中File.File.from_folder方法的典型用法代码示例。如果您正苦于以下问题:Python File.from_folder方法的具体用法?Python File.from_folder怎么用?Python File.from_folder使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类File.File
的用法示例。
在下文中一共展示了File.from_folder方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: print
# 需要导入模块: from File import File [as 别名]
# 或者: from File.File import from_folder [as 别名]
for word in entry:
if word in classVector.keys():
proba += math.log10(((classVector[word]+1)/(iWords+len(classVector)))**entry[word])
return proba
import time
if __name__ == "__main__":
startTime = time.time()
print("Classification de mots utilisant Bayes")
print("-----------------------------------------------------\n")
fileManager = File()
# Switch to handle raw input or filtered input
wordList = fileManager.from_folder()
#wordList = fileManager.from_tagged_folder()
fileList = fileManager.fileContentList
lightdisplay = True
print("Split positif\tSplit négatif\tErreur positifs\tErreur négatif\tErreur moyenne\tTemps")
for pi in range(10,95 , 5):
pourcentagePos = pi/100.0 #meilleur 0.5 / 0.8
pourcentageNeg = pi/100.0
startTime = time.time()
示例2: print
# 需要导入模块: from File import File [as 别名]
# 或者: from File.File import from_folder [as 别名]
# Arguments
m = 1 # Nombre de colonne cachées
n = 15 # Nombre de neurones par colonne
alpha = 0.1 # Alpha
iterCount = 3 # Nombre d'itération
percentageGenerate = 0.2 # Pourcentage de corpus d'entrainement
threshold = 0.05
start_time = time.time()
print("\n-----------------------------------------------------")
print("Classification de mots utilisant un réseau de neurone")
print("-----------------------------------------------------\n")
fileManager = File()
uniqueWordList = fileManager.from_folder()
wordNeurons = {}
intermediateNeurons = []
print("Arguments :")
print("\tNombre de réitérations sur les fichiers d'analyse : " + str(iterCount))
print("\tRéseau interne composé de " + str(m) + " colonnes cachées et " + str(n) + " neuronnes par colonne")
print("\tAlpha %.2f\n" % alpha)
print("Lecture des fichiers : %f seconds" % (time.time() - start_time))
#Creation du système de Neurones
finalNeuron = Neurone()
for x in range(0, m):
listCol = []
for y in range(0, n):