CheXNet-Keras icon indicating copy to clipboard operation
CheXNet-Keras copied to clipboard

Labels class name

Open DineshKA87 opened this issue 5 years ago • 0 comments

Can some please tell order of the class name for the predicted class index , from pre trained weights -https://drive.google.com/file/d/19BllaOvs2x5PLV_vlWMy4i8LapLb2j6b/view or how to know it.

I could get a prediction using the weights but not able to find which class it gets predicted

predicted = model.predict(img) predicted = np.argmax(predicted, axis= 1) =>array([3])

this 3 represents which class name and also can i get all the class name to their index number - like edema, effusion, Need for all 14 for this given weights

DineshKA87 avatar Dec 18 '19 07:12 DineshKA87