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
This code creates a series of lists whose elements are later compared to the finding column from the metadata.csv file.
Unfortunately the logic does not work, which I noticed when it reported 0 COVID images.
The issue is that the information from the metadata.csv file is not a single item which neatly aligns with a member of the list, rather it is a hierarchy from least to most specific. For example, COVID-19 isn't referenced as COVID-19, it is: 'Pneumonia/Viral/COVID-19'. Because of this, the logic fails.
The "easy" fix is to just split the string by / and use the right-most entry.
After this update, x0 - x4 appear to give meaningful results
The text was updated successfully, but these errors were encountered:
This code creates a series of lists whose elements are later compared to the finding column from the metadata.csv file.
Unfortunately the logic does not work, which I noticed when it reported 0 COVID images.
The issue is that the information from the metadata.csv file is not a single item which neatly aligns with a member of the list, rather it is a hierarchy from least to most specific. For example, COVID-19 isn't referenced as COVID-19, it is: 'Pneumonia/Viral/COVID-19'. Because of this, the logic fails.
The "easy" fix is to just split the string by / and use the right-most entry.
After this update, x0 - x4 appear to give meaningful results
The text was updated successfully, but these errors were encountered: