metrics calculation
This commit is contained in:
parent
7646cc9502
commit
82125d1de4
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -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
5
calculate_metrics.py
Normal 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)
|
Loading…
Reference in New Issue
Block a user