@@ -95,7 +95,8 @@ def __init__(self, ):
9595 self .linestyle_list = [
9696 ("psnr y" , self .linestyle_cycle [0 ]), ("psnr u" , self .linestyle_cycle [1 ]), ("psnr v" , self .linestyle_cycle [2 ]),
9797 ("ssim y" , self .linestyle_cycle [0 ]), ("ssim u" , self .linestyle_cycle [1 ]), ("ssim v" , self .linestyle_cycle [2 ]),
98- ("vmaf y" , self .linestyle_cycle [0 ]), ("vmaf u" , self .linestyle_cycle [1 ]), ("vmaf v" , self .linestyle_cycle [2 ]),
98+ ("vmaf y" , self .linestyle_cycle [0 ]), ("vmaf u" , self .linestyle_cycle [1 ]), ("vmaf v" , self .linestyle_cycle [2 ]),
99+ ("mos" , self .linestyle_cycle [0 ]),
99100 ]
100101
101102
@@ -234,7 +235,7 @@ def change_plot(self, plot_data_collection, user_generated_curves=False):
234235 # Confidence intervals are stored in tuples with three entries
235236 # (rate, value, ci-value) instead of (rate, value) in the default case
236237 try :
237- if not plot_data .has_ci :
238+ if not plot_data .has_ciF :
238239 values = ((float (x ), float (y )) for (x , y ) in plot_data .values )
239240 sorted_value_pairs = sorted (values , key = lambda pair : pair [0 ])
240241 [xs , ys ] = list (zip (* sorted_value_pairs ))
0 commit comments