TroglodyteDerivations commited on
Commit
1e5a26c
1 Parent(s): 3cfaee1

Updated lines 77-79 with: Glioma | Meningioma | Notumor | Pituitary

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -74,9 +74,9 @@ st.markdown("<hi style='text-align: center; color: navy;'>Brain Tumor One Hot En
74
 
75
  # Output the predictions
76
  st.write(f'Class Mappings: {class_mappings}')
77
- st.write("\nNormal Image Prediction:", np.round(predictions[0], 3)[0])
78
- st.write("Glioma Image Prediction:", np.round(predictions[1], 3)[0])
79
- st.write("Meningioma Image Prediction:", np.round(predictions[2], 3)[0])
80
  st.write("Pituitary Image Prediction:", np.round(predictions[3], 3)[0])
81
 
82
  # Display images with predictions
 
74
 
75
  # Output the predictions
76
  st.write(f'Class Mappings: {class_mappings}')
77
+ st.write("\nGlioma Image Prediction:", np.round(predictions[0], 3)[0])
78
+ st.write("Meningioma Image Prediction:", np.round(predictions[1], 3)[0])
79
+ st.write("Notumor Image Prediction:", np.round(predictions[2], 3)[0])
80
  st.write("Pituitary Image Prediction:", np.round(predictions[3], 3)[0])
81
 
82
  # Display images with predictions