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
Right now generate_annotation_similarity_graph has a switch statement to select which method is actually used for calculating the similarity overlap, and that switch statement is inside the calc_similarity function that is defined locally.
I'm curious if we move that switch statement outside of calc_similarity and instead pass it in as an argument, will we see a speed improvement? Worth trying.
The text was updated successfully, but these errors were encountered:
Right now
generate_annotation_similarity_graph
has a switch statement to select which method is actually used for calculating the similarity overlap, and that switch statement is inside thecalc_similarity
function that is defined locally.I'm curious if we move that switch statement outside of
calc_similarity
and instead pass it in as an argument, will we see a speed improvement? Worth trying.The text was updated successfully, but these errors were encountered: