Is your feature request related to a problem? Please describe.
Currently we have a problem where we cannot precisely get the name and total count of given species when user access the /p/{projectSlug}/detect/cnn/detail/{classificationValue}
Describe the solution you'd like
I will create GET /classifier-jobs/{jobId}/summary/{classificationValue} endpoint to get information about the total counts of the species and their name. Where it will return 404 when given classificationValue does not exist in the classifier used in that job. It will also have the same return type as the object that is returned from GET /classifier-jobs/{jobId}/summary endpoint as well
Describe alternatives you've considered
Paginationing like crazy to grab my species, it's just too expensive.
Is your feature request related to a problem? Please describe. Currently we have a problem where we cannot precisely get the name and total count of given species when user access the
/p/{projectSlug}/detect/cnn/detail/{classificationValue}
Describe the solution you'd like I will create
GET /classifier-jobs/{jobId}/summary/{classificationValue}
endpoint to get information about the total counts of the species and their name. Where it will return 404 when givenclassificationValue
does not exist in the classifier used in that job. It will also have the same return type as the object that is returned fromGET /classifier-jobs/{jobId}/summary
endpoint as wellDescribe alternatives you've considered Paginationing like crazy to grab my species, it's just too expensive.
Additional context none