def main():
    folder_path = get_folder_path()
    all_folders_path = get_all_folders_path(folder_path)
    files_path = get_cross_validations_path(all_folders_path)
    metrics_values = get_metrics_values(files_path)
    csv_rows = convert_to_csv(metrics_values)

    for row in csv_rows:
        print row
Esempio n. 2
0
def main():
    folder_path = get_folder_path()
    all_folders_path = get_all_folders_path(folder_path)
    files_path = get_cross_validations_path(all_folders_path)
    metrics_values = get_metrics_values(files_path)
    csv_rows = convert_to_csv(metrics_values)

    for row in csv_rows:
        print row
Esempio n. 3
0
def main():
    folder_path = get_folder_path()
    all_folders_path = get_all_folders_path(folder_path)
    all_strategies_score = get_all_strategies_score(all_folders_path)
    all_pc_informations = get_all_pc_informations(all_folders_path)

    csv_rows = convert_to_csv(all_strategies_score, all_pc_informations)
    for row in csv_rows:
        print row
def main():
    folder_path = get_folder_path()
    all_folders_path = get_all_folders_path(folder_path)
    all_strategies_score = get_all_strategies_score(all_folders_path)
    all_pc_informations = get_all_pc_informations(all_folders_path)

    csv_rows = convert_to_csv(all_strategies_score, all_pc_informations)
    for row in csv_rows:
        print row