You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print("homogeneity score with (sample reads and human transcriptome) is: {:.2f}%".format(metrics.homogeneity_score(labels_true_t, labels_pred) *100))
43
+
print("completeness score with (sample reads and human transcriptome) is: {:.2f}%".format(metrics.completeness_score(labels_true_t, labels_pred) *100))
44
+
print("homogeneity score with (sample reads and human gene) is: {:.2f}%".format(metrics.homogeneity_score(labels_true_g, labels_pred) *100))
45
+
print("completeness score with (sample reads and human gene) is: {:.2f}%".format(metrics.completeness_score(labels_true_g, labels_pred) *100))
0 commit comments