Hello all,
I have been at this for a few hours now, seemingly simple task, and I am not sure of the best way to visualize the data we are working with and I was hoping I could reach out for help for guidance:
We have a list of images which will be identified as 'imageId:'
For each image, there are about 2,000 cells which we individually classify with neural network into one of ten possible classes. The goal is to allow users to drill down on specific images and visualize the distribution of cell classes in each image, similar to what you see with a histogram plot. Ideally, we would want to maintain each 'prediction' as a separate value rather than count the cells prior to indexing, as seen in the document below:
{
"imageId": "000001.jpg",
"predictions": [
"A",
"B",
"C",
"A",
"A",
"A",
"A",
"C",
"B",
"A",
"A",
"A"
]
}
While the following is not ideal, we tried these as well:
{
"imageId": "000001.jpg",
"cellType": "A",
"cellCount": 1,200
}
{
"imageId": "000001.jpg",
"cellType": "B",
"cellCount": 100
}
{
"imageId": "000001.jpg",
"cellType": "C",
"cellCount": 10
}
Also tried:
{
"imageId": "000001.jpg",
"A":1,200,
"B":100,
"C":10
}
Any help would be GREATLY appreciated, we've really been banging our heads against the wall. We must be missing something.
Many thanks,
T