(Exporting FMR and FNMR to a CSV file) # This is the DET curve, the ROC curve is a plot of FMR against 1 - FNMR export_error_rates(stats_a.fmr, stats_a.fnmr, 'A_DET.csv') export_error_rates(stats_b.fmr, stats_b.fnmr, 'B_DET.csv') # Plotting plot_eer_stats([stats_a, ...
Finally, compare andview the non-scikit-plot way of plotting the multi-class ROC curve. Which one would you rather do? Maximum flexibility. Compatibility with non-scikit-learn objects. Although Scikit-plot is loosely based around the scikit-learn interface, you don't actually need Scikit-learn...
Finally, compare andview the non-scikit-plot way of plotting the multi-class ROC curve. Which one would you rather do? Maximum flexibility. Compatibility with non-scikit-learn objects. Although Scikit-plot is loosely based around the scikit-learn interface, you don't actually need Scikit-learn...