summaryrefslogtreecommitdiff
path: root/scripts/summary2roc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/summary2roc.rb')
-rwxr-xr-xscripts/summary2roc.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/summary2roc.rb b/scripts/summary2roc.rb
index dbac2f4..e50d97a 100755
--- a/scripts/summary2roc.rb
+++ b/scripts/summary2roc.rb
@@ -4,6 +4,6 @@ require "yaml"
data = YAML.load(File.read ARGV[0])
puts "tpr,fpr"
data.each do |algo,values|
- algo = algo.sub("tensorflow","Tensorflow").sub("selected","FS").sub(".v3","").sub("-all"," (all)").sub("-high-confidence"," (high confidence)").sub("padel","PaDEL").sub("lazar ","lazar-MP2D ").sub("lr2","LR (scikit)").sub("lr","LR (SGD)").sub("nn","NN").sub("-rf","-RF")
+ algo = algo.sub("tensorflow","Tensorflow").sub("selected","FS").sub(".v3","").sub("-all"," (all)").sub("-high-confidence"," (high confidence)").sub("padel","PaDEL").sub("lazar ","lazar-MP2D ").sub("lr2","LR-scikit").sub("lr","LR-sgd").sub("nn","NN").sub("-rf","-RF")
puts [algo,values[:tpr],values[:fpr]].join(",")
end