metrics calculation

This commit is contained in:
Tomasz Łysiak 2019-04-26 12:13:44 +02:00
parent 7646cc9502
commit 82125d1de4
2 changed files with 10 additions and 0 deletions

5
Jenkinsfile vendored
View File

@ -11,6 +11,11 @@ pipeline {
sh 'git checkout'
sh 'python3 script.py'
archiveArtifacts artifacts: 'num_lines.txt'
sh 'python3 calculate_metrics.py'
}
}
}

5
calculate_metrics.py Normal file
View File

@ -0,0 +1,5 @@
df_data = pd.read_csv('./models' + file_path, sep='\t', index_col=False, header=None,
skip_blank_lines=False, keep_default_na=False, names=columns)
print(df_data)